diff --git a/application/AuraSense/.gitattributes b/application/AuraSense/.gitattributes
new file mode 100644
index 000000000..0278d107b
--- /dev/null
+++ b/application/AuraSense/.gitattributes
@@ -0,0 +1,11 @@
+* text=auto
+
+*.bat text eol=crlf
+*.ps1 text eol=crlf
+*.s37 binary
+*.tflite binary
+*.png binary
+*.jpg binary
+*.jpeg binary
+*.so binary
+*.p12 binary
diff --git a/application/AuraSense/.gitignore b/application/AuraSense/.gitignore
new file mode 100644
index 000000000..94335444e
--- /dev/null
+++ b/application/AuraSense/.gitignore
@@ -0,0 +1,51 @@
+# OS / editor
+.DS_Store
+Thumbs.db
+.idea/
+.vscode/
+*.swp
+*.tmp
+
+# Python
+__pycache__/
+*.pyc
+.venv/
+venv/
+
+# Android / Gradle
+.gradle/
+.kotlin/
+build/
+**/build/
+local.properties
+*.iml
+
+# Simplicity Studio / generated build output
+**/.pdm/
+**/.settings/
+**/.uceditor/
+**/cmake_gcc/
+**/GNU ARM v12.2.1 - Default/
+**/build.ninja
+**/.ninja_deps
+**/.ninja_log
+**/CMakeFiles/
+**/CMakeCache.txt
+
+# Backup / scratch files
+*.bak
+*.bak0
+*.orig
+
+# Archives / binaries produced during local work
+*.zip
+*.bin
+*.hex
+*.out
+*.axf
+*.map
+*.apk
+
+# Node
+node_modules/
+**/node_modules/
diff --git a/application/AuraSense/README.md b/application/AuraSense/README.md
new file mode 100644
index 000000000..a5d64ea95
--- /dev/null
+++ b/application/AuraSense/README.md
@@ -0,0 +1,117 @@
+# AuraSense EIC 2026
+
+AuraSense is a smart baby-monitoring project built for the EIC 2026 context. It combines an EFR32xG26 firmware application, a custom Android caregiver app, and an edge AI audio model so a nursery device can listen for baby distress sounds and notify a caregiver over Bluetooth Low Energy (BLE).
+
+## What This Project Does
+
+In simple terms:
+
+1. The EFR32xG26 board listens to nearby baby audio.
+2. The firmware runs an on-device TinyML model.
+3. The board classifies the sound as background, cry, laugh, or sad/distress.
+4. The result is sent to the Android app over BLE.
+5. The app shows live status, confidence, room temperature, and alerts the caregiver when distress is detected.
+
+## Who This Repo Is For
+
+- Students or judges who want to understand the project quickly
+- Developers who want to build the firmware or app
+- Anyone working with Silicon Labs EFR32xG26 hardware
+
+## Hardware Target
+
+This firmware project is configured for:
+
+- Silicon Labs EFR32xG26 family
+- Device: `EFR32MG26B510F3200IM68`
+- Board component in project metadata: `brd2608a`
+
+If you use a different EFR32xG26 board, you may need to adjust microphone, sensor, or pin configuration before building.
+
+## Repository Layout
+
+```text
+AuraSense_EIC_2026/
+ firmware/
+ aura-baby-monitor-soc/ # Main EFR32xG26 firmware project
+ releases/ # Ready-to-flash .s37 firmware image
+ mobile/
+ aurasense-android-app/ # Android caregiver application
+ model/
+ training/ # Training script and training notes
+ artifacts/ # Deployable TFLite model
+ datasets/ # Dataset pointer / dataset notes
+```
+
+## Quick Start
+
+If you only want to try the project as fast as possible:
+
+1. Flash `firmware/releases/aura_baby_monitor.s37` to your EFR32xG26 board.
+2. Open `mobile/aurasense-android-app` in Android Studio.
+3. Build and install the Android app on an Android phone.
+4. Power the board, pair/connect over BLE, and open the Baby Cry Monitor screen.
+
+## Build Requirements
+
+### Firmware
+
+- Simplicity Studio 6
+- Silicon Labs Simplicity SDK `2025.12.1`
+- AI/ML extension `2.2.0`
+- Supported EFR32xG26 hardware
+- J-Link / Simplicity Commander for flashing
+
+### Android App
+
+- Android Studio
+- JDK 17
+- Android SDK for `compileSdk 36`
+- Android device with BLE support
+
+## Main Files You Will Care About
+
+### Firmware
+
+- `firmware/aura-baby-monitor-soc/ml_ble_classifier.slcp`
+- `firmware/aura-baby-monitor-soc/app.c`
+- `firmware/aura-baby-monitor-soc/audio_classifier.cc`
+- `firmware/aura-baby-monitor-soc/config/tflite/baby_cry_int8_DEPLOY.tflite`
+
+### Android App
+
+- `mobile/aurasense-android-app/mobile/build.gradle.kts`
+- `mobile/aurasense-android-app/mobile/src/main/java/com/siliconlabs/bledemo/features/demo/babycry/BabyCryMonitorActivity.kt`
+- `mobile/aurasense-android-app/mobile/src/main/res/values/strings_baby_cry.xml`
+
+### Model
+
+- `model/training/training.py`
+- `model/artifacts/baby_cry_int8_DEPLOY.tflite`
+- `model/datasets/datasets.txt`
+
+## How The System Works
+
+- The firmware performs audio feature extraction and TensorFlow Lite Micro inference on the device.
+- BLE notifications carry the inference result to the phone.
+- The Android app turns those predictions into a caregiver-friendly monitoring screen and alert flow.
+- Temperature data is also surfaced when available through the firmware configuration.
+
+## Notes For Public Use
+
+- This repo intentionally excludes local IDE files, build output, and generated machine-specific folders.
+- The Android app is a customized fork of Silicon Labs' mobile app shell, adapted here for AuraSense monitoring.
+
+## Folder Guides
+
+Each main folder contains its own `README.md` with detailed instructions:
+
+- `firmware/README.md`
+- `firmware/aura-baby-monitor-soc/README.md`
+- `firmware/releases/README.md`
+- `mobile/README.md`
+- `mobile/aurasense-android-app/README.md`
+- `model/README.md`
+- `model/training/README.md`
+- `model/artifacts/README.md`
+- `model/datasets/README.md`
diff --git a/application/AuraSense/firmware/README.md b/application/AuraSense/firmware/README.md
new file mode 100644
index 000000000..1a3a04de1
--- /dev/null
+++ b/application/AuraSense/firmware/README.md
@@ -0,0 +1,27 @@
+# Firmware
+
+This folder contains everything needed on the embedded side of AuraSense.
+
+## What Is Here
+
+- `aura-baby-monitor-soc/` - the main Simplicity Studio firmware project
+- `releases/` - prebuilt firmware image for fast flashing
+
+## What The Firmware Does
+
+- Records audio from the on-board microphone path
+- Runs TensorFlow Lite Micro inference on the EFR32xG26
+- Sends classification results over BLE
+- Exposes basic control commands for the phone app
+- Can publish room-temperature data when the board configuration supports it
+
+## If You Are New
+
+Start here:
+
+1. Read `aura-baby-monitor-soc/README.md`
+2. If you want the fastest demo path, use `releases/README.md`
+
+## Hardware Focus
+
+The included project metadata targets the EFR32xG26 family and is configured around the Silicon Labs board setup referenced in the `.slcp` project file.
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/.cproject b/application/AuraSense/firmware/aura-baby-monitor-soc/.cproject
new file mode 100644
index 000000000..216c442ab
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/.cproject
@@ -0,0 +1,465 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/.project b/application/AuraSense/firmware/aura-baby-monitor-soc/.project
new file mode 100644
index 000000000..b302ecd36
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/.project
@@ -0,0 +1,3545 @@
+
+
+ ml_ble_classifier
+
+
+
+
+
+ com.silabs.ss.framework.ide.project.sls.core.slsResourceBuilder
+
+
+
+
+ org.eclipse.cdt.managedbuilder.core.genmakebuilder
+ clean,full,incremental,
+
+
+
+
+ org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder
+ full,incremental,
+
+
+
+
+
+ org.eclipse.cdt.core.cnature
+ com.silabs.ss.framework.ide.project.sls.core.SLSProjectNature
+ org.eclipse.cdt.managedbuilder.core.managedBuildNature
+ org.eclipse.cdt.managedbuilder.core.ScannerConfigNature
+ org.eclipse.cdt.core.ccnature
+
+
+
+ aiml_2.1.2/inc/dsp/sl_ml_fft.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/inc/dsp/sl_ml_fft.h
+
+
+ aiml_2.1.2/inc/tflite/sl_tflite_micro_debug_log.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/inc/tflite/sl_tflite_micro_debug_log.h
+
+
+ aiml_2.1.2/inc/tflite/sl_tflite_micro_init.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/inc/tflite/sl_tflite_micro_init.h
+
+
+ aiml_2.1.2/microfrontend/lib/activity_detection.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/activity_detection.c
+
+
+ aiml_2.1.2/microfrontend/lib/activity_detection.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/activity_detection.h
+
+
+ aiml_2.1.2/microfrontend/lib/activity_detection_util.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/activity_detection_util.c
+
+
+ aiml_2.1.2/microfrontend/lib/activity_detection_util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/activity_detection_util.h
+
+
+ aiml_2.1.2/microfrontend/lib/bits.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/bits.h
+
+
+ aiml_2.1.2/microfrontend/lib/dc_notch_filter.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/dc_notch_filter.c
+
+
+ aiml_2.1.2/microfrontend/lib/dc_notch_filter.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/dc_notch_filter.h
+
+
+ aiml_2.1.2/microfrontend/lib/dc_notch_filter_util.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/dc_notch_filter_util.c
+
+
+ aiml_2.1.2/microfrontend/lib/dc_notch_filter_util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/dc_notch_filter_util.h
+
+
+ aiml_2.1.2/microfrontend/lib/filterbank.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/filterbank.c
+
+
+ aiml_2.1.2/microfrontend/lib/filterbank.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/filterbank.h
+
+
+ aiml_2.1.2/microfrontend/lib/filterbank_util.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/filterbank_util.c
+
+
+ aiml_2.1.2/microfrontend/lib/filterbank_util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/filterbank_util.h
+
+
+ aiml_2.1.2/microfrontend/lib/frontend.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/frontend.c
+
+
+ aiml_2.1.2/microfrontend/lib/frontend.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/frontend.h
+
+
+ aiml_2.1.2/microfrontend/lib/frontend_util.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/frontend_util.c
+
+
+ aiml_2.1.2/microfrontend/lib/frontend_util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/frontend_util.h
+
+
+ aiml_2.1.2/microfrontend/lib/log_lut.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/log_lut.c
+
+
+ aiml_2.1.2/microfrontend/lib/log_lut.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/log_lut.h
+
+
+ aiml_2.1.2/microfrontend/lib/log_scale.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/log_scale.c
+
+
+ aiml_2.1.2/microfrontend/lib/log_scale.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/log_scale.h
+
+
+ aiml_2.1.2/microfrontend/lib/log_scale_util.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/log_scale_util.c
+
+
+ aiml_2.1.2/microfrontend/lib/log_scale_util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/log_scale_util.h
+
+
+ aiml_2.1.2/microfrontend/lib/noise_reduction.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/noise_reduction.c
+
+
+ aiml_2.1.2/microfrontend/lib/noise_reduction.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/noise_reduction.h
+
+
+ aiml_2.1.2/microfrontend/lib/noise_reduction_util.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/noise_reduction_util.c
+
+
+ aiml_2.1.2/microfrontend/lib/noise_reduction_util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/noise_reduction_util.h
+
+
+ aiml_2.1.2/microfrontend/lib/pcan_gain_control.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/pcan_gain_control.c
+
+
+ aiml_2.1.2/microfrontend/lib/pcan_gain_control.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/pcan_gain_control.h
+
+
+ aiml_2.1.2/microfrontend/lib/pcan_gain_control_util.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/pcan_gain_control_util.c
+
+
+ aiml_2.1.2/microfrontend/lib/pcan_gain_control_util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/pcan_gain_control_util.h
+
+
+ aiml_2.1.2/microfrontend/lib/utils.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/utils.h
+
+
+ aiml_2.1.2/microfrontend/lib/window.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/window.c
+
+
+ aiml_2.1.2/microfrontend/lib/window.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/window.h
+
+
+ aiml_2.1.2/microfrontend/lib/window_util.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/window_util.c
+
+
+ aiml_2.1.2/microfrontend/lib/window_util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/microfrontend/lib/window_util.h
+
+
+ aiml_2.1.2/src/dsp/sl_ml_fft.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/src/dsp/sl_ml_fft.cc
+
+
+ aiml_2.1.2/src/tflite/sl_tflite_micro_init.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/src/tflite/sl_tflite_micro_init.cc
+
+
+ aiml_2.1.2/src/utils/debug_log.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/src/utils/debug_log.cc
+
+
+ aiml_2.1.2/inc/features/audio/sl_ml_audio_feature_generation.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/inc/features/audio/sl_ml_audio_feature_generation.h
+
+
+ aiml_2.1.2/lib/gcc/cortex-m33/libtflm.a
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/lib/gcc/cortex-m33/libtflm.a
+
+
+ aiml_2.1.2/src/features/audio/sl_ml_audio_feature_generation.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/src/features/audio/sl_ml_audio_feature_generation.c
+
+
+ aiml_2.1.2/src/features/audio/sl_ml_audio_feature_generation_init.c
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/src/features/audio/sl_ml_audio_feature_generation_init.c
+
+
+ aiml_2.1.2/src/kernels/mvp1/add.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/src/kernels/mvp1/add.cc
+
+
+ aiml_2.1.2/src/kernels/mvp1/conv.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/src/kernels/mvp1/conv.cc
+
+
+ aiml_2.1.2/src/kernels/mvp1/depthwise_conv.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/src/kernels/mvp1/depthwise_conv.cc
+
+
+ aiml_2.1.2/src/kernels/mvp1/fully_connected.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/src/kernels/mvp1/fully_connected.cc
+
+
+ aiml_2.1.2/src/kernels/mvp1/mul.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/src/kernels/mvp1/mul.cc
+
+
+ aiml_2.1.2/src/kernels/mvp1/pooling.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/src/kernels/mvp1/pooling.cc
+
+
+ aiml_2.1.2/src/kernels/mvp1/transpose_conv.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/src/kernels/mvp1/transpose_conv.cc
+
+
+ aiml_2.1.2/third_party/gemmlowp/fixedpoint/fixedpoint.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/gemmlowp/fixedpoint/fixedpoint.h
+
+
+ aiml_2.1.2/third_party/gemmlowp/fixedpoint/fixedpoint_neon.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/gemmlowp/fixedpoint/fixedpoint_neon.h
+
+
+ aiml_2.1.2/third_party/gemmlowp/fixedpoint/fixedpoint_sse.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/gemmlowp/fixedpoint/fixedpoint_sse.h
+
+
+ aiml_2.1.2/third_party/gemmlowp/internal/detect_platform.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/gemmlowp/internal/detect_platform.h
+
+
+ simplicity_sdk_2025.6.2/hardware/board/inc/sl_board_control.h
+ 1
+ STUDIO_SDK_LOC/hardware/board/inc/sl_board_control.h
+
+
+ simplicity_sdk_2025.6.2/hardware/board/inc/sl_board_init.h
+ 1
+ STUDIO_SDK_LOC/hardware/board/inc/sl_board_init.h
+
+
+ simplicity_sdk_2025.6.2/hardware/board/src/sl_board_control_gpio.c
+ 1
+ STUDIO_SDK_LOC/hardware/board/src/sl_board_control_gpio.c
+
+
+ simplicity_sdk_2025.6.2/hardware/board/src/sl_board_init.c
+ 1
+ STUDIO_SDK_LOC/hardware/board/src/sl_board_init.c
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sl_assert.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sl_assert.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sl_atomic.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sl_atomic.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sl_bit.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sl_bit.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sl_cmsis_os2_common.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sl_cmsis_os2_common.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sl_code_classification.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sl_code_classification.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sl_common.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sl_common.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sl_compiler.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sl_compiler.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sl_core.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sl_core.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sl_enum.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sl_enum.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sl_slist.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sl_slist.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sl_status.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sl_status.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sl_string.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sl_string.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sli_cmsis_os2_ext_task_register.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sli_cmsis_os2_ext_task_register.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/inc/sli_code_classification.h
+ 1
+ STUDIO_SDK_LOC/platform/common/inc/sli_code_classification.h
+
+
+ simplicity_sdk_2025.6.2/platform/common/src/sl_assert.c
+ 1
+ STUDIO_SDK_LOC/platform/common/src/sl_assert.c
+
+
+ simplicity_sdk_2025.6.2/platform/common/src/sl_cmsis_os2_common.c
+ 1
+ STUDIO_SDK_LOC/platform/common/src/sl_cmsis_os2_common.c
+
+
+ simplicity_sdk_2025.6.2/platform/common/src/sl_core_cortexm.c
+ 1
+ STUDIO_SDK_LOC/platform/common/src/sl_core_cortexm.c
+
+
+ simplicity_sdk_2025.6.2/platform/common/src/sl_slist.c
+ 1
+ STUDIO_SDK_LOC/platform/common/src/sl_slist.c
+
+
+ simplicity_sdk_2025.6.2/platform/common/src/sl_string.c
+ 1
+ STUDIO_SDK_LOC/platform/common/src/sl_string.c
+
+
+ simplicity_sdk_2025.6.2/platform/common/src/sl_syscalls.c
+ 1
+ STUDIO_SDK_LOC/platform/common/src/sl_syscalls.c
+
+
+ simplicity_sdk_2025.6.2/platform/common/src/sli_cmsis_os2_ext_task_register.c
+ 1
+ STUDIO_SDK_LOC/platform/common/src/sli_cmsis_os2_ext_task_register.c
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_assert.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_assert.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_burtc.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_burtc.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_bus.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_bus.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_chip.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_chip.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_cmu.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_cmu.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_cmu_compat.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_cmu_compat.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_common.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_common.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_core.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_core.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_core_generic.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_core_generic.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_emu.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_emu.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_eusart.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_eusart.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_eusart_compat.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_eusart_compat.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_gpio.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_gpio.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_ldma.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_ldma.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_msc.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_msc.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_msc_compat.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_msc_compat.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_prs.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_prs.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_ramfunc.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_ramfunc.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_syscfg.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_syscfg.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_system.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_system.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_system_generic.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_system_generic.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_timer.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_timer.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_usart.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_usart.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/em_version.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/em_version.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/inc/sli_em_cmu.h
+ 1
+ STUDIO_SDK_LOC/platform/emlib/inc/sli_em_cmu.h
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/src/em_burtc.c
+ 1
+ STUDIO_SDK_LOC/platform/emlib/src/em_burtc.c
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/src/em_cmu.c
+ 1
+ STUDIO_SDK_LOC/platform/emlib/src/em_cmu.c
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/src/em_emu.c
+ 1
+ STUDIO_SDK_LOC/platform/emlib/src/em_emu.c
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/src/em_eusart.c
+ 1
+ STUDIO_SDK_LOC/platform/emlib/src/em_eusart.c
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/src/em_gpio.c
+ 1
+ STUDIO_SDK_LOC/platform/emlib/src/em_gpio.c
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/src/em_ldma.c
+ 1
+ STUDIO_SDK_LOC/platform/emlib/src/em_ldma.c
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/src/em_msc.c
+ 1
+ STUDIO_SDK_LOC/platform/emlib/src/em_msc.c
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/src/em_prs.c
+ 1
+ STUDIO_SDK_LOC/platform/emlib/src/em_prs.c
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/src/em_system.c
+ 1
+ STUDIO_SDK_LOC/platform/emlib/src/em_system.c
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/src/em_timer.c
+ 1
+ STUDIO_SDK_LOC/platform/emlib/src/em_timer.c
+
+
+ simplicity_sdk_2025.6.2/platform/emlib/src/em_usart.c
+ 1
+ STUDIO_SDK_LOC/platform/emlib/src/em_usart.c
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/inc/peripheral_sysrtc.h
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/inc/peripheral_sysrtc.h
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/inc/peripheral_sysrtc_compat.h
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/inc/peripheral_sysrtc_compat.h
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/inc/sl_hal_bus.h
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/inc/sl_hal_bus.h
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/inc/sl_hal_eusart.h
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/inc/sl_hal_eusart.h
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/inc/sl_hal_gpio.h
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/inc/sl_hal_gpio.h
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/inc/sl_hal_prs.h
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/inc/sl_hal_prs.h
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/inc/sl_hal_prs_enums.h
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/inc/sl_hal_prs_enums.h
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/inc/sl_hal_sysrtc.h
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/inc/sl_hal_sysrtc.h
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/inc/sl_hal_sysrtc_compat.h
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/inc/sl_hal_sysrtc_compat.h
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/src/sl_hal_eusart.c
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/src/sl_hal_eusart.c
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/src/sl_hal_gpio.c
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/src/sl_hal_gpio.c
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/src/sl_hal_prs.c
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/src/sl_hal_prs.c
+
+
+ simplicity_sdk_2025.6.2/platform/peripheral/src/sl_hal_sysrtc.c
+ 1
+ STUDIO_SDK_LOC/platform/peripheral/src/sl_hal_sysrtc.c
+
+
+ simplicity_sdk_2025.6.2/util/third_party/printf/printf.c
+ 1
+ STUDIO_SDK_LOC/util/third_party/printf/printf.c
+
+
+ simplicity_sdk_2025.6.2/util/third_party/printf/printf.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/printf/printf.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/allocator.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/allocator.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/array.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/array.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/base.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/base.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/buffer.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/buffer.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/buffer_ref.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/buffer_ref.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/default_allocator.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/default_allocator.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/detached_buffer.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/detached_buffer.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/flatbuffer_builder.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/flatbuffer_builder.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/flatbuffers.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/flatbuffers.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/flexbuffers.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/flexbuffers.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/stl_emulation.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/stl_emulation.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/string.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/string.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/struct.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/struct.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/table.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/table.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/util.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/vector.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/vector.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/vector_downward.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/vector_downward.h
+
+
+ aiml_2.1.2/third_party/flatbuffers/include/flatbuffers/verifier.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/flatbuffers/include/flatbuffers/verifier.h
+
+
+ aiml_2.1.2/third_party/ruy/ruy/profiler/instrumentation.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/ruy/ruy/profiler/instrumentation.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/builtin_op_data.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/builtin_op_data.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/builtin_ops.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/builtin_ops.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/context_util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/context_util.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/portable_type_to_tflitetype.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/portable_type_to_tflitetype.h
+
+
+ simplicity_sdk_2025.6.2/hardware/driver/configuration_over_swo/inc/sl_cos.h
+ 1
+ STUDIO_SDK_LOC/hardware/driver/configuration_over_swo/inc/sl_cos.h
+
+
+ simplicity_sdk_2025.6.2/hardware/driver/configuration_over_swo/src/sl_cos.c
+ 1
+ STUDIO_SDK_LOC/hardware/driver/configuration_over_swo/src/sl_cos.c
+
+
+ simplicity_sdk_2025.6.2/hardware/driver/mic/inc/sl_mic.h
+ 1
+ STUDIO_SDK_LOC/hardware/driver/mic/inc/sl_mic.h
+
+
+ simplicity_sdk_2025.6.2/hardware/driver/mic/src/sl_mic_i2s.c
+ 1
+ STUDIO_SDK_LOC/hardware/driver/mic/src/sl_mic_i2s.c
+
+
+ simplicity_sdk_2025.6.2/platform/CMSIS/Core/Include/cmsis_compiler.h
+ 1
+ STUDIO_SDK_LOC/platform/CMSIS/Core/Include/cmsis_compiler.h
+
+
+ simplicity_sdk_2025.6.2/platform/CMSIS/Core/Include/cmsis_gcc.h
+ 1
+ STUDIO_SDK_LOC/platform/CMSIS/Core/Include/cmsis_gcc.h
+
+
+ simplicity_sdk_2025.6.2/platform/CMSIS/Core/Include/cmsis_version.h
+ 1
+ STUDIO_SDK_LOC/platform/CMSIS/Core/Include/cmsis_version.h
+
+
+ simplicity_sdk_2025.6.2/platform/CMSIS/Core/Include/core_cm33.h
+ 1
+ STUDIO_SDK_LOC/platform/CMSIS/Core/Include/core_cm33.h
+
+
+ simplicity_sdk_2025.6.2/platform/CMSIS/Core/Include/mpu_armv8.h
+ 1
+ STUDIO_SDK_LOC/platform/CMSIS/Core/Include/mpu_armv8.h
+
+
+ simplicity_sdk_2025.6.2/platform/CMSIS/Core/Include/tz_context.h
+ 1
+ STUDIO_SDK_LOC/platform/CMSIS/Core/Include/tz_context.h
+
+
+ simplicity_sdk_2025.6.2/platform/CMSIS/RTOS2/Include/cmsis_os2.h
+ 1
+ STUDIO_SDK_LOC/platform/CMSIS/RTOS2/Include/cmsis_os2.h
+
+
+ simplicity_sdk_2025.6.2/platform/CMSIS/RTOS2/Include/os_tick.h
+ 1
+ STUDIO_SDK_LOC/platform/CMSIS/RTOS2/Include/os_tick.h
+
+
+ simplicity_sdk_2025.6.2/platform/CMSIS/RTOS2/Source/os_systick.c
+ 1
+ STUDIO_SDK_LOC/platform/CMSIS/RTOS2/Source/os_systick.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/inc/sl_math_matrix.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/inc/sl_math_matrix.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/inc/sl_math_types.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/inc/sl_math_types.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/src/sl_math_matrix.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/src/sl_math_matrix.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/inc/sl_nn_util.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/inc/sl_nn_util.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/src/sl_nn_util.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/src/sl_nn_util.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/util/inc/sl_compute_util.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/util/inc/sl_compute_util.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/util/src/sl_compute_util.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/util/src/sl_compute_util.c
+
+
+ simplicity_sdk_2025.6.2/platform/driver/debug/inc/sl_debug_swo.h
+ 1
+ STUDIO_SDK_LOC/platform/driver/debug/inc/sl_debug_swo.h
+
+
+ simplicity_sdk_2025.6.2/platform/driver/debug/src/sl_debug_swo.c
+ 1
+ STUDIO_SDK_LOC/platform/driver/debug/src/sl_debug_swo.c
+
+
+ simplicity_sdk_2025.6.2/platform/driver/gpio/inc/sl_gpio.h
+ 1
+ STUDIO_SDK_LOC/platform/driver/gpio/inc/sl_gpio.h
+
+
+ simplicity_sdk_2025.6.2/platform/driver/gpio/src/sl_gpio.c
+ 1
+ STUDIO_SDK_LOC/platform/driver/gpio/src/sl_gpio.c
+
+
+ simplicity_sdk_2025.6.2/platform/driver/leddrv/inc/sl_led.h
+ 1
+ STUDIO_SDK_LOC/platform/driver/leddrv/inc/sl_led.h
+
+
+ simplicity_sdk_2025.6.2/platform/driver/leddrv/inc/sl_simple_led.h
+ 1
+ STUDIO_SDK_LOC/platform/driver/leddrv/inc/sl_simple_led.h
+
+
+ simplicity_sdk_2025.6.2/platform/driver/leddrv/src/sl_led.c
+ 1
+ STUDIO_SDK_LOC/platform/driver/leddrv/src/sl_led.c
+
+
+ simplicity_sdk_2025.6.2/platform/driver/leddrv/src/sl_simple_led.c
+ 1
+ STUDIO_SDK_LOC/platform/driver/leddrv/src/sl_simple_led.c
+
+
+ simplicity_sdk_2025.6.2/platform/emdrv/common/inc/ecode.h
+ 1
+ STUDIO_SDK_LOC/platform/emdrv/common/inc/ecode.h
+
+
+ simplicity_sdk_2025.6.2/platform/emdrv/dmadrv/inc/dmadrv.h
+ 1
+ STUDIO_SDK_LOC/platform/emdrv/dmadrv/inc/dmadrv.h
+
+
+ simplicity_sdk_2025.6.2/platform/emdrv/dmadrv/src/dmadrv.c
+ 1
+ STUDIO_SDK_LOC/platform/emdrv/dmadrv/src/dmadrv.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/common.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/common.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/kal.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/kal.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/lib_ascii.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/lib_ascii.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/lib_def.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/lib_def.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/lib_math.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/lib_math.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/lib_mem.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/lib_mem.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/lib_str.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/lib_str.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/lib_utils.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/lib_utils.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/logging.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/logging.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/platform_mgr.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/platform_mgr.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/rtos_err.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/rtos_err.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/rtos_opt_def.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/rtos_opt_def.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/rtos_path.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/rtos_path.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/rtos_prio.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/rtos_prio.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/rtos_types.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/rtos_types.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/rtos_utils.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/rtos_utils.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/rtos_version.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/rtos_version.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/include/toolchains.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/include/toolchains.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/cpu/include/cpu.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/cpu/include/cpu.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/cpu/include/cpu_cache.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/cpu/include/cpu_cache.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/cpu/include/cpu_def.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/cpu/include/cpu_def.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/cpu/include/cpu_port_sel.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/cpu/include/cpu_port_sel.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/cpu/source/cpu_core.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/cpu/source/cpu_core.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/include/os.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/include/os.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/include/os_port_sel.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/include/os_port_sel.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/include/os_trace.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/include/os_trace.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/include/os_type.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/include/os_type.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/cmsis_os2.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/cmsis_os2.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_cfg_app.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_cfg_app.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_core.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_core.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_dbg.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_dbg.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_flag.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_flag.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_mon.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_mon.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_msg.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_msg.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_mutex.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_mutex.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_prio.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_prio.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_q.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_q.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_sem.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_sem.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_stat.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_stat.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_task.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_task.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_time.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_time.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_tmr.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_tmr.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/kernel/source/os_var.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/kernel/source/os_var.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/clock_manager/inc/sl_clock_manager.h
+ 1
+ STUDIO_SDK_LOC/platform/service/clock_manager/inc/sl_clock_manager.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/clock_manager/inc/sl_clock_manager_init.h
+ 1
+ STUDIO_SDK_LOC/platform/service/clock_manager/inc/sl_clock_manager_init.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/clock_manager/inc/sli_clock_manager.h
+ 1
+ STUDIO_SDK_LOC/platform/service/clock_manager/inc/sli_clock_manager.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/clock_manager/src/sl_clock_manager.c
+ 1
+ STUDIO_SDK_LOC/platform/service/clock_manager/src/sl_clock_manager.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/clock_manager/src/sl_clock_manager_hal_s2.c
+ 1
+ STUDIO_SDK_LOC/platform/service/clock_manager/src/sl_clock_manager_hal_s2.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/clock_manager/src/sl_clock_manager_init.c
+ 1
+ STUDIO_SDK_LOC/platform/service/clock_manager/src/sl_clock_manager_init.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/clock_manager/src/sl_clock_manager_init_hal_s2.c
+ 1
+ STUDIO_SDK_LOC/platform/service/clock_manager/src/sl_clock_manager_init_hal_s2.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/clock_manager/src/sli_clock_manager_hal.h
+ 1
+ STUDIO_SDK_LOC/platform/service/clock_manager/src/sli_clock_manager_hal.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/clock_manager/src/sli_clock_manager_init_hal.h
+ 1
+ STUDIO_SDK_LOC/platform/service/clock_manager/src/sli_clock_manager_init_hal.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/device_init/inc/sl_device_init_dcdc.h
+ 1
+ STUDIO_SDK_LOC/platform/service/device_init/inc/sl_device_init_dcdc.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/device_init/src/sl_device_init_dcdc_s2.c
+ 1
+ STUDIO_SDK_LOC/platform/service/device_init/src/sl_device_init_dcdc_s2.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/device_manager/clocks/sl_device_clock_efr32xg26.c
+ 1
+ STUDIO_SDK_LOC/platform/service/device_manager/clocks/sl_device_clock_efr32xg26.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/device_manager/devices/sl_device_peripheral_hal_efr32xg26.c
+ 1
+ STUDIO_SDK_LOC/platform/service/device_manager/devices/sl_device_peripheral_hal_efr32xg26.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/device_manager/inc/sl_device_clock.h
+ 1
+ STUDIO_SDK_LOC/platform/service/device_manager/inc/sl_device_clock.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/device_manager/inc/sl_device_gpio.h
+ 1
+ STUDIO_SDK_LOC/platform/service/device_manager/inc/sl_device_gpio.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/device_manager/inc/sl_device_i2c.h
+ 1
+ STUDIO_SDK_LOC/platform/service/device_manager/inc/sl_device_i2c.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/device_manager/inc/sl_device_peripheral.h
+ 1
+ STUDIO_SDK_LOC/platform/service/device_manager/inc/sl_device_peripheral.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/device_manager/inc/sl_device_peripheral_types.h
+ 1
+ STUDIO_SDK_LOC/platform/service/device_manager/inc/sl_device_peripheral_types.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/device_manager/src/sl_device_clock.c
+ 1
+ STUDIO_SDK_LOC/platform/service/device_manager/src/sl_device_clock.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/device_manager/src/sl_device_gpio.c
+ 1
+ STUDIO_SDK_LOC/platform/service/device_manager/src/sl_device_gpio.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/device_manager/src/sl_device_peripheral.c
+ 1
+ STUDIO_SDK_LOC/platform/service/device_manager/src/sl_device_peripheral.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/hfxo_manager/inc/sl_hfxo_manager.h
+ 1
+ STUDIO_SDK_LOC/platform/service/hfxo_manager/inc/sl_hfxo_manager.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/hfxo_manager/inc/sli_hfxo_manager.h
+ 1
+ STUDIO_SDK_LOC/platform/service/hfxo_manager/inc/sli_hfxo_manager.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/hfxo_manager/src/sl_hfxo_manager.c
+ 1
+ STUDIO_SDK_LOC/platform/service/hfxo_manager/src/sl_hfxo_manager.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/hfxo_manager/src/sl_hfxo_manager_hal_s2.c
+ 1
+ STUDIO_SDK_LOC/platform/service/hfxo_manager/src/sl_hfxo_manager_hal_s2.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/hfxo_manager/src/sli_hfxo_manager_internal.h
+ 1
+ STUDIO_SDK_LOC/platform/service/hfxo_manager/src/sli_hfxo_manager_internal.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/interrupt_manager/inc/sl_interrupt_manager.h
+ 1
+ STUDIO_SDK_LOC/platform/service/interrupt_manager/inc/sl_interrupt_manager.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/interrupt_manager/src/sl_interrupt_manager_cortexm.c
+ 1
+ STUDIO_SDK_LOC/platform/service/interrupt_manager/src/sl_interrupt_manager_cortexm.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/interrupt_manager/src/sli_interrupt_manager.h
+ 1
+ STUDIO_SDK_LOC/platform/service/interrupt_manager/src/sli_interrupt_manager.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/iostream/inc/sl_iostream.h
+ 1
+ STUDIO_SDK_LOC/platform/service/iostream/inc/sl_iostream.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/iostream/inc/sl_iostream_eusart.h
+ 1
+ STUDIO_SDK_LOC/platform/service/iostream/inc/sl_iostream_eusart.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/iostream/inc/sl_iostream_uart.h
+ 1
+ STUDIO_SDK_LOC/platform/service/iostream/inc/sl_iostream_uart.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/iostream/inc/sli_iostream.h
+ 1
+ STUDIO_SDK_LOC/platform/service/iostream/inc/sli_iostream.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/iostream/inc/sli_iostream_uart.h
+ 1
+ STUDIO_SDK_LOC/platform/service/iostream/inc/sli_iostream_uart.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/iostream/src/sl_iostream.c
+ 1
+ STUDIO_SDK_LOC/platform/service/iostream/src/sl_iostream.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/iostream/src/sl_iostream_eusart.c
+ 1
+ STUDIO_SDK_LOC/platform/service/iostream/src/sl_iostream_eusart.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/iostream/src/sl_iostream_retarget_stdio.c
+ 1
+ STUDIO_SDK_LOC/platform/service/iostream/src/sl_iostream_retarget_stdio.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/iostream/src/sl_iostream_uart.c
+ 1
+ STUDIO_SDK_LOC/platform/service/iostream/src/sl_iostream_uart.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/memory_manager/inc/sl_memory_manager.h
+ 1
+ STUDIO_SDK_LOC/platform/service/memory_manager/inc/sl_memory_manager.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/memory_manager/inc/sl_memory_manager_region.h
+ 1
+ STUDIO_SDK_LOC/platform/service/memory_manager/inc/sl_memory_manager_region.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/memory_manager/inc/sli_memory_manager_retention_control.h
+ 1
+ STUDIO_SDK_LOC/platform/service/memory_manager/inc/sli_memory_manager_retention_control.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/memory_manager/src/sl_memory_manager.c
+ 1
+ STUDIO_SDK_LOC/platform/service/memory_manager/src/sl_memory_manager.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/memory_manager/src/sl_memory_manager_cpp.cpp
+ 1
+ STUDIO_SDK_LOC/platform/service/memory_manager/src/sl_memory_manager_cpp.cpp
+
+
+ simplicity_sdk_2025.6.2/platform/service/memory_manager/src/sl_memory_manager_dynamic_reservation.c
+ 1
+ STUDIO_SDK_LOC/platform/service/memory_manager/src/sl_memory_manager_dynamic_reservation.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/memory_manager/src/sl_memory_manager_pool.c
+ 1
+ STUDIO_SDK_LOC/platform/service/memory_manager/src/sl_memory_manager_pool.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/memory_manager/src/sl_memory_manager_pool_common.c
+ 1
+ STUDIO_SDK_LOC/platform/service/memory_manager/src/sl_memory_manager_pool_common.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/memory_manager/src/sl_memory_manager_region.c
+ 1
+ STUDIO_SDK_LOC/platform/service/memory_manager/src/sl_memory_manager_region.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/memory_manager/src/sl_memory_manager_retarget.c
+ 1
+ STUDIO_SDK_LOC/platform/service/memory_manager/src/sl_memory_manager_retarget.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/memory_manager/src/sli_memory_manager.h
+ 1
+ STUDIO_SDK_LOC/platform/service/memory_manager/src/sli_memory_manager.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/memory_manager/src/sli_memory_manager_common.c
+ 1
+ STUDIO_SDK_LOC/platform/service/memory_manager/src/sli_memory_manager_common.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/power_manager/inc/sl_power_manager.h
+ 1
+ STUDIO_SDK_LOC/platform/service/power_manager/inc/sl_power_manager.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/power_manager/inc/sl_power_manager_debug.h
+ 1
+ STUDIO_SDK_LOC/platform/service/power_manager/inc/sl_power_manager_debug.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/power_manager/inc/sli_power_manager.h
+ 1
+ STUDIO_SDK_LOC/platform/service/power_manager/inc/sli_power_manager.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/sl_main/inc/sl_main_init.h
+ 1
+ STUDIO_SDK_LOC/platform/service/sl_main/inc/sl_main_init.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/sl_main/inc/sl_main_init_memory.h
+ 1
+ STUDIO_SDK_LOC/platform/service/sl_main/inc/sl_main_init_memory.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/sl_main/inc/sl_main_kernel.h
+ 1
+ STUDIO_SDK_LOC/platform/service/sl_main/inc/sl_main_kernel.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/sl_main/src/sl_main_init.c
+ 1
+ STUDIO_SDK_LOC/platform/service/sl_main/src/sl_main_init.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/sl_main/src/sl_main_init_memory.c
+ 1
+ STUDIO_SDK_LOC/platform/service/sl_main/src/sl_main_init_memory.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/sl_main/src/sl_main_kernel.c
+ 1
+ STUDIO_SDK_LOC/platform/service/sl_main/src/sl_main_kernel.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/sl_main/src/sli_main_init_memory.h
+ 1
+ STUDIO_SDK_LOC/platform/service/sl_main/src/sli_main_init_memory.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/sl_main/src/sli_main_kernel.h
+ 1
+ STUDIO_SDK_LOC/platform/service/sl_main/src/sli_main_kernel.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/sleeptimer/inc/sl_sleeptimer.h
+ 1
+ STUDIO_SDK_LOC/platform/service/sleeptimer/inc/sl_sleeptimer.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/sleeptimer/inc/sli_sleeptimer.h
+ 1
+ STUDIO_SDK_LOC/platform/service/sleeptimer/inc/sli_sleeptimer.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/sleeptimer/src/sl_sleeptimer.c
+ 1
+ STUDIO_SDK_LOC/platform/service/sleeptimer/src/sl_sleeptimer.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/sleeptimer/src/sl_sleeptimer_hal_burtc.c
+ 1
+ STUDIO_SDK_LOC/platform/service/sleeptimer/src/sl_sleeptimer_hal_burtc.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/sleeptimer/src/sl_sleeptimer_hal_sysrtc.c
+ 1
+ STUDIO_SDK_LOC/platform/service/sleeptimer/src/sl_sleeptimer_hal_sysrtc.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/sleeptimer/src/sl_sleeptimer_hal_timer.c
+ 1
+ STUDIO_SDK_LOC/platform/service/sleeptimer/src/sl_sleeptimer_hal_timer.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/sleeptimer/src/sli_sleeptimer_hal.h
+ 1
+ STUDIO_SDK_LOC/platform/service/sleeptimer/src/sli_sleeptimer_hal.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/udelay/inc/sl_udelay.h
+ 1
+ STUDIO_SDK_LOC/platform/service/udelay/inc/sl_udelay.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/udelay/src/sl_udelay.c
+ 1
+ STUDIO_SDK_LOC/platform/service/udelay/src/sl_udelay.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/udelay/src/sl_udelay_armv6m_gcc.S
+ 1
+ STUDIO_SDK_LOC/platform/service/udelay/src/sl_udelay_armv6m_gcc.S
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/LICENSE
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/LICENSE
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/nn/LICENSE.txt
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/nn/LICENSE.txt
+
+
+ simplicity_sdk_2025.6.2/util/third_party/printf/inc/iostream_printf.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/printf/inc/iostream_printf.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/printf/src/iostream_printf.c
+ 1
+ STUDIO_SDK_LOC/util/third_party/printf/src/iostream_printf.c
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/c/builtin_op_data.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/c/builtin_op_data.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/c/c_api_types.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/c/c_api_types.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/c/common.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/c/common.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/core/macros.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/core/macros.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/kernel_util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/kernel_util.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/op_macros.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/op_macros.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/padding.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/padding.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/compatibility.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/compatibility.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/debug_log.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/debug_log.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/fake_micro_context.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/fake_micro_context.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/flatbuffer_utils.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/flatbuffer_utils.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/memory_helpers.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/memory_helpers.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_allocation_info.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_allocation_info.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_allocator.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_allocator.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_arena_constants.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_arena_constants.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_common.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_common.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_context.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_context.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_graph.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_graph.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_interpreter.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_interpreter.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_log.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_log.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_mutable_op_resolver.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_mutable_op_resolver.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_op_resolver.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_op_resolver.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_profiler.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_profiler.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_profiler_interface.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_profiler_interface.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_resource_variable.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_resource_variable.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_string.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_string.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_time.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_time.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/micro_utils.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/micro_utils.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/mock_micro_graph.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/mock_micro_graph.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/recording_micro_allocator.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/recording_micro_allocator.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/recording_micro_interpreter.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/recording_micro_interpreter.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/system_setup.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/system_setup.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/test_helper_custom_ops.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/test_helper_custom_ops.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/test_helpers.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/test_helpers.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/schema/schema_generated.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/schema/schema_generated.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/schema/schema_utils.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/schema/schema_utils.h
+
+
+ simplicity_sdk_2025.6.2/hardware/driver/mx25_flash_shutdown/inc/sl_mx25_flash_shutdown_eusart/sl_mx25_flash_shutdown.h
+ 1
+ STUDIO_SDK_LOC/hardware/driver/mx25_flash_shutdown/inc/sl_mx25_flash_shutdown_eusart/sl_mx25_flash_shutdown.h
+
+
+ simplicity_sdk_2025.6.2/hardware/driver/mx25_flash_shutdown/src/sl_mx25_flash_shutdown_eusart/sl_mx25_flash_shutdown.c
+ 1
+ STUDIO_SDK_LOC/hardware/driver/mx25_flash_shutdown/src/sl_mx25_flash_shutdown_eusart/sl_mx25_flash_shutdown.c
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_acmp.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_acmp.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_aes.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_aes.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_amuxcp.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_amuxcp.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_buram.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_buram.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_burtc.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_burtc.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_cmu.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_cmu.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_dcdc.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_dcdc.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_devinfo.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_devinfo.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_dma_descriptor.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_dma_descriptor.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_dpll.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_dpll.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_emu.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_emu.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_eusart.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_eusart.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_fsrco.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_fsrco.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_gpcrc.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_gpcrc.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_gpio.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_gpio.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_gpio_port.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_gpio_port.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_hfrco.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_hfrco.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_hfxo.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_hfxo.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_i2c.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_i2c.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_iadc.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_iadc.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_icache.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_icache.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_keyscan.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_keyscan.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_lcd.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_lcd.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_lcdrf.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_lcdrf.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_ldma.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_ldma.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_ldmaxbar.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_ldmaxbar.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_ldmaxbar_defines.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_ldmaxbar_defines.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_letimer.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_letimer.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_lfrco.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_lfrco.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_lfxo.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_lfxo.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_mailbox.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_mailbox.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_mpahbram.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_mpahbram.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_msc.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_msc.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_mvp.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_mvp.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_pcnt.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_pcnt.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_prs.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_prs.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_prs_signals.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_prs_signals.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_semailbox.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_semailbox.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_smu.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_smu.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_syscfg.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_syscfg.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_sysrtc.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_sysrtc.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_timer.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_timer.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_ulfrco.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_ulfrco.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_usart.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_usart.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_vdac.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_vdac.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_wdog.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26_wdog.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26b510f3200im68.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/efr32mg26b510f3200im68.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/em_device.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/em_device.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Include/system_efr32mg26.h
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Include/system_efr32mg26.h
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Source/startup_efr32mg26.c
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Source/startup_efr32mg26.c
+
+
+ simplicity_sdk_2025.6.2/platform/Device/SiliconLabs/EFR32MG26/Source/system_efr32mg26.c
+ 1
+ STUDIO_SDK_LOC/platform/Device/SiliconLabs/EFR32MG26/Source/system_efr32mg26.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/driver/mvp/inc/sl_mvp.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/driver/mvp/inc/sl_mvp.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/driver/mvp/inc/sl_mvp_hal.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/driver/mvp/inc/sl_mvp_hal.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/driver/mvp/inc/sl_mvp_program_area.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/driver/mvp/inc/sl_mvp_program_area.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/driver/mvp/inc/sl_mvp_types.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/driver/mvp/inc/sl_mvp_types.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/driver/mvp/inc/sl_mvp_util.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/driver/mvp/inc/sl_mvp_util.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/driver/mvp/src/sl_mvp.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/driver/mvp/src/sl_mvp.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/driver/mvp/src/sl_mvp_hal_efr32.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/driver/mvp/src/sl_mvp_hal_efr32.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/driver/mvp/src/sl_mvp_program_area.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/driver/mvp/src/sl_mvp_program_area.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/driver/mvp/src/sl_mvp_util.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/driver/mvp/src/sl_mvp_util.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_complex_matrix_mult.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_complex_matrix_mult.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_complex_vector_conjugate.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_complex_vector_conjugate.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_complex_vector_dot_product.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_complex_vector_dot_product.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_complex_vector_magnitude_squared.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_complex_vector_magnitude_squared.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_complex_vector_mult.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_complex_vector_mult.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_matrix_add.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_matrix_add.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_matrix_mult.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_matrix_mult.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_matrix_scale.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_matrix_scale.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_matrix_sub.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_matrix_sub.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_matrix_transpose.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_matrix_transpose.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_matrix_vector_mult.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_matrix_vector_mult.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_util.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_util.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_vector_abs.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_vector_abs.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_vector_add.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_vector_add.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_vector_clamp.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_vector_clamp.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_vector_clip.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_vector_clip.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_vector_copy.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_vector_copy.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_vector_dot_product.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_vector_dot_product.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_vector_fill.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_vector_fill.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_vector_mult.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_vector_mult.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_vector_negate.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_vector_negate.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_vector_offset.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_vector_offset.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_vector_scale.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_vector_scale.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/inc/sl_math_mvp_vector_sub.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/inc/sl_math_mvp_vector_sub.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_complex_matrix_mult.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_complex_matrix_mult.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_complex_vector_conjugate.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_complex_vector_conjugate.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_complex_vector_dot_product.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_complex_vector_dot_product.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_complex_vector_magnitude_squared.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_complex_vector_magnitude_squared.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_complex_vector_mult.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_complex_vector_mult.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_matrix_add.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_matrix_add.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_matrix_mult.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_matrix_mult.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_matrix_scale.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_matrix_scale.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_matrix_sub.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_matrix_sub.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_matrix_transpose.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_matrix_transpose.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_matrix_vector_mult.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_matrix_vector_mult.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_util.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_util.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_vector_abs.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_vector_abs.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_vector_add.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_vector_add.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_vector_clamp.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_vector_clamp.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_vector_clip.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_vector_clip.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_vector_copy.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_vector_copy.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_vector_dot_product.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_vector_dot_product.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_vector_fill.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_vector_fill.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_vector_mult.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_vector_mult.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_vector_negate.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_vector_negate.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_vector_offset.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_vector_offset.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_vector_scale.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_vector_scale.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/math/mvp/src/sl_math_mvp_vector_sub.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/math/mvp/src/sl_math_mvp_vector_sub.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/inc/sl_mvp_ml.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/inc/sl_mvp_ml.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/inc/sl_mvp_ml_add.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/inc/sl_mvp_ml_add.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/inc/sl_mvp_ml_conv2d.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/inc/sl_mvp_ml_conv2d.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/inc/sl_mvp_ml_depthwise_conv2d.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/inc/sl_mvp_ml_depthwise_conv2d.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/inc/sl_mvp_ml_fully_connected.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/inc/sl_mvp_ml_fully_connected.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/inc/sl_mvp_ml_mul.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/inc/sl_mvp_ml_mul.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/inc/sl_mvp_ml_pooling.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/inc/sl_mvp_ml_pooling.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/inc/sl_mvp_ml_transpose_conv2d.h
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/inc/sl_mvp_ml_transpose_conv2d.h
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/src/sl_mvp_ml_add.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/src/sl_mvp_ml_add.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/src/sl_mvp_ml_conv2d.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/src/sl_mvp_ml_conv2d.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/src/sl_mvp_ml_depthwise_conv2d.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/src/sl_mvp_ml_depthwise_conv2d.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/src/sl_mvp_ml_fully_connected.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/src/sl_mvp_ml_fully_connected.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/src/sl_mvp_ml_mul.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/src/sl_mvp_ml_mul.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/src/sl_mvp_ml_pooling.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/src/sl_mvp_ml_pooling.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/src/sl_mvp_ml_transpose_conv2d.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/src/sl_mvp_ml_transpose_conv2d.c
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/src/sli_mvp_ml_depthwise_conv2d.cc
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/src/sli_mvp_ml_depthwise_conv2d.cc
+
+
+ simplicity_sdk_2025.6.2/platform/compute/nn/mvp/src/sli_mvp_ml_depthwise_conv2d_opt.c
+ 1
+ STUDIO_SDK_LOC/platform/compute/nn/mvp/src/sli_mvp_ml_depthwise_conv2d_opt.c
+
+
+ simplicity_sdk_2025.6.2/platform/emdrv/dmadrv/inc/s2_signals/dmadrv_signals.h
+ 1
+ STUDIO_SDK_LOC/platform/emdrv/dmadrv/inc/s2_signals/dmadrv_signals.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/collections/bitmap.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/collections/bitmap.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/collections/bitmap_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/collections/bitmap_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/collections/map.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/collections/map.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/collections/map_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/collections/map_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/collections/slist.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/collections/slist.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/collections/slist_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/collections/slist_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/common/common.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/common/common.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/common/common_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/common/common_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/kal/kal_kernel.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/kal/kal_kernel.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/kal/kal_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/kal/kal_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/lib/lib_ascii.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/lib/lib_ascii.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/lib/lib_math.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/lib/lib_math.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/lib/lib_mem.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/lib/lib_mem.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/lib/lib_str.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/lib/lib_str.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/lib/lib_str_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/lib/lib_str_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/logging/logging.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/logging/logging.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/logging/logging_chk_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/logging/logging_chk_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/logging/logging_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/logging/logging_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/platform_mgr/platform_mgr.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/platform_mgr/platform_mgr.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/platform_mgr/platform_mgr_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/platform_mgr/platform_mgr_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/preprocessor/preprocessor_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/preprocessor/preprocessor_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/ring_buf/ring_buf.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/ring_buf/ring_buf.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/ring_buf/ring_buf_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/ring_buf/ring_buf_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/rtos/rtos_err_str.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/rtos/rtos_err_str.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/rtos/rtos_utils.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/rtos/rtos_utils.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/common/source/rtos/rtos_utils_priv.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/common/source/rtos/rtos_utils_priv.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/ports/source/generic/arm_cpu_dwt_ts.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/ports/source/generic/arm_cpu_dwt_ts.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/ports/source/gnu/armv7m_cpu_c.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/ports/source/gnu/armv7m_cpu_c.c
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/ports/source/gnu/armv7m_cpu_port.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/ports/source/gnu/armv7m_cpu_port.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/ports/source/gnu/armv8m_cpu_a.S
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/ports/source/gnu/armv8m_cpu_a.S
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/ports/source/gnu/armv8m_os_cpu.h
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/ports/source/gnu/armv8m_os_cpu.h
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/ports/source/gnu/armv8m_os_cpu_a.S
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/ports/source/gnu/armv8m_os_cpu_a.S
+
+
+ simplicity_sdk_2025.6.2/platform/micrium_os/ports/source/gnu/armv8m_os_cpu_c.c
+ 1
+ STUDIO_SDK_LOC/platform/micrium_os/ports/source/gnu/armv8m_os_cpu_c.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/interrupt_manager/inc/arm/cmsis_nvic_virtual.h
+ 1
+ STUDIO_SDK_LOC/platform/service/interrupt_manager/inc/arm/cmsis_nvic_virtual.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/power_manager/src/common/sl_power_manager_common.c
+ 1
+ STUDIO_SDK_LOC/platform/service/power_manager/src/common/sl_power_manager_common.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/power_manager/src/common/sl_power_manager_em4.c
+ 1
+ STUDIO_SDK_LOC/platform/service/power_manager/src/common/sl_power_manager_em4.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/power_manager/src/sleep_loop/sl_power_manager.c
+ 1
+ STUDIO_SDK_LOC/platform/service/power_manager/src/sleep_loop/sl_power_manager.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/power_manager/src/sleep_loop/sl_power_manager_debug.c
+ 1
+ STUDIO_SDK_LOC/platform/service/power_manager/src/sleep_loop/sl_power_manager_debug.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/power_manager/src/sleep_loop/sl_power_manager_hal_s2.c
+ 1
+ STUDIO_SDK_LOC/platform/service/power_manager/src/sleep_loop/sl_power_manager_hal_s2.c
+
+
+ simplicity_sdk_2025.6.2/platform/service/power_manager/src/sleep_loop/sli_power_manager_private.h
+ 1
+ STUDIO_SDK_LOC/platform/service/power_manager/src/sleep_loop/sli_power_manager_private.h
+
+
+ simplicity_sdk_2025.6.2/platform/service/sl_main/src/rtos/main_retarget.c
+ 1
+ STUDIO_SDK_LOC/platform/service/sl_main/src/rtos/main_retarget.c
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_common_tables.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_common_tables.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_common_tables_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_common_tables_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_const_structs.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_const_structs.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_const_structs_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_const_structs_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_helium_utils.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_helium_utils.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_math.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_math.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_math_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_math_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_math_memory.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_math_memory.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_math_types.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_math_types.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_math_types_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_math_types_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_mve_tables.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_mve_tables.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_mve_tables_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_mve_tables_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_vec_math.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_vec_math.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/arm_vec_math_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/arm_vec_math_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/nn/Include/arm_nn_math_types.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/nn/Include/arm_nn_math_types.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/nn/Include/arm_nn_tables.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/nn/Include/arm_nn_tables.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/nn/Include/arm_nn_types.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/nn/Include/arm_nn_types.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/nn/Include/arm_nnfunctions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/nn/Include/arm_nnfunctions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/nn/Include/arm_nnsupportfunctions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/nn/Include/arm_nnsupportfunctions.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/core/api/error_reporter.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/core/api/error_reporter.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/core/api/flatbuffer_conversions.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/core/api/flatbuffer_conversions.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/core/api/op_resolver.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/core/api/op_resolver.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/core/api/tensor_utils.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/core/api/tensor_utils.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/core/c/builtin_op_data.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/core/c/builtin_op_data.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/core/c/c_api_types.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/core/c/c_api_types.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/core/c/common.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/core/c/common.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/common.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/common.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/compatibility.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/compatibility.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/cppmath.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/cppmath.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/max.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/max.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/min.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/min.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/portable_tensor.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/portable_tensor.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/portable_tensor_utils.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/portable_tensor_utils.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/quantization_util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/quantization_util.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/runtime_shape.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/runtime_shape.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/strided_slice_logic.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/strided_slice_logic.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/tensor_ctypes.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/tensor_ctypes.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/types.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/types.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/arena_allocator/ibuffer_allocator.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/arena_allocator/ibuffer_allocator.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/arena_allocator/non_persistent_arena_buffer_allocator.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/arena_allocator/non_persistent_arena_buffer_allocator.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/arena_allocator/persistent_arena_buffer_allocator.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/arena_allocator/persistent_arena_buffer_allocator.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/arena_allocator/recording_single_arena_buffer_allocator.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/arena_allocator/recording_single_arena_buffer_allocator.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/arena_allocator/single_arena_buffer_allocator.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/arena_allocator/single_arena_buffer_allocator.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/activation_utils.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/activation_utils.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/activations.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/activations.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/add.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/add.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/circular_buffer.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/circular_buffer.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/circular_buffer_flexbuffers_generated_data.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/circular_buffer_flexbuffers_generated_data.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/conv.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/conv.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/conv_test.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/conv_test.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/depthwise_conv.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/depthwise_conv.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/dequantize.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/dequantize.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/detection_postprocess_flexbuffers_generated_data.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/detection_postprocess_flexbuffers_generated_data.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/ethosu.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/ethosu.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/fully_connected.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/fully_connected.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/hard_swish.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/hard_swish.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/kernel_runner.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/kernel_runner.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/kernel_util.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/kernel_util.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/leaky_relu.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/leaky_relu.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/logical.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/logical.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/logistic.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/logistic.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/lstm_eval.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/lstm_eval.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/lstm_eval_test.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/lstm_eval_test.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/lstm_shared.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/lstm_shared.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/micro_ops.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/micro_ops.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/micro_tensor_utils.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/micro_tensor_utils.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/mul.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/mul.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/pad.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/pad.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/pooling.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/pooling.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/prelu.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/prelu.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/quantize.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/quantize.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/reduce.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/reduce.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/softmax.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/softmax.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/sub.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/sub.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/svdf.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/svdf.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/unidirectional_sequence_lstm.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/unidirectional_sequence_lstm.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/memory_planner/linear_memory_planner.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/memory_planner/linear_memory_planner.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/memory_planner/memory_plan_struct.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/memory_planner/memory_plan_struct.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/memory_planner/micro_memory_planner.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/memory_planner/micro_memory_planner.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/memory_planner/non_persistent_buffer_planner_shim.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/memory_planner/non_persistent_buffer_planner_shim.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/tflite_bridge/flatbuffer_conversions_bridge.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/tflite_bridge/flatbuffer_conversions_bridge.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/tflite_bridge/micro_error_reporter.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/tflite_bridge/micro_error_reporter.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/basic_math_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/basic_math_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/basic_math_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/basic_math_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/bayes_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/bayes_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/bayes_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/bayes_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/complex_math_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/complex_math_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/complex_math_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/complex_math_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/controller_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/controller_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/controller_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/controller_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/debug.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/debug.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/distance_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/distance_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/distance_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/distance_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/fast_math_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/fast_math_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/fast_math_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/fast_math_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/filtering_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/filtering_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/filtering_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/filtering_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/interpolation_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/interpolation_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/interpolation_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/interpolation_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/matrix_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/matrix_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/matrix_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/matrix_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/matrix_utils.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/matrix_utils.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/none.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/none.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/quaternion_math_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/quaternion_math_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/statistics_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/statistics_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/statistics_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/statistics_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/support_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/support_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/support_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/support_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/svm_defines.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/svm_defines.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/svm_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/svm_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/svm_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/svm_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/transform_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/transform_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/transform_functions_f16.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/transform_functions_f16.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/utils.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/utils.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/dsp/Include/dsp/window_functions.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/dsp/Include/dsp/window_functions.h
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/lib/gcc/cortex-m33/libCMSISDSP.a
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/lib/gcc/cortex-m33/libCMSISDSP.a
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/lib/gcc/cortex-m33/libcmsis-nn.a
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/lib/gcc/cortex-m33/libcmsis-nn.a
+
+
+ simplicity_sdk_2025.6.2/util/third_party/cmsis/nn/Include/Internal/arm_nn_compiler.h
+ 1
+ STUDIO_SDK_LOC/util/third_party/cmsis/nn/Include/Internal/arm_nn_compiler.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/optimized/neon_check.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/optimized/neon_check.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/add.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/add.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/add_n.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/add_n.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/arg_min_max.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/arg_min_max.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/batch_matmul.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/batch_matmul.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/batch_to_space_nd.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/batch_to_space_nd.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/binary_function.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/binary_function.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/broadcast_args.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/broadcast_args.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/broadcast_to.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/broadcast_to.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/ceil.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/ceil.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/comparisons.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/comparisons.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/concatenation.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/concatenation.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/conv.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/conv.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/cumsum.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/cumsum.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/depth_to_space.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/depth_to_space.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/depthwiseconv_uint8.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/depthwiseconv_uint8.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/dequantize.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/dequantize.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/div.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/div.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/elu.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/elu.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/exp.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/exp.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/fill.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/fill.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/floor.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/floor.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/floor_div.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/floor_div.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/floor_mod.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/floor_mod.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/fully_connected.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/fully_connected.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/hard_swish.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/hard_swish.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/l2normalization.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/l2normalization.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/leaky_relu.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/leaky_relu.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/log_softmax.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/log_softmax.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/logistic.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/logistic.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/lstm_cell.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/lstm_cell.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/maximum_minimum.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/maximum_minimum.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/mul.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/mul.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/neg.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/neg.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/pad.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/pad.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/pooling.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/pooling.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/portable_tensor_utils.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/portable_tensor_utils.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/prelu.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/prelu.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/quantize.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/quantize.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/reduce.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/reduce.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/requantize.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/requantize.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/resize_bilinear.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/resize_bilinear.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/resize_nearest_neighbor.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/resize_nearest_neighbor.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/round.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/round.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/select.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/select.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/slice.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/slice.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/softmax.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/softmax.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/space_to_batch_nd.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/space_to_batch_nd.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/space_to_depth.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/space_to_depth.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/strided_slice.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/strided_slice.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/sub.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/sub.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/tanh.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/tanh.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/transpose.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/transpose.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/transpose_conv.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/transpose_conv.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/cmsis_nn/softmax.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/cmsis_nn/softmax.cc
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/cmsis_nn/svdf.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/cmsis_nn/svdf.cc
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/micro/kernels/cmsis_nn/unidirectional_sequence_lstm.cc
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/micro/kernels/cmsis_nn/unidirectional_sequence_lstm.cc
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/add.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/add.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/l2normalization.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/l2normalization.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/logistic.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/logistic.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/mean.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/mean.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/tanh.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/tanh.h
+
+
+ aiml_2.1.2/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/transpose_conv.h
+ 1
+ STUDIO_SDK_LOC/extension/aiml-extension/third_party/tflite-micro/tensorflow/lite/kernels/internal/reference/integer_ops/transpose_conv.h
+
+
+
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/README.md b/application/AuraSense/firmware/aura-baby-monitor-soc/README.md
new file mode 100644
index 000000000..4fadb23ff
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/README.md
@@ -0,0 +1,91 @@
+# AuraSense Firmware Project
+
+This is the main embedded project for the AuraSense nursery monitor. It runs on Silicon Labs EFR32xG26 hardware and performs on-device audio classification plus BLE communication with the Android app.
+
+## Target Hardware
+
+- Family: `EFR32xG26`
+- Device in project metadata: `EFR32MG26B510F3200IM68`
+- Board reference in project metadata: `brd2608a`
+
+## What The Firmware Does
+
+- Captures audio features on the board
+- Runs a TensorFlow Lite Micro model locally
+- Classifies audio into these classes:
+ - `0` = `background`
+ - `1` = `cry`
+ - `2` = `laugh`
+ - `3` = `sad`
+- Sends the result to the mobile app using BLE notifications
+- Accepts basic control commands from the app
+- Exposes room-temperature data where supported by the board configuration
+
+## Important Files
+
+- `ml_ble_classifier.slcp` - Simplicity Studio project entry point
+- `app.c` - BLE app logic and event handling
+- `app.h` - shared definitions and BLE state
+- `audio_classifier.cc` - audio inference pipeline and decision logic
+- `recognize_commands.cc` - classification helper logic
+- `config/audio_classifier_config.h` - classifier configuration
+- `config/pin_config.h` - board and pin-related setup
+- `config/tflite/baby_cry_int8_DEPLOY.tflite` - deployable model file
+- `autogen/sl_tflite_micro_model.c` - generated embedded C array form of the model
+- `autogen/gatt_db.c` - generated BLE GATT database
+
+## BLE Behavior
+
+### Notification Payload
+
+Characteristic: `gattdb_inference_result`
+
+Notification payload format:
+
+- Byte `0`: class id
+- Byte `1`: confidence score encoded as unsigned 8-bit value
+
+### Control Characteristic
+
+Service UUID:
+
+- `a3c87500-8ed3-4bdf-8a39-a01bebede295`
+
+Control Characteristic UUID:
+
+- `a3c87502-8ed3-4bdf-8a39-a01bebede295`
+
+Command format:
+
+- Byte `0`: command id
+- Byte `1`: command value
+
+Supported command ids:
+
+- `1` = monitoring enable (`0/1`)
+- `2` = alerts enable (`0/1`)
+- `3` = confidence threshold (`0..100`)
+- `4` = debounce count (`1..10`)
+- `5` = deep sleep enable (`0/1`)
+- `6` = device enable (`0/1`)
+
+## Build From Source
+
+### Simplicity Studio 6
+
+1. Open Simplicity Studio 6.
+2. Import `ml_ble_classifier.slcp`.
+3. Let Studio resolve the required SDK and AI/ML components.
+4. Build the project.
+5. Flash it to the board.
+
+## Model Notes
+
+- The `.tflite` file lives in `config/tflite/`.
+- The generated C model array lives in `autogen/sl_tflite_micro_model.c`.
+- If you replace the model, regenerate the embedded model output before rebuilding.
+
+## Practical Advice
+
+- If you only want to demo the project, use `../releases/aura_baby_monitor.s37`.
+- If you move to another EFR32xG26 board, check microphone, sensor, and pin mappings first.
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/app.c b/application/AuraSense/firmware/aura-baby-monitor-soc/app.c
new file mode 100644
index 000000000..c9d329f5d
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/app.c
@@ -0,0 +1,426 @@
+/***************************************************************************//**
+ * @file
+ * @brief Top level application functions + BLE event handler
+ ******************************************************************************/
+#include "app.h"
+#include "audio_classifier.h"
+#include "sl_bt_api.h"
+#include "gatt_db.h"
+#include "app_assert.h"
+#include "sl_sensor_rht.h"
+#include "sl_sleeptimer.h"
+#include "config/pin_config.h"
+#include "em_gpio.h"
+#include
+#include
+
+// Some generated GATT DB variants do not emit a separate ai_control handle.
+// Fall back to inference_result so write handling still compiles.
+#ifndef gattdb_ai_control
+#define gattdb_ai_control gattdb_inference_result
+#endif
+
+// ============================================================================
+// BLE SHARED STATE (declared extern in app.h)
+// ============================================================================
+volatile bool notifications_enabled = false;
+static volatile bool temp_notifications_enabled = false;
+uint8_t connection_handle = 0xFF;
+uint8_t last_class = 0xFF;
+volatile bool device_enabled = true;
+volatile bool monitoring_enabled = true;
+volatile bool deep_sleep_enabled = false;
+volatile uint8_t app_conf_threshold = 85;
+volatile uint8_t app_debounce_count = 5;
+
+// ============================================================================
+// PRIVATE VARIABLES
+// ============================================================================
+static uint8_t advertising_set_handle = 0xFF;
+static bool btn0_prev_pressed = false;
+static bool btn1_prev_pressed = false;
+
+#ifndef APP_BTN0_PORT
+#define APP_BTN0_PORT gpioPortB
+#endif
+#ifndef APP_BTN0_PIN
+#define APP_BTN0_PIN 2
+#endif
+#ifndef APP_BTN1_PORT
+#define APP_BTN1_PORT gpioPortB
+#endif
+#ifndef APP_BTN1_PIN
+#define APP_BTN1_PIN 3
+#endif
+
+#define CMD_MONITORING_ENABLE 1u
+#define CMD_ALERTS_ENABLE 2u
+#define CMD_THRESHOLD 3u
+#define CMD_DEBOUNCE 4u
+#define CMD_DEEP_SLEEP 5u
+#define CMD_DEVICE_ENABLE 6u
+#define TEMP_UPDATE_PERIOD_MS 5000u
+#define TEMP_INVALID_RAW ((int16_t)0x7FFF)
+#define BLE_PACKET_TEMP_INVALID 0xFFu
+
+static int gated_printf(const char *fmt, ...)
+{
+ if (!device_enabled || deep_sleep_enabled) {
+ return 0;
+ }
+ va_list args;
+ va_start(args, fmt);
+ int written = vprintf(fmt, args);
+ va_end(args);
+ return written;
+}
+
+#define printf(...) gated_printf(__VA_ARGS__)
+
+static void app_init_button_inputs(void)
+{
+ GPIO_PinModeSet(APP_BTN0_PORT, APP_BTN0_PIN, gpioModeInputPullFilter, 1);
+ GPIO_PinModeSet(APP_BTN1_PORT, APP_BTN1_PIN, gpioModeInputPullFilter, 1);
+}
+
+static bool button_pressed(GPIO_Port_TypeDef port, unsigned int pin)
+{
+ return (GPIO_PinInGet(port, pin) == 0);
+}
+
+static void app_poll_buttons(void)
+{
+ bool btn0_pressed = button_pressed(APP_BTN0_PORT, APP_BTN0_PIN);
+ bool btn1_pressed = button_pressed(APP_BTN1_PORT, APP_BTN1_PIN);
+
+ if (btn0_pressed && !btn0_prev_pressed) {
+ device_enabled = true;
+ monitoring_enabled = true;
+ deep_sleep_enabled = false;
+ printf("[CTRL] BTN0 -> DEVICE ON\n");
+ }
+
+ if (btn1_pressed && !btn1_prev_pressed) {
+ device_enabled = false;
+ monitoring_enabled = false;
+ deep_sleep_enabled = false;
+ printf("[CTRL] BTN1 -> DEVICE OFF\n");
+ }
+
+ btn0_prev_pressed = btn0_pressed;
+ btn1_prev_pressed = btn1_pressed;
+}
+
+static bool temp_sensor_ready = false;
+static uint64_t next_temp_update_tick = 0;
+static int16_t latest_temp_c_x100 = TEMP_INVALID_RAW;
+
+static uint8_t app_encode_temp_half_c(int16_t temp_c_x100)
+{
+ if (temp_c_x100 == TEMP_INVALID_RAW) {
+ return BLE_PACKET_TEMP_INVALID;
+ }
+
+ // Encode in 0.5 C steps with -40 C offset:
+ // encoded = round(temp_c * 2) + 80, valid range 0..254
+ int32_t half_c = (temp_c_x100 >= 0)
+ ? ((int32_t)temp_c_x100 + 25) / 50
+ : ((int32_t)temp_c_x100 - 25) / 50;
+ int32_t encoded = half_c + 80;
+ if (encoded < 0) encoded = 0;
+ if (encoded > 254) encoded = 254;
+ return (uint8_t)encoded;
+}
+
+static void app_write_temperature_to_gatt(int16_t temp_c_x100)
+{
+ uint8_t payload[2];
+ payload[0] = (uint8_t)(temp_c_x100 & 0xFF);
+ payload[1] = (uint8_t)((temp_c_x100 >> 8) & 0xFF);
+ (void)sl_bt_gatt_server_write_attribute_value(
+ gattdb_es_temperature,
+ 0,
+ sizeof(payload),
+ payload);
+
+ if (connection_handle != 0xFF && temp_notifications_enabled) {
+ (void)sl_bt_gatt_server_send_notification(
+ connection_handle,
+ gattdb_es_temperature,
+ sizeof(payload),
+ payload);
+ }
+
+ latest_temp_c_x100 = temp_c_x100;
+}
+
+static void app_update_environment_temperature(bool force_update)
+{
+ uint64_t now = sl_sleeptimer_get_tick_count64();
+
+ if (!force_update && TEMP_UPDATE_PERIOD_MS > 0u && now < next_temp_update_tick) {
+ return;
+ }
+
+ next_temp_update_tick = now + sl_sleeptimer_ms_to_tick(TEMP_UPDATE_PERIOD_MS);
+
+ if (!temp_sensor_ready) {
+ return;
+ }
+
+ uint32_t humidity = 0;
+ int32_t temperature_milli_c = 0;
+ sl_status_t sc = sl_sensor_rht_get(&humidity, &temperature_milli_c);
+ (void)humidity;
+
+ if (sc != SL_STATUS_OK) {
+ printf("[TEMP] read failed: 0x%04lX\n", (unsigned long)sc);
+ // Do not overwrite the characteristic with invalid marker on transient
+ // failures; keep last published value for app-side reads.
+ return;
+ }
+
+ // Environmental Sensing temperature characteristic uses 0.01 C resolution.
+ int16_t temp_c_x100 = (int16_t)(temperature_milli_c / 10);
+ app_write_temperature_to_gatt(temp_c_x100);
+ printf("[TEMP] %ld.%02ld C\n",
+ (long)(temp_c_x100 / 100),
+ (long)(temp_c_x100 < 0 ? -(temp_c_x100 % 100) : (temp_c_x100 % 100)));
+}
+
+void app_service_temperature_telemetry(void)
+{
+ if (!device_enabled || deep_sleep_enabled) {
+ return;
+ }
+ app_update_environment_temperature(false);
+}
+
+void app_apply_control_command(uint8_t command_id, uint8_t value)
+{
+ switch (command_id) {
+ case CMD_MONITORING_ENABLE:
+ monitoring_enabled = (value != 0);
+ if (monitoring_enabled) {
+ device_enabled = true;
+ deep_sleep_enabled = false;
+ }
+ printf("[CTRL] monitoring=%u\n", (unsigned int)monitoring_enabled);
+ break;
+
+ case CMD_ALERTS_ENABLE:
+ // Trigger policy is app-side; keep command for protocol compatibility.
+ printf("[CTRL] alerts_enable=%u\n", (unsigned int)(value != 0));
+ break;
+
+ case CMD_THRESHOLD:
+ if (value > 100) value = 100;
+ app_conf_threshold = value;
+ printf("[CTRL] threshold=%u\n", (unsigned int)app_conf_threshold);
+ break;
+
+ case CMD_DEBOUNCE:
+ if (value < 1) value = 1;
+ if (value > 10) value = 10;
+ app_debounce_count = value;
+ printf("[CTRL] debounce=%u\n", (unsigned int)app_debounce_count);
+ break;
+
+ case CMD_DEEP_SLEEP:
+ deep_sleep_enabled = (value != 0);
+ if (deep_sleep_enabled) {
+ device_enabled = true;
+ monitoring_enabled = false;
+ }
+ printf("[CTRL] deep_sleep=%u\n", (unsigned int)deep_sleep_enabled);
+ break;
+
+ case CMD_DEVICE_ENABLE:
+ device_enabled = (value != 0);
+ if (!device_enabled) {
+ monitoring_enabled = false;
+ deep_sleep_enabled = false;
+ }
+ printf("[CTRL] device_enabled=%u\n", (unsigned int)device_enabled);
+ break;
+
+ default:
+ printf("[CTRL] unknown command=%u value=%u\n",
+ (unsigned int)command_id, (unsigned int)value);
+ break;
+ }
+}
+
+// ============================================================================
+// APPLICATION INIT
+// ============================================================================
+void app_init(void)
+{
+ printf("[APP] Initializing audio classifier...\n");
+ app_init_button_inputs();
+
+ sl_status_t sensor_status = sl_sensor_rht_init();
+ temp_sensor_ready = (sensor_status == SL_STATUS_OK);
+ if (!temp_sensor_ready) {
+ printf("[TEMP] RHT init failed: 0x%04lX\n", (unsigned long)sensor_status);
+ }
+ app_update_environment_temperature(true);
+
+ audio_classifier_init();
+}
+
+// ============================================================================
+// APPLICATION PROCESS ACTION (called from main loop, not used with RTOS)
+// ============================================================================
+void app_process_action(void)
+{
+ // Poll physical override buttons in main loop.
+ app_poll_buttons();
+ app_update_environment_temperature(false);
+}
+
+// ============================================================================
+// BLE EVENT HANDLER
+// ============================================================================
+void sl_bt_on_event(sl_bt_msg_t *evt)
+{
+ sl_status_t sc;
+
+ switch (SL_BT_MSG_ID(evt->header))
+ {
+ case sl_bt_evt_system_boot_id:
+ printf("[BLE] System boot, starting advertiser...\n");
+
+ sc = sl_bt_advertiser_create_set(&advertising_set_handle);
+ app_assert_status(sc);
+
+ sc = sl_bt_legacy_advertiser_generate_data(
+ advertising_set_handle,
+ sl_bt_advertiser_general_discoverable);
+ app_assert_status(sc);
+
+ sc = sl_bt_advertiser_set_timing(
+ advertising_set_handle,
+ 160,
+ 160,
+ 0,
+ 0);
+ app_assert_status(sc);
+
+ sc = sl_bt_legacy_advertiser_start(
+ advertising_set_handle,
+ sl_bt_legacy_advertiser_connectable);
+ app_assert_status(sc);
+
+ printf("[BLE] Advertising as 'Baby Cry Detector'\n");
+ break;
+
+ case sl_bt_evt_connection_opened_id:
+ connection_handle = evt->data.evt_connection_opened.connection;
+ printf("[BLE] Connected (handle=%d)\n", connection_handle);
+ app_update_environment_temperature(true);
+ break;
+
+ case sl_bt_evt_connection_closed_id:
+ printf("[BLE] Disconnected (reason=0x%02X)\n",
+ (unsigned int)evt->data.evt_connection_closed.reason);
+
+ notifications_enabled = false;
+ temp_notifications_enabled = false;
+ last_class = 0xFF;
+ connection_handle = 0xFF;
+
+ sc = sl_bt_legacy_advertiser_generate_data(
+ advertising_set_handle,
+ sl_bt_advertiser_general_discoverable);
+ app_assert_status(sc);
+
+ sc = sl_bt_legacy_advertiser_start(
+ advertising_set_handle,
+ sl_bt_legacy_advertiser_connectable);
+ app_assert_status(sc);
+
+ printf("[BLE] Advertising restarted\n");
+ break;
+
+ case sl_bt_evt_gatt_server_characteristic_status_id:
+ if (evt->data.evt_gatt_server_characteristic_status.characteristic
+ == gattdb_inference_result)
+ {
+ if (evt->data.evt_gatt_server_characteristic_status.status_flags
+ == sl_bt_gatt_server_client_config)
+ {
+ uint16_t flags =
+ evt->data.evt_gatt_server_characteristic_status.client_config_flags;
+
+ notifications_enabled = (flags & sl_bt_gatt_notification) ? true : false;
+
+ if (notifications_enabled) {
+ last_class = 0xFF;
+ // Refresh sensor-backed temperature right when the app subscribes
+ // so its immediate follow-up characteristic read gets current data.
+ app_update_environment_temperature(true);
+ }
+
+ printf("[BLE] Notifications %s\n",
+ notifications_enabled ? "ENABLED" : "DISABLED");
+ }
+ }
+ else if (evt->data.evt_gatt_server_characteristic_status.characteristic
+ == gattdb_es_temperature)
+ {
+ if (evt->data.evt_gatt_server_characteristic_status.status_flags
+ == sl_bt_gatt_server_client_config)
+ {
+ uint16_t flags =
+ evt->data.evt_gatt_server_characteristic_status.client_config_flags;
+ temp_notifications_enabled = (flags & sl_bt_gatt_notification) ? true : false;
+ printf("[BLE] Temp notifications %s\n",
+ temp_notifications_enabled ? "ENABLED" : "DISABLED");
+ }
+ }
+ break;
+
+ case sl_bt_evt_gatt_server_attribute_value_id:
+ if (evt->data.evt_gatt_server_attribute_value.attribute == gattdb_ai_control) {
+ const byte_array *value = &evt->data.evt_gatt_server_attribute_value.value;
+ if (value->len >= 2) {
+ app_apply_control_command(value->data[0], value->data[1]);
+ }
+ }
+ break;
+
+ default:
+ break;
+ }
+}
+
+// ============================================================================
+// BLE NOTIFICATION SENDER
+// ============================================================================
+void send_ble_notification(uint8_t class_id, uint8_t confidence_pct)
+{
+ if (!device_enabled || deep_sleep_enabled || !monitoring_enabled
+ || !notifications_enabled || connection_handle == 0xFF) {
+ return;
+ }
+
+ uint8_t payload[3] = {
+ class_id,
+ confidence_pct,
+ app_encode_temp_half_c(latest_temp_c_x100)
+ };
+
+ sl_status_t sc = sl_bt_gatt_server_send_notification(
+ connection_handle,
+ gattdb_inference_result,
+ sizeof(payload),
+ payload);
+
+ if (sc == SL_STATUS_OK) {
+ printf("[BLE] Notify: class=%d conf=%u%% temp_enc=%u\n",
+ class_id,
+ (unsigned int)payload[1],
+ (unsigned int)payload[2]);
+ }
+}
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/app.h b/application/AuraSense/firmware/aura-baby-monitor-soc/app.h
new file mode 100644
index 000000000..92814994d
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/app.h
@@ -0,0 +1,66 @@
+/***************************************************************************//**
+ * @file app.h
+ * @brief Top level application functions + BLE shared state
+ *******************************************************************************
+ * # License
+ * Copyright 2022 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * The licensor of this software is Silicon Laboratories Inc. Your use of this
+ * software is governed by the terms of Silicon Labs Master Software License
+ * Agreement (MSLA) available at
+ * www.silabs.com/about-us/legal/master-software-license-agreement. This
+ * software is distributed to you in Source Code format and is governed by the
+ * sections of the MSLA applicable to Source Code.
+ *
+ ******************************************************************************/
+
+#ifndef APP_H
+#define APP_H
+
+#include
+#include
+
+/***************************************************************************//**
+ * Initialize application.
+ ******************************************************************************/
+void app_init(void);
+
+/***************************************************************************//**
+ * App tance action. Called in the main loop.
+ ******************************************************************************/
+void app_process_action(void);
+
+// ============================================================================
+// BLE SHARED STATE (read/write from audio_classifier.cc)
+// ============================================================================
+extern volatile bool notifications_enabled; // true when phone enables CCCD
+extern uint8_t connection_handle; // 0xFF = not connected
+extern uint8_t last_class; // last notified class (0xFF = none)
+extern volatile bool device_enabled; // true when device monitoring is enabled
+extern volatile bool monitoring_enabled; // true when inference processing is enabled
+extern volatile bool deep_sleep_enabled; // true when EM2 deep sleep mode is requested
+extern volatile uint8_t app_conf_threshold; // confidence threshold sent by app (0..100)
+extern volatile uint8_t app_debounce_count; // debounce count sent by app (1..10)
+
+// ============================================================================
+// BLE NOTIFICATION FUNCTION (called from audio_classifier.cc)
+// ============================================================================
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * @brief Send BLE notification with inference result
+ * @param class_id 0=background, 1=laugh, 2=sad
+ * @param confidence_pct 0..100 (typically cry_conf * 100)
+ */
+void send_ble_notification(uint8_t class_id, uint8_t confidence_pct);
+void app_apply_control_command(uint8_t command_id, uint8_t value);
+void app_service_temperature_telemetry(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // APP_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/audio_classifier.cc b/application/AuraSense/firmware/aura-baby-monitor-soc/audio_classifier.cc
new file mode 100644
index 000000000..b50417cbc
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/audio_classifier.cc
@@ -0,0 +1,757 @@
+/**************************************************************************//**
+ * @file
+ * @brief Audio classifier — 2-class (laugh / sad) with 4-output TFLite model
+ *
+ * Model output layout (1, 4) int8 — ALL values 0.0-1.0 after dequant:
+ * [0] P(CRY)
+ * [1] P(NOT_CRY)
+ * [2] P(SAD)
+ * [3] P(LAUGH)
+ *
+ * Decision:
+ * 1. If P(CRY) < CRY_CONF_THRESHOLD → background
+ * 2. Else if P(SAD) >= P(LAUGH) → sad
+ * 3. Else → laugh
+ *
+ * LED mapping:
+ * Laugh → LED0 + LED1 (yellow)
+ * Sad → LED2 (red)
+ * BG → all off
+ *****************************************************************************/
+#include "os.h"
+#include "sl_power_manager.h"
+#include "sl_status.h"
+#include "sl_led.h"
+#include "sl_simple_led_instances.h"
+#include "audio_classifier.h"
+#include "app.h"
+#include "config/audio_classifier_config.h"
+#include "sl_board_control.h"
+#include "sl_tflite_micro_model.h"
+#include "sl_tflite_micro_init.h"
+#include "sl_ml_audio_feature_generation.h"
+#include "sl_sleeptimer.h"
+#include
+#include
+#include
+#include
+#include "config/sl_ml_audio_feature_generation_config.h"
+
+#if SL_SIMPLE_LED_COUNT < 2
+#error "Sample application requires at least two leds"
+#endif
+
+static OS_TCB tcb;
+static CPU_STK stack[TASK_STACK_SIZE];
+static void audio_classifier_task(void *arg);
+
+// ── Thresholds ─────────────────────────────────────────────────────────────
+// Stage-1 cry gate hysteresis based on model output[0] = P(CRY).
+// Enter cry-state at a higher threshold, exit at a lower threshold to
+// suppress flicker when p_cry jitters frame-to-frame.
+#define CRY_CONF_ENTER_THRESHOLD 0.25f
+#define CRY_CONF_EXIT_THRESHOLD 0.10f
+
+// Feature variance gate — silences very flat (silent) frames.
+#define FEATURE_VARIANCE_THRESHOLD 2000
+
+// BLE notification interval
+#define BLE_NOTIFY_INTERVAL_MS 1000
+#define CONTROL_IDLE_INTERVAL_MS 200
+#define DEEP_SLEEP_IDLE_INTERVAL_MS 1000
+
+// Rolling majority window — mirrors Python ContinuousOutputEngine
+// 6 steps x 0.5s = 3s window, same as WINDOW_SEC in Colab
+#define MAJORITY_WINDOW_SIZE 6
+#define MAJORITY_MIN_CRY_COUNT 1
+
+// Additional detector consistency check:
+// classify emotion only when cry head is meaningfully above not-cry head.
+#define CRY_OVER_NOT_CRY_MARGIN 0.05f
+// Close the cry gate only after this many consecutive non-cry frames.
+#define NON_CRY_CLOSE_FRAMES 4
+
+// ── Class IDs ──────────────────────────────────────────────────────────────
+#define NUM_CLASSES 2
+#define NO_CLASS_ID 255u
+#define CLASS_LAUGH 0
+#define CLASS_SAD 1
+#define BLE_CLASS_BACKGROUND 0u
+#define BLE_CLASS_LAUGH 1u
+#define BLE_CLASS_SAD 2u
+
+// ── Output tensor index mapping ────────────────────────────────────────────
+#define OUT_IDX_CRY 0
+#define OUT_IDX_NOT_CRY 1
+#define OUT_IDX_SAD 2
+#define OUT_IDX_LAUGH 3
+#define OUT_TOTAL 4
+
+static int gated_printf(const char *fmt, ...)
+{
+ if (!device_enabled || deep_sleep_enabled) {
+ return 0;
+ }
+ va_list args;
+ va_start(args, fmt);
+ int written = vprintf(fmt, args);
+ va_end(args);
+ return written;
+}
+
+#define printf(...) gated_printf(__VA_ARGS__)
+
+// ── State ──────────────────────────────────────────────────────────────────
+static uint8_t majority_ring[MAJORITY_WINDOW_SIZE]; // stores CLASS_LAUGH / CLASS_SAD / NO_CLASS_ID
+static int majority_head = 0;
+static int majority_count = 0;
+
+static uint32_t last_ble_notify_tick = 0;
+static bool input_shape_warned = false;
+static bool cry_gate_open = false;
+static uint8_t non_cry_streak = 0;
+static bool em1_requirement_held = false;
+
+static const char* CLASS_NAMES[NUM_CLASSES] = { "LAUGH", "SAD" };
+
+// ── Feature extraction constants ───────────────────────────────────────────
+#define MAX_MONO_FEATURE_ELEMENTS 4096
+#define DYNAMIC_RANGE_Q 300
+#define FLOAT_QUANT_FALLBACK_SCALE (1.0f / 128.0f)
+
+// ── Helpers ────────────────────────────────────────────────────────────────
+static inline int tensor_element_size_bytes(const TfLiteTensor* tensor)
+{
+ if (tensor == NULL) return 0;
+ if (tensor->type == kTfLiteInt8) return (int)sizeof(int8_t);
+ if (tensor->type == kTfLiteFloat32) return (int)sizeof(float);
+ return 0;
+}
+
+static inline int tensor_element_count(const TfLiteTensor* tensor)
+{
+ const int elem_size = tensor_element_size_bytes(tensor);
+ if (elem_size <= 0 || tensor == NULL || tensor->bytes <= 0) return 0;
+ return (int)(tensor->bytes / elem_size);
+}
+
+static inline int8_t clamp_q7(int value)
+{
+ if (value > 127) return 127;
+ if (value < -128) return -128;
+ return (int8_t)value;
+}
+
+static uint32_t ticks_to_ms(uint32_t ticks)
+{
+ const uint32_t freq_hz = sl_sleeptimer_get_timer_frequency();
+ if (freq_hz == 0u) return 0u;
+ return (uint32_t)(((uint64_t)ticks * 1000u) / (uint64_t)freq_hz);
+}
+
+// ── Dequantize one output element to float 0.0-1.0 ─────────────────────────
+// Uses the tensor's own scale + zero_point from PTQ calibration.
+static float dequant_output(const TfLiteTensor* output, int index)
+{
+ if (output == NULL || index < 0) return 0.0f;
+
+ float val = 0.0f;
+ if (output->type == kTfLiteInt8) {
+ const float scale = (output->params.scale > 0.0f)
+ ? output->params.scale : (1.0f / 127.0f);
+ const int zp = output->params.zero_point;
+ val = ((float)output->data.int8[index] - (float)zp) * scale;
+ } else if (output->type == kTfLiteFloat32) {
+ val = output->data.f[index];
+ }
+
+ // Clamp to [0, 1] — all our outputs should already be in this range
+ if (val < 0.0f) val = 0.0f;
+ if (val > 1.0f) val = 1.0f;
+ return val;
+}
+
+// ── Input quantization helper ───────────────────────────────────────────────
+static inline int8_t quantize_input_float(float v, const TfLiteTensor* input)
+{
+ float scale = FLOAT_QUANT_FALLBACK_SCALE;
+ int zp = 0;
+ if (input != NULL) {
+ if (input->params.scale > 0.0f) scale = input->params.scale;
+ zp = input->params.zero_point;
+ }
+ int q = (int)lrintf((v / scale) + (float)zp);
+ if (q < -128) q = -128;
+ else if (q > 127) q = 127;
+ return (int8_t)q;
+}
+
+// ── 3-channel feature fill (mel + flatness + RMS) ──────────────────────────
+static sl_status_t fill_input_tensor_3ch_from_features(TfLiteTensor* input,
+ int feature_elements)
+{
+ if (input == NULL || feature_elements <= 0 || feature_elements > MAX_MONO_FEATURE_ELEMENTS) {
+ return SL_STATUS_INVALID_PARAMETER;
+ }
+
+ const int mel_bins = SL_ML_FRONTEND_FILTERBANK_N_CHANNELS;
+ if (mel_bins <= 0 || (feature_elements % mel_bins) != 0) {
+ return SL_STATUS_INVALID_PARAMETER;
+ }
+ const int frames = feature_elements / mel_bins;
+
+ static uint16_t raw_buffer[MAX_MONO_FEATURE_ELEMENTS];
+ static int8_t ch0_buffer[MAX_MONO_FEATURE_ELEMENTS];
+ static float flatness_per_frame[128];
+ static float rms_per_frame[128];
+
+ if (frames > (int)(sizeof(flatness_per_frame) / sizeof(flatness_per_frame[0]))) {
+ return SL_STATUS_INVALID_PARAMETER;
+ }
+
+ sl_status_t status = sl_ml_audio_feature_generation_get_features_raw(
+ raw_buffer, (size_t)feature_elements);
+ if (status != SL_STATUS_OK) return status;
+
+ // ── Channel 0: dynamic-range mel quantization ─────────────────────────
+ int32_t maxval = 0;
+ for (int i = 0; i < feature_elements; i++) {
+ int32_t v = (int32_t)raw_buffer[i];
+ if (v > maxval) maxval = v;
+ }
+ int32_t minval = maxval - DYNAMIC_RANGE_Q;
+ if (minval < 0) minval = 0;
+ int32_t val_range = maxval - minval;
+ if (val_range < 1) val_range = 1;
+
+ for (int i = 0; i < feature_elements; i++) {
+ int32_t v = (int32_t)raw_buffer[i] - minval;
+ v = (v * 255) / val_range;
+ v -= 128;
+ if (v < -128) v = -128;
+ else if (v > 127) v = 127;
+ ch0_buffer[i] = (int8_t)v;
+ }
+
+ // ── Channels 1 & 2: spectral flatness and RMS per frame ──────────────
+ // MUST match Python extract_features():
+ // flatness: log1p(flat * 1000) → normalize by max → [0, 1]
+ // rms: log1p(rms * 100) → normalize by max → [0, 1]
+ // Previous code used (x * 2 - 1) remapping to [-1,1] which DESTROYED
+ // the bottom half of the int8 range (all clamped to -128).
+ const float inv_scale = 1.0f / (float)(1 << SL_ML_FRONTEND_LOG_SCALE_SHIFT);
+ float flat_max = 1e-9f;
+ float rms_max = 1e-9f;
+
+ for (int f = 0; f < frames; f++) {
+ float sum_lx = 0.0f;
+ float max_lx = -1e9f;
+
+ for (int m = 0; m < mel_bins; m++) {
+ const int idx = f * mel_bins + m;
+ const float lx = (float)raw_buffer[idx] * inv_scale;
+ sum_lx += lx;
+ if (lx > max_lx) max_lx = lx;
+ }
+
+ // log-sum-exp for log(arithmetic_mean(power))
+ float sum_exp = 0.0f;
+ for (int m = 0; m < mel_bins; m++) {
+ const int idx = f * mel_bins + m;
+ const float lx = (float)raw_buffer[idx] * inv_scale;
+ sum_exp += expf(lx - max_lx);
+ }
+ const float log_arith = max_lx + logf(sum_exp / (float)mel_bins);
+ const float mean_log = sum_lx / (float)mel_bins;
+
+ // Spectral flatness: geometric_mean / arithmetic_mean ∈ [0, 1]
+ float flat = expf(mean_log - log_arith);
+ if (flat < 0.0f) flat = 0.0f;
+ else if (flat > 1.0f) flat = 1.0f;
+ // Match Python: np.log1p(flatness * 1000.0)
+ flat = logf(1.0f + flat * 1000.0f);
+ flatness_per_frame[f] = flat;
+ if (flat > flat_max) flat_max = flat;
+
+ // RMS energy from log-power
+ float rms = expf(0.5f * log_arith);
+ // Match Python: np.log1p(rms * 100.0)
+ rms = logf(1.0f + rms * 100.0f);
+ rms_per_frame[f] = rms;
+ if (rms > rms_max) rms_max = rms;
+ }
+
+ // Normalize flatness to [0, 1] — match Python: flatness / max(flatness)
+ for (int f = 0; f < frames; f++) {
+ float fl = flatness_per_frame[f] / flat_max;
+ if (fl < 0.0f) fl = 0.0f;
+ else if (fl > 1.0f) fl = 1.0f;
+ flatness_per_frame[f] = fl;
+ }
+
+ // Normalize RMS to [0, 1] — match Python: rms / max(rms)
+ for (int f = 0; f < frames; f++) {
+ float r = rms_per_frame[f] / rms_max;
+ if (r < 0.0f) r = 0.0f;
+ else if (r > 1.0f) r = 1.0f;
+ rms_per_frame[f] = r;
+ }
+
+ // ── Pack NHWC int8: (frames, mel_bins, 3) ────────────────────────────
+ if (input->type != kTfLiteInt8) return SL_STATUS_INVALID_PARAMETER;
+
+ for (int f = 0; f < frames; f++) {
+ const int base = f * mel_bins;
+ const int8_t flat_q = quantize_input_float(flatness_per_frame[f], input);
+ const int8_t rms_q = quantize_input_float(rms_per_frame[f], input);
+ for (int m = 0; m < mel_bins; m++) {
+ const int idx = base + m;
+ // Ch0: ch0_buffer is already [-128,127] matching the model's int8 range
+ // (0.0 in Python → -128, 1.0 in Python → 127)
+ // Direct assignment is correct — previous quantize_input_float(v/127)
+ // mapped [-128,127]→[-1,1] and the [-1,0] half got clamped to -128.
+ input->data.int8[3 * idx + 0] = ch0_buffer[idx];
+ // Ch1 & Ch2: flatness/rms are now in [0,1], quantize correctly
+ input->data.int8[3 * idx + 1] = flat_q; // flatness
+ input->data.int8[3 * idx + 2] = rms_q; // RMS
+ }
+ }
+
+ return SL_STATUS_OK;
+}
+
+// ── Route to correct fill function based on tensor size ────────────────────
+static sl_status_t fill_input_tensor_from_audio_features(TfLiteTensor* input)
+{
+ if (input == NULL) return SL_STATUS_NULL_POINTER;
+
+ const int feature_elements = sl_ml_audio_feature_generation_get_feature_buffer_size();
+ const int input_elements = tensor_element_count(input);
+
+ if (feature_elements <= 0 || input_elements <= 0) return SL_STATUS_INVALID_PARAMETER;
+
+ if (input_elements == feature_elements) {
+ return sl_ml_audio_feature_generation_fill_tensor(input);
+ }
+
+ if (input_elements == (feature_elements * 3)) {
+ return fill_input_tensor_3ch_from_features(input, feature_elements);
+ }
+
+ if (!input_shape_warned) {
+ input_shape_warned = true;
+ printf("[ERROR] Input elements=%d do not match frontend=%d (or x3)\n",
+ input_elements, feature_elements);
+ }
+ return SL_STATUS_INVALID_PARAMETER;
+}
+
+// ── Debug: print tensor shape ───────────────────────────────────────────────
+static void log_tensor_shape(const char* name, const TfLiteTensor* tensor)
+{
+ if (tensor == NULL || tensor->dims == NULL) {
+ printf("[MODEL] %s: unavailable\n", name);
+ return;
+ }
+ printf("[MODEL] %s shape=[", name);
+ for (int i = 0; i < tensor->dims->size; i++) {
+ printf("%d", tensor->dims->data[i]);
+ if (i + 1 < tensor->dims->size) printf(",");
+ }
+ printf("] bytes=%d type=%d scale=%.6f zp=%ld\n",
+ (int)tensor->bytes,
+ (int)tensor->type,
+ tensor->params.scale,
+ (long)tensor->params.zero_point);
+}
+
+// ── Run TFLite inference ────────────────────────────────────────────────────
+static sl_status_t run_inference(void)
+{
+ static int error_count = 0;
+ static uint32_t infer_count = 0;
+
+ TfLiteTensor* input = sl_tflite_micro_get_input_tensor();
+ if (input == NULL) {
+ if (error_count++ < 3) printf("[ERROR] Input tensor is NULL\n");
+ return SL_STATUS_FAIL;
+ }
+
+ sl_status_t status = fill_input_tensor_from_audio_features(input);
+ if (status != SL_STATUS_OK) {
+ error_count++;
+ if (error_count <= 3 || (error_count % 50) == 0)
+ printf("[ERROR] Feature fill failed: 0x%lx\n", status);
+ return SL_STATUS_FAIL;
+ }
+
+ auto interpreter = sl_tflite_micro_get_interpreter();
+ if (interpreter == NULL) {
+ error_count++;
+ if (error_count <= 3 || (error_count % 50) == 0)
+ printf("[ERROR] Interpreter is NULL\n");
+ return SL_STATUS_FAIL;
+ }
+
+ uint32_t t0 = sl_sleeptimer_get_tick_count();
+ if (infer_count < 3) printf("[TASK] Invoke start #%lu\n", (unsigned long)(infer_count + 1));
+
+ TfLiteStatus invoke_status = interpreter->Invoke();
+
+ uint32_t t1 = sl_sleeptimer_get_tick_count();
+ uint32_t dt_ms = ticks_to_ms(t1 - t0);
+ if (infer_count < 3 || (infer_count % 20) == 0)
+ printf("[TASK] Invoke done #%lu in %lu ms\n",
+ (unsigned long)(infer_count + 1), (unsigned long)dt_ms);
+ infer_count++;
+
+ if (invoke_status != kTfLiteOk) {
+ error_count++;
+ if (error_count <= 3 || (error_count % 50) == 0)
+ printf("[ERROR] Invoke failed: %d\n", invoke_status);
+ return SL_STATUS_FAIL;
+ }
+
+ error_count = 0;
+ return SL_STATUS_OK;
+}
+
+// ── LED control ─────────────────────────────────────────────────────────────
+static void leds_off(void)
+{
+ sl_led_turn_off(&sl_led_led0);
+ sl_led_turn_off(&sl_led_led1);
+ sl_led_turn_off(&sl_led_led2);
+}
+
+static void set_led_background_blue(void)
+{
+ // Board has RGB-like discrete LEDs:
+ // LED0 is used as blue background indicator when not in cry.
+ sl_led_turn_on(&sl_led_led0);
+ sl_led_turn_off(&sl_led_led1);
+ sl_led_turn_off(&sl_led_led2);
+}
+
+static void enter_background_state(void)
+{
+ set_led_background_blue();
+ uint32_t now = sl_sleeptimer_get_tick_count();
+ uint32_t elapsed_ms = ticks_to_ms(now - last_ble_notify_tick);
+ if (last_class != BLE_CLASS_BACKGROUND || elapsed_ms >= BLE_NOTIFY_INTERVAL_MS) {
+ last_ble_notify_tick = now;
+ send_ble_notification(BLE_CLASS_BACKGROUND, 0);
+ }
+ last_class = BLE_CLASS_BACKGROUND;
+}
+
+static void set_leds_for_class(int winner)
+{
+ if (winner == CLASS_LAUGH) {
+ sl_led_turn_on(&sl_led_led0);
+ sl_led_turn_on(&sl_led_led1);
+ sl_led_turn_off(&sl_led_led2);
+ } else if (winner == CLASS_SAD) {
+ sl_led_turn_off(&sl_led_led0);
+ sl_led_turn_off(&sl_led_led1);
+ sl_led_turn_on(&sl_led_led2);
+ } else {
+ leds_off();
+ }
+}
+
+// ── Majority ring-buffer (mirrors Python ContinuousOutputEngine) ────────────
+static void majority_push(uint8_t class_id)
+{
+ majority_ring[majority_head] = class_id;
+ majority_head = (majority_head + 1) % MAJORITY_WINDOW_SIZE;
+ if (majority_count < MAJORITY_WINDOW_SIZE) majority_count++;
+}
+
+static int majority_decide(void)
+{
+ int n_sad = 0;
+ int n_laugh = 0;
+ int n = (majority_count < MAJORITY_WINDOW_SIZE) ? majority_count : MAJORITY_WINDOW_SIZE;
+
+ for (int i = 0; i < n; i++) {
+ if (majority_ring[i] == CLASS_SAD) n_sad++;
+ if (majority_ring[i] == CLASS_LAUGH) n_laugh++;
+ }
+
+ int n_cry = n_sad + n_laugh;
+ if (n_cry < MAJORITY_MIN_CRY_COUNT) return (int)NO_CLASS_ID;
+ if (n_sad >= 2 && n_laugh >= 2) return (int)NO_CLASS_ID;
+ if ((n_sad > n_laugh ? (n_sad - n_laugh) : (n_laugh - n_sad)) < 2) {
+ return (int)NO_CLASS_ID;
+ }
+ return (n_sad >= n_laugh) ? CLASS_SAD : CLASS_LAUGH;
+}
+
+// ── Main output processing — called every 500ms ─────────────────────────────
+static void process_output(void)
+{
+ if (!device_enabled || deep_sleep_enabled || !monitoring_enabled) {
+ enter_background_state();
+ return;
+ }
+
+ TfLiteTensor* output = sl_tflite_micro_get_output_tensor();
+ if (output == NULL) return;
+
+ // Verify we have at least 4 output elements
+ const int total_out = tensor_element_count(output);
+ if (total_out < OUT_TOTAL) {
+ static bool warned = false;
+ if (!warned) {
+ warned = true;
+ printf("[WARN] Output tensor has %d elements, expected %d\n", total_out, OUT_TOTAL);
+ }
+ return;
+ }
+
+ // ── Feature variance gate — reject silent frames ──────────────────────
+ TfLiteTensor* input = sl_tflite_micro_get_input_tensor();
+ if (input != NULL) {
+ const int N = (int)input->bytes;
+ if (N > 0) {
+ int64_t s1 = 0, s2 = 0;
+ if (input->type == kTfLiteInt8) {
+ const int8_t* feat = input->data.int8;
+ for (int i = 0; i < N; i++) { s1 += feat[i]; s2 += (int64_t)feat[i] * feat[i]; }
+ } else {
+ const int elements = N / (int)sizeof(float);
+ const float* feat_f = input->data.f;
+ for (int i = 0; i < elements; i++) {
+ int32_t q = (int32_t)(feat_f[i] * 128.0f);
+ s1 += q; s2 += (int64_t)q * q;
+ }
+ }
+ const int denom = (input->type == kTfLiteFloat32)
+ ? (N / (int)sizeof(float)) : N;
+ const int32_t fmean = (int32_t)(s1 / denom);
+ const int32_t feat_var = (int32_t)(s2 / denom) - fmean * fmean;
+
+ if (feat_var < FEATURE_VARIANCE_THRESHOLD) {
+ printf("UNCERTAIN(var=%d) -> BG\n", (int)feat_var);
+ majority_push(NO_CLASS_ID);
+ enter_background_state();
+ return;
+ }
+ }
+ }
+
+ // ── Dequantize all 4 outputs to float [0.0, 1.0] ─────────────────────
+ // This is the fix — raw int8 values are NOT directly comparable,
+ // they must be dequantized using the tensor's scale and zero_point.
+ const float p_cry = dequant_output(output, OUT_IDX_CRY);
+ const float p_not_cry = dequant_output(output, OUT_IDX_NOT_CRY);
+ const float p_sad = dequant_output(output, OUT_IDX_SAD);
+ const float p_laugh = dequant_output(output, OUT_IDX_LAUGH);
+
+ printf("p_cry=%.2f p_not_cry=%.2f p_sad=%.2f p_laugh=%.2f | ",
+ p_cry, p_not_cry, p_sad, p_laugh);
+
+ // ── Stage 1 gate with hysteresis — is there a cry at all? ────────────
+ const bool cry_enter = (p_cry >= CRY_CONF_ENTER_THRESHOLD)
+ && (p_cry >= (p_not_cry + CRY_OVER_NOT_CRY_MARGIN));
+ const bool cry_keep = (p_cry >= CRY_CONF_EXIT_THRESHOLD)
+ && (p_cry >= (p_not_cry + CRY_OVER_NOT_CRY_MARGIN));
+
+ if (cry_enter) {
+ cry_gate_open = true;
+ non_cry_streak = 0;
+ } else if (cry_gate_open && cry_keep) {
+ non_cry_streak = 0;
+ } else {
+ if (non_cry_streak < 255u) non_cry_streak++;
+ if (non_cry_streak >= NON_CRY_CLOSE_FRAMES) {
+ cry_gate_open = false;
+ non_cry_streak = NON_CRY_CLOSE_FRAMES;
+ }
+ }
+
+ if (!cry_gate_open) {
+ printf("GATE_BLOCK -> BG\n");
+ majority_push(NO_CLASS_ID);
+ enter_background_state();
+ return;
+ }
+
+ // ── Stage 2 — within cry, choose emotion by sad vs laugh head ─────────
+ const int raw_class = (p_sad >= p_laugh) ? CLASS_SAD : CLASS_LAUGH;
+ float cry_conf_pct_f = p_cry * 100.0f;
+ if (cry_conf_pct_f < 0.0f) cry_conf_pct_f = 0.0f;
+ if (cry_conf_pct_f > 100.0f) cry_conf_pct_f = 100.0f;
+ const uint8_t report_score = (uint8_t)(cry_conf_pct_f + 0.5f);
+
+ if (report_score < app_conf_threshold) {
+ majority_push(NO_CLASS_ID);
+ enter_background_state();
+ return;
+ }
+
+ // ── Push into majority ring ───────────────────────────────────────────
+ majority_push((uint8_t)raw_class);
+ const int winner = majority_decide();
+
+ printf("raw=%s | ring: ", CLASS_NAMES[raw_class]);
+ {
+ int n = (majority_count < MAJORITY_WINDOW_SIZE) ? majority_count : MAJORITY_WINDOW_SIZE;
+ for (int i = 0; i < n; i++) {
+ uint8_t v = majority_ring[i];
+ printf("%s ", (v == CLASS_LAUGH) ? "L" : (v == CLASS_SAD) ? "S" : ".");
+ }
+ }
+
+ if (winner == (int)NO_CLASS_ID) {
+ printf("-> BG\n");
+ enter_background_state();
+ return;
+ }
+
+ printf("-> %s\n", CLASS_NAMES[winner]);
+
+ // ── BLE notification ──────────────────────────────────────────────────
+ // BLE contract: 0=BACKGROUND, 1=LAUGH, 2=SAD
+ const uint8_t report_class = (winner == CLASS_SAD) ? BLE_CLASS_SAD : BLE_CLASS_LAUGH;
+ uint32_t now = sl_sleeptimer_get_tick_count();
+ uint32_t elapsed_ms = ticks_to_ms(now - last_ble_notify_tick);
+ if (elapsed_ms >= BLE_NOTIFY_INTERVAL_MS || last_class != report_class) {
+ last_ble_notify_tick = now;
+ send_ble_notification(report_class, report_score);
+ }
+ last_class = report_class;
+
+ // ── LED ───────────────────────────────────────────────────────────────
+ set_leds_for_class(winner);
+}
+
+// ── Init ────────────────────────────────────────────────────────────────────
+void audio_classifier_init(void)
+{
+ RTOS_ERR err;
+ OSTaskCreate(&tcb,
+ (CPU_CHAR *)"audio task",
+ audio_classifier_task,
+ DEF_NULL,
+ TASK_PRIORITY,
+ &stack[0],
+ (TASK_STACK_SIZE / 10u),
+ TASK_STACK_SIZE,
+ 0u,
+ 0u,
+ DEF_NULL,
+ (OS_OPT_TASK_STK_CLR),
+ &err);
+ EFM_ASSERT((RTOS_ERR_CODE_GET(err) == RTOS_ERR_NONE));
+}
+
+// ── Main task loop ──────────────────────────────────────────────────────────
+void audio_classifier_task(void *arg)
+{
+ RTOS_ERR err;
+ (void)arg;
+
+ printf("\n=== AUDIO CLASSIFIER v10 (2-Class Laugh/Sad + CryConf Gate) ===\n");
+ printf("Output layout : [P(CRY), P(NOT_CRY), P(SAD), P(LAUGH)]\n");
+ printf("Stage1 gate : enter>=%.2f, exit<%.2f\n",
+ CRY_CONF_ENTER_THRESHOLD, CRY_CONF_EXIT_THRESHOLD);
+ printf("Majority win : %d of %d steps\n", MAJORITY_MIN_CRY_COUNT, MAJORITY_WINDOW_SIZE);
+ printf("==============================================================\n\n");
+
+ printf("[TASK] Sleeptimer freq: %lu Hz\n",
+ (unsigned long)sl_sleeptimer_get_timer_frequency());
+
+ printf("[TASK] Enabling microphone sensor...\n");
+ sl_status_t mic_status = sl_board_enable_sensor(SL_BOARD_SENSOR_MICROPHONE);
+ if (mic_status == SL_STATUS_OK) {
+ printf("[TASK] Microphone enabled OK\n");
+ } else {
+ printf("[ERROR] Microphone enable failed: 0x%lx\n", mic_status);
+ }
+
+ OSTimeDlyHMSM(0, 0, 0, 100, OS_OPT_TIME_HMSM_NON_STRICT, &err);
+
+ printf("[TASK] Initializing audio feature generation...\n");
+ sl_ml_audio_feature_generation_init();
+ printf("[TASK] Audio init complete\n");
+
+ sl_power_manager_add_em_requirement(SL_POWER_MANAGER_EM1);
+ em1_requirement_held = true;
+
+ printf("[TASK] Waiting for audio buffer to fill (2 seconds)...\n");
+ OSTimeDlyHMSM(0, 0, 2, 0, OS_OPT_TIME_HMSM_NON_STRICT, &err);
+ printf("[TASK] Buffer fill complete\n");
+
+ // Log tensor shapes + quantization params at startup
+ log_tensor_shape("input", sl_tflite_micro_get_input_tensor());
+ log_tensor_shape("output", sl_tflite_micro_get_output_tensor());
+
+ {
+ TfLiteTensor* input = sl_tflite_micro_get_input_tensor();
+ const int feature_elements = sl_ml_audio_feature_generation_get_feature_buffer_size();
+ const int input_elements = tensor_element_count(input);
+ if (feature_elements > 0 && input_elements > 0) {
+ if (input_elements == feature_elements * 3) {
+ printf("[INFO] 3-channel mode: mel + flatness + RMS\n");
+ } else if (input_elements == feature_elements) {
+ printf("[INFO] 1-channel mode: mel only\n");
+ } else {
+ printf("[ERROR] Input elements=%d do not match frontend=%d (or x3)\n",
+ input_elements, feature_elements);
+ }
+ }
+ }
+
+ // Init majority ring to background
+ for (int i = 0; i < MAJORITY_WINDOW_SIZE; i++) {
+ majority_ring[i] = NO_CLASS_ID;
+ }
+
+ printf("[TASK] Starting inference loop (500ms interval)...\n");
+ int loop_count = 0;
+ bool first_success = false;
+
+ while (1) {
+ app_service_temperature_telemetry();
+
+ if (!device_enabled) {
+ if (em1_requirement_held) {
+ sl_power_manager_remove_em_requirement(SL_POWER_MANAGER_EM1);
+ em1_requirement_held = false;
+ }
+ leds_off();
+ enter_background_state();
+ OSTimeDlyHMSM(0, 0, 0, CONTROL_IDLE_INTERVAL_MS, OS_OPT_TIME_HMSM_NON_STRICT, &err);
+ continue;
+ } else if (deep_sleep_enabled) {
+ if (em1_requirement_held) {
+ sl_power_manager_remove_em_requirement(SL_POWER_MANAGER_EM1);
+ em1_requirement_held = false;
+ }
+ leds_off();
+ enter_background_state();
+ OSTimeDlyHMSM(0, 0, 0, DEEP_SLEEP_IDLE_INTERVAL_MS, OS_OPT_TIME_HMSM_NON_STRICT, &err);
+ continue;
+ } else if (!em1_requirement_held) {
+ sl_power_manager_add_em_requirement(SL_POWER_MANAGER_EM1);
+ em1_requirement_held = true;
+ }
+
+ OSTimeDlyHMSM(0, 0, 0, INFERENCE_INTERVAL_MS, OS_OPT_TIME_PERIODIC, &err);
+ sl_ml_audio_feature_generation_update_features();
+
+ if (run_inference() == SL_STATUS_OK) {
+ if (!first_success) {
+ printf("[TASK] First inference SUCCESS — classifier running.\n");
+ first_success = true;
+ }
+ process_output();
+ } else if (loop_count < 10 || (loop_count % 50) == 0) {
+ printf("[TASK] Loop %d: inference not ready yet...\n", loop_count);
+ }
+
+ loop_count++;
+ }
+}
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/audio_classifier.h b/application/AuraSense/firmware/aura-baby-monitor-soc/audio_classifier.h
new file mode 100644
index 000000000..76360bb5a
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/audio_classifier.h
@@ -0,0 +1,37 @@
+/***************************************************************************//**
+ * @file
+ * @brief Top level application functions
+ *******************************************************************************
+ * # License
+ * Copyright 2022 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * The licensor of this software is Silicon Laboratories Inc. Your use of this
+ * software is governed by the terms of Silicon Labs Master Software License
+ * Agreement (MSLA) available at
+ * www.silabs.com/about-us/legal/master-software-license-agreement. This
+ * software is distributed to you in Source Code format and is governed by the
+ * sections of the MSLA applicable to Source Code.
+ *
+ ******************************************************************************/
+#ifndef AUDIO_CLASSIFIER_H
+#define AUDIO_CLASSIFIER_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern int category_count;
+
+/***************************************************************************//**
+ * Initialize application.
+ ******************************************************************************/
+void audio_classifier_init(void);
+
+const char *get_category_label(int index);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // AUDIO_CLASSIFIER_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/.slc_state/.crc_config.crc b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/.slc_state/.crc_config.crc
new file mode 100644
index 000000000..85e3d898e
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/.slc_state/.crc_config.crc
@@ -0,0 +1,36 @@
+#CRC Codes for initially generated config files -- do not modify!
+audio_classifier_config.h=-609359793
+btconf/gatt_service_rht.xml=-36950508
+common_cfg.h=1943625275
+cpu_cfg.h=-1735116855
+dmadrv_config.h=1207334949
+os_cfg.h=-894494530
+rtos_cfg.h=-1433309901
+rtos_err_cfg.h=-1638587530
+sl_board_control_config.h=1584985576
+sl_clock_manager_oscillator_config.h=-336207235
+sl_clock_manager_tree_config.h=-856286741
+sl_core_config.h=-119586893
+sl_debug_swo_config.h=712797333
+sl_device_init_dcdc_config.h=-1134833866
+sl_driver_mvp_config.h=-49172521
+sl_gatt_service_rht_config.h=787852477
+sl_hfxo_manager_config.h=1606678224
+sl_i2cspm_sensor_config.h=-237437683
+sl_iostream_eusart_vcom_config.h=933702482
+sl_main_start_task_config.h=-1054800951
+sl_memory_manager_config.h=1702148085
+sl_memory_manager_region_config.h=157719332
+sl_mic_i2s_config.h=-246085526
+sl_ml_audio_feature_generation_config.h=791303261
+sl_mx25_flash_shutdown_eusart_config.h=761089743
+sl_nn_mvp_config.h=-939178571
+sl_power_manager_config.h=1027092785
+sl_simple_button_btn0_config.h=1474279756
+sl_simple_button_config.h=-1109451986
+sl_simple_led_led0_config.h=693851690
+sl_simple_led_led1_config.h=536469731
+sl_simple_led_led2_config.h=-746561653
+sl_sleeptimer_config.h=1360009810
+sl_tflite_micro_config.h=931871899
+tflite/keyword_spotting_on_off_v2.tflite=313633091
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/RTE_Components.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/RTE_Components.h
new file mode 100644
index 000000000..aa62dc430
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/RTE_Components.h
@@ -0,0 +1,22 @@
+// This file is autogenerated by Simplicity Configuration Tools.
+// The contents of this file will be replaced in their entirety upon regeneration.
+//
+// Source template file: RTE_Components.h.jinja
+
+
+#ifndef RTE_COMPONENTS_H
+#define RTE_COMPONENTS_H
+
+/* standard device header from emlib */
+#define CMSIS_device_header "em_device.h"
+
+/* components are auto-generated here */
+
+
+#endif /* RTE_COMPONENTS_H */
+
+/* This file is autogenerated by Simplicity Configuration Tools. */
+/* The contents of this file will be replaced in their entirety upon regeneration. */
+/* */
+/* Source template file: RTE_Components.h.jinja */
+
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/gatt_db.c b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/gatt_db.c
new file mode 100644
index 000000000..f05bcb9d8
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/gatt_db.c
@@ -0,0 +1,143 @@
+/********************************************************************
+ * Autogenerated file, do not edit.
+ *******************************************************************/
+
+#include
+#include "sli_bt_gattdb_def.h"
+
+#define GATT_HEADER(F) F
+#define GATT_DATA(F) F
+GATT_DATA(const uint16_t gattdb_uuidtable_16_map[]) =
+{
+ 0x2800,
+ 0x2801,
+ 0x2803,
+ 0x2a00,
+ 0x2a01,
+ 0x2a29,
+ 0x2a23,
+ 0x2a6e,
+ 0x2a6f,
+ 0x2a05,
+ 0x2b2a,
+ 0x2b29,
+ 0x2902,
+};
+
+GATT_DATA(const uint8_t gattdb_uuidtable_128_map[]) =
+{
+ 0x95, 0xe2, 0xed, 0xeb, 0x1b, 0xa0, 0x39, 0x8a, 0xdf, 0x4b, 0xd3, 0x8e, 0x01, 0x75, 0xc8, 0xa3,
+ 0x95, 0xe2, 0xed, 0xeb, 0x1b, 0xa0, 0x39, 0x8a, 0xdf, 0x4b, 0xd3, 0x8e, 0x02, 0x75, 0xc8, 0xa3,
+};
+GATT_DATA(const sli_bt_gattdb_value_t gattdb_attribute_field_24) = {
+ .len = 2,
+ .data = { 0x1a, 0x18, }
+};
+GATT_DATA(sli_bt_gattdb_attribute_chrvalue_t gattdb_attribute_field_23) = {
+ .properties = 0x0c,
+ .max_len = 2,
+ .data = { 0x00, 0x00, },
+};
+GATT_DATA(sli_bt_gattdb_attribute_chrvalue_t gattdb_attribute_field_20) = {
+ .properties = 0x12,
+ .max_len = 2,
+ .data = { 0x00, 0x80, },
+};
+GATT_DATA(const sli_bt_gattdb_value_t gattdb_attribute_field_18) = {
+ .len = 16,
+ .data = { 0x95, 0xe2, 0xed, 0xeb, 0x1b, 0xa0, 0x39, 0x8a, 0xdf, 0x4b, 0xd3, 0x8e, 0x00, 0x75, 0xc8, 0xa3, }
+};
+GATT_DATA(sli_bt_gattdb_attribute_chrvalue_t gattdb_attribute_field_17) = {
+ .properties = 0x02,
+ .max_len = 8,
+ .data = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, },
+};
+GATT_DATA(const sli_bt_gattdb_value_t gattdb_attribute_field_15) = {
+ .len = 12,
+ .data = { 0x53, 0x69, 0x6c, 0x69, 0x63, 0x6f, 0x6e, 0x20, 0x4c, 0x61, 0x62, 0x73, }
+};
+GATT_DATA(const sli_bt_gattdb_value_t gattdb_attribute_field_13) = {
+ .len = 2,
+ .data = { 0x0a, 0x18, }
+};
+GATT_DATA(const sli_bt_gattdb_value_t gattdb_attribute_field_12) = {
+ .len = 2,
+ .data = { 0x00, 0x00, }
+};
+GATT_DATA(sli_bt_gattdb_attribute_chrvalue_t gattdb_attribute_field_10) = {
+ .properties = 0x0a,
+ .max_len = 17,
+ .len = 17,
+ .data = { 0x41, 0x49, 0x20, 0x43, 0x72, 0x79, 0x20, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x69, 0x66, 0x69, 0x65, 0x72, }
+};
+GATT_DATA(const sli_bt_gattdb_value_t gattdb_attribute_field_8) = {
+ .len = 2,
+ .data = { 0x00, 0x18, }
+};
+GATT_DATA(sli_bt_gattdb_attribute_chrvalue_t gattdb_attribute_field_7) = {
+ .properties = 0x0a,
+ .max_len = 1,
+ .data = { 0x00, },
+};
+GATT_DATA(sli_bt_gattdb_attribute_chrvalue_t gattdb_attribute_field_5) = {
+ .properties = 0x02,
+ .max_len = 16,
+ .data = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, },
+};
+GATT_DATA(sli_bt_gattdb_attribute_chrvalue_t gattdb_attribute_field_2) = {
+ .properties = 0x20,
+ .max_len = 4,
+ .data = { 0x00, 0x00, 0x00, 0x00, },
+};
+GATT_DATA(const sli_bt_gattdb_value_t gattdb_attribute_field_0) = {
+ .len = 2,
+ .data = { 0x01, 0x18, }
+};
+
+GATT_DATA(const sli_bt_gattdb_attribute_t gattdb_attributes_map[]) = {
+ { .handle = 0x01, .uuid = 0x0000, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x00, .constdata = &gattdb_attribute_field_0 },
+ { .handle = 0x02, .uuid = 0x0002, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x05, .characteristic = { .properties = 0x20, .char_uuid = 0x0009 } },
+ { .handle = 0x03, .uuid = 0x0009, .permissions = 0x800, .caps = 0xffff, .state = 0x00, .datatype = 0x01, .dynamicdata = &gattdb_attribute_field_2 },
+ { .handle = 0x04, .uuid = 0x000c, .permissions = 0x803, .caps = 0xffff, .state = 0x00, .datatype = 0x03, .configdata = { .flags = 0x02, .clientconfig_index = 0x00 } },
+ { .handle = 0x05, .uuid = 0x0002, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x05, .characteristic = { .properties = 0x02, .char_uuid = 0x000a } },
+ { .handle = 0x06, .uuid = 0x000a, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x01, .dynamicdata = &gattdb_attribute_field_5 },
+ { .handle = 0x07, .uuid = 0x0002, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x05, .characteristic = { .properties = 0x0a, .char_uuid = 0x000b } },
+ { .handle = 0x08, .uuid = 0x000b, .permissions = 0x803, .caps = 0xffff, .state = 0x00, .datatype = 0x01, .dynamicdata = &gattdb_attribute_field_7 },
+ { .handle = 0x09, .uuid = 0x0000, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x00, .constdata = &gattdb_attribute_field_8 },
+ { .handle = 0x0a, .uuid = 0x0002, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x05, .characteristic = { .properties = 0x0a, .char_uuid = 0x0003 } },
+ { .handle = 0x0b, .uuid = 0x0003, .permissions = 0x803, .caps = 0xffff, .state = 0x00, .datatype = 0x02, .dynamicdata = &gattdb_attribute_field_10 },
+ { .handle = 0x0c, .uuid = 0x0002, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x05, .characteristic = { .properties = 0x02, .char_uuid = 0x0004 } },
+ { .handle = 0x0d, .uuid = 0x0004, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x00, .constdata = &gattdb_attribute_field_12 },
+ { .handle = 0x0e, .uuid = 0x0000, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x00, .constdata = &gattdb_attribute_field_13 },
+ { .handle = 0x0f, .uuid = 0x0002, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x05, .characteristic = { .properties = 0x02, .char_uuid = 0x0005 } },
+ { .handle = 0x10, .uuid = 0x0005, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x00, .constdata = &gattdb_attribute_field_15 },
+ { .handle = 0x11, .uuid = 0x0002, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x05, .characteristic = { .properties = 0x02, .char_uuid = 0x0006 } },
+ { .handle = 0x12, .uuid = 0x0006, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x01, .dynamicdata = &gattdb_attribute_field_17 },
+ { .handle = 0x13, .uuid = 0x0000, .permissions = 0x8801, .caps = 0xffff, .state = 0x00, .datatype = 0x00, .constdata = &gattdb_attribute_field_18 },
+ { .handle = 0x14, .uuid = 0x0002, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x05, .characteristic = { .properties = 0x12, .char_uuid = 0x8000 } },
+ { .handle = 0x15, .uuid = 0x8000, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x01, .dynamicdata = &gattdb_attribute_field_20 },
+ { .handle = 0x16, .uuid = 0x000c, .permissions = 0x803, .caps = 0xffff, .state = 0x00, .datatype = 0x03, .configdata = { .flags = 0x01, .clientconfig_index = 0x01 } },
+ { .handle = 0x17, .uuid = 0x0002, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x05, .characteristic = { .properties = 0x0c, .char_uuid = 0x8001 } },
+ { .handle = 0x18, .uuid = 0x8001, .permissions = 0x806, .caps = 0xffff, .state = 0x00, .datatype = 0x01, .dynamicdata = &gattdb_attribute_field_23 },
+ { .handle = 0x19, .uuid = 0x0000, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x00, .constdata = &gattdb_attribute_field_24 },
+ { .handle = 0x1a, .uuid = 0x0002, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x05, .characteristic = { .properties = 0x02, .char_uuid = 0x0007 } },
+ { .handle = 0x1b, .uuid = 0x0007, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x07, .dynamicdata = NULL },
+ { .handle = 0x1c, .uuid = 0x0002, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x05, .characteristic = { .properties = 0x02, .char_uuid = 0x0008 } },
+ { .handle = 0x1d, .uuid = 0x0008, .permissions = 0x801, .caps = 0xffff, .state = 0x00, .datatype = 0x07, .dynamicdata = NULL },
+};
+
+GATT_HEADER(const sli_bt_gattdb_t gattdb) = {
+ .attributes = gattdb_attributes_map,
+ .attribute_table_size = 29,
+ .attribute_num = 29,
+ .uuid16 = gattdb_uuidtable_16_map,
+ .uuid16_table_size = 13,
+ .uuid16_num = 13,
+ .uuid128 = gattdb_uuidtable_128_map,
+ .uuid128_table_size = 2,
+ .uuid128_num = 2,
+ .num_ccfg = 2,
+ .caps_mask = 0xffff,
+ .enabled_caps = 0xffff,
+};
+const sli_bt_gattdb_t *static_gattdb = &gattdb;
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/gatt_db.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/gatt_db.h
new file mode 100644
index 000000000..82b08ea27
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/gatt_db.h
@@ -0,0 +1,45 @@
+/********************************************************************
+ * Autogenerated file, do not edit.
+ *******************************************************************/
+
+#ifndef __GATT_DB_H
+#define __GATT_DB_H
+
+#include "sli_bt_gattdb_def.h"
+
+extern const sli_bt_gattdb_t gattdb;
+
+#define gattdb_generic_attribute 1
+#define gattdb_service_changed_char 3
+#define gattdb_database_hash 6
+#define gattdb_client_support_features 8
+#define gattdb_generic_access 9
+#define gattdb_device_name 11
+#define gattdb_appearance 13
+#define gattdb_device_information 14
+#define gattdb_manufacturer_name_string 16
+#define gattdb_system_id 18
+#define gattdb_ai_service 19
+#define gattdb_inference_result 21
+#define gattdb_ai_control 24
+#define gattdb_environment_sensing 25
+#define gattdb_es_temperature 27
+#define gattdb_es_humidity 29
+
+#define gattdb_generic_attribute_len 2
+#define gattdb_service_changed_char_len 4
+#define gattdb_database_hash_len 16
+#define gattdb_client_support_features_len 1
+#define gattdb_generic_access_len 2
+#define gattdb_device_name_len 17
+#define gattdb_appearance_len 2
+#define gattdb_device_information_len 2
+#define gattdb_manufacturer_name_string_len 12
+#define gattdb_system_id_len 8
+#define gattdb_ai_service_len 16
+#define gattdb_inference_result_len 2
+#define gattdb_ai_control_len 2
+#define gattdb_environment_sensing_len 2
+
+
+#endif // __GATT_DB_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/gen.properties b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/gen.properties
new file mode 100644
index 000000000..8907597ad
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/gen.properties
@@ -0,0 +1,2 @@
+sdk=silabs.simplicity_sdk:2025.12.1
+extensions=silabs.aiml:2.2.0
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/linkerfile.ld b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/linkerfile.ld
new file mode 100644
index 000000000..5c9494f18
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/linkerfile.ld
@@ -0,0 +1,247 @@
+/***************************************************************************//**
+ * GCC Linker script for Silicon Labs devices
+ *******************************************************************************
+ * # License
+ * Copyright 2020 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+ MEMORY
+ {
+ FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 0x31e000
+ RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x80000
+ }
+
+ENTRY(Reset_Handler)
+
+SECTIONS
+{
+
+ .vectors :
+ {
+ linker_vectors_begin = .;
+ KEEP(*(.vectors))
+ linker_vectors_end = .;
+
+ __Vectors_End = .;
+ __Vectors_Size = __Vectors_End - __Vectors;
+ } > FLASH
+
+ .stack (NOLOAD):
+ {
+ . = ALIGN(8);
+ __StackLimit = .;
+ KEEP(*(.stack*))
+ . = ALIGN(4);
+ __StackTop = .;
+ PROVIDE(__stack = __StackTop);
+ } > RAM
+
+ .bss :
+ {
+ . = ALIGN(4);
+ __bss_start__ = .;
+ *(SORT_BY_ALIGNMENT(.bss*))
+ *(COMMON)
+ . = ALIGN(32);
+ __bss_end__ = .;
+ } > RAM
+
+
+ .noinit (NOLOAD) : ALIGN(32)
+ {
+ *(.noinit*);
+ } > RAM
+
+
+ text_application_ram : ALIGN(32)
+ {
+ . = ALIGN(32);
+ __vma_ramfuncs_start__ = .;
+
+ /* text_application_ram */
+ *(text_application_ram)
+
+ . = ALIGN(32);
+ __vma_ramfuncs_end__ = .;
+ } > RAM AT > FLASH
+
+ __lma_ramfuncs_start__ = LOADADDR(text_application_ram);
+ __lma_ramfuncs_end__ = LOADADDR(text_application_ram) + SIZEOF(text_application_ram);
+
+ .rodata (READONLY):
+ {
+ } > FLASH
+
+ .text :
+ {
+ linker_code_begin = .;
+ *(SORT_BY_ALIGNMENT(.text*))
+ *(SORT_BY_ALIGNMENT(text_*))
+ . = ALIGN(32);
+ linker_code_end = .;
+
+ KEEP(*(.init))
+ KEEP(*(.fini))
+
+ /* .ctors */
+ *crtbegin.o(.ctors)
+ *crtbegin?.o(.ctors)
+ *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
+ *(SORT(.ctors.*))
+ *(.ctors)
+
+ /* .dtors */
+ *crtbegin.o(.dtors)
+ *crtbegin?.o(.dtors)
+ *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
+ *(SORT(.dtors.*))
+ *(.dtors)
+
+ *(.rodata*)
+ *(.eh_frame*)
+ } > FLASH
+
+ .ARM.extab :
+ {
+ *(.ARM.extab* .gnu.linkonce.armextab.*)
+ } > FLASH
+
+ __exidx_start = .;
+ .ARM.exidx :
+ {
+ *(.ARM.exidx* .gnu.linkonce.armexidx.*)
+ } > FLASH
+ __exidx_end = .;
+
+ .copy.table (READONLY):
+ {
+ . = ALIGN(4);
+ __copy_table_start__ = .;
+
+ LONG (__etext)
+ LONG (__data_start__)
+ LONG ((__data_end__ - __data_start__) / 4)
+
+ /* Add each additional data section here */
+ /*
+ LONG (__etext2)
+ LONG (__data2_start__)
+ LONG ((__data2_end__ - __data2_start__) / 4)
+ */
+
+ __copy_table_end__ = .;
+ } > FLASH
+
+ .zero.table (READONLY):
+ {
+ . = ALIGN(4);
+ __zero_table_start__ = .;
+ /* Add each additional bss section here */
+ /*
+ LONG (__bss2_start__)
+ LONG ((__bss2_end__ - __bss2_start__) / 4)
+ */
+
+ __zero_table_end__ = .;
+ __etext = .;
+ } > FLASH
+
+ .data :
+ {
+ . = ALIGN(4);
+ __data_start__ = .;
+ *(vtable)
+ *(SORT_BY_ALIGNMENT(.data*))
+ . = ALIGN(4);
+
+ . = ALIGN(4);
+ /* preinit data */
+ PROVIDE_HIDDEN (__preinit_array_start = .);
+ KEEP(*(.preinit_array))
+ PROVIDE_HIDDEN (__preinit_array_end = .);
+
+ . = ALIGN(4);
+ /* init data */
+ PROVIDE_HIDDEN (__init_array_start = .);
+ KEEP(*(SORT(.init_array.*)))
+ KEEP(*(.init_array))
+ PROVIDE_HIDDEN (__init_array_end = .);
+
+ . = ALIGN(4);
+ /* finit data */
+ PROVIDE_HIDDEN (__fini_array_start = .);
+ KEEP(*(SORT(.fini_array.*)))
+ KEEP(*(.fini_array))
+ PROVIDE_HIDDEN (__fini_array_end = .);
+
+ . = ALIGN(4);
+ /* All data end */
+ __data_end__ = .;
+
+ } > RAM AT > FLASH
+
+
+/* Calculate heap size based on RAM limits. */
+heap_limit = ORIGIN(RAM) + LENGTH(RAM); /* End of RAM */
+heap_size = heap_limit - __HeapBase;
+ .memory_manager_heap (NOLOAD):
+ {
+ . = ALIGN(8);
+ __HeapBase = .;
+ . += heap_size;
+ __end__ = .;
+ _end = __end__;
+ KEEP(*(.memory_manager_heap*))
+ __HeapLimit = ORIGIN(RAM) + LENGTH(RAM);
+ } > RAM
+
+ __ram_end__ = 0x20000000 + 0x80000;
+ __main_flash_end__ = 0x8000000 + 0x31e000;
+ /* This is where we handle flash storage blocks. We use dummy sections for finding the configured
+ * block sizes and then "place" them at the end of flash when the size is known. */
+ .internal_storage (DSECT) : {
+ KEEP(*(.internal_storage*))
+ } > FLASH
+
+
+ .nvm (DSECT) : {
+ KEEP(*(.simee*))
+ } > FLASH
+
+ __ramfuncs_start__ = __vma_ramfuncs_start__;
+ __ramfuncs_end__ = __vma_ramfuncs_end__;
+
+ linker_nvm_end = __main_flash_end__;
+ linker_nvm_begin = linker_nvm_end - SIZEOF(.nvm);
+ linker_storage_end = linker_nvm_begin;
+ __nvm3Base = linker_nvm_begin;
+
+ linker_storage_begin = linker_storage_end - SIZEOF(.internal_storage);
+ ASSERT((linker_storage_begin >= (__etext + SIZEOF(.data))), "FLASH memory overflowed !")
+
+
+ app_flash_end = 0x8000000 + 0x31e000;
+ ASSERT( (linker_nvm_begin + SIZEOF(.nvm)) <= app_flash_end, "NVM3 is excessing the flash size !")
+}
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/rtos_description.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/rtos_description.h
new file mode 100644
index 000000000..9ed015240
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/rtos_description.h
@@ -0,0 +1,70 @@
+/***************************************************************************//**
+ * @brief RTOS Description - Configuration Template File
+ *******************************************************************************
+ * # License
+ * Copyright 2018 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * The licensor of this software is Silicon Laboratories Inc. Your use of this
+ * software is governed by the terms of Silicon Labs Master Software License
+ * Agreement (MSLA) available at
+ * www.silabs.com/about-us/legal/master-software-license-agreement. This
+ * software is distributed to you in Source Code format and is governed by the
+ * sections of the MSLA applicable to Source Code.
+ *
+ ******************************************************************************/
+
+
+
+/*
+ ********************************************************************************************************
+ ********************************************************************************************************
+ * MODULE
+ ********************************************************************************************************
+ ********************************************************************************************************
+ */
+
+#ifndef _RTOS_DESCRIPTION_H_
+#define _RTOS_DESCRIPTION_H_
+
+/*
+ ********************************************************************************************************
+ ********************************************************************************************************
+ * INCLUDE FILES
+ ********************************************************************************************************
+ ********************************************************************************************************
+ */
+
+#include
+
+/*
+ ********************************************************************************************************
+ ********************************************************************************************************
+ * ENVIRONMENT DESCRIPTION
+ ********************************************************************************************************
+ ********************************************************************************************************
+ */
+#define RTOS_CPU_SEL RTOS_CPU_SEL_SILABS_GECKO_AUTO
+#define RTOS_TOOLCHAIN_SEL RTOS_TOOLCHAIN_AUTO
+
+/*
+ ********************************************************************************************************
+ ********************************************************************************************************
+ * RTOS MODULES DESCRIPTION
+ ********************************************************************************************************
+ ********************************************************************************************************
+ */
+
+
+#define RTOS_MODULE_KERNEL_AVAIL
+
+
+/*
+ ********************************************************************************************************
+ ********************************************************************************************************
+ * MODULE END
+ ********************************************************************************************************
+ ********************************************************************************************************
+ */
+
+#endif /* End of rtos_description.h module include. */
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sbom/cyclonedx_bom.json b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sbom/cyclonedx_bom.json
new file mode 100644
index 000000000..6912ac591
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sbom/cyclonedx_bom.json
@@ -0,0 +1,2760 @@
+{
+ "bomFormat" : "CycloneDX",
+ "specVersion" : "1.6",
+ "version" : 1,
+ "metadata" : {
+ "timestamp" : "2026-04-09T10:15:55Z",
+ "authors" : [ {
+ "name" : "Silicon Laboratories, Inc."
+ } ],
+ "properties" : [ {
+ "name" : "Silicon Labs Disclaimer",
+ "value" : "TERMS OF USE - SILICON LABORATORIES INC.\n(With respect to Silicon Labs software components, this Software Bill of Materials (SBOM) is based upon Silicon Labs'\nreview and analysis of the code version when released. It is provided \"AS IS\" and does not modify, change or alter\nthe terms or conditions of your use of Silicon Labs' software and/or SDKs based upon license terms and/or agreements\nassociated with this software or SDKs when distributed to you, received by you, or installed by you. Further, no\nwarranties or obligations are created by this SBOM. It is your obligation to comply with the terms of licenses\nreferenced in this SBOM.)"
+ } ]
+ },
+ "components" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.aiml:2.2.0",
+ "name" : "Silicon Labs AI/ML",
+ "version" : "2.2.0",
+ "supplier" : {
+ "name" : "Silicon Laboratories Inc."
+ },
+ "components" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.aiml:2.2.0:ml_audio_feature_generation",
+ "name" : "Audio Feature Generator",
+ "version" : "2.2.0",
+ "supplier" : {
+ "name" : "Silicon Laboratories Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib AND Apache-2.0"
+ } ],
+ "pedigree" : {
+ "ancestors" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "ml_audio_feature_generation:2.3.1",
+ "name" : "Microfrontend",
+ "version" : "2.3.1",
+ "supplier" : {
+ "name" : "The Tensorflow Authors"
+ },
+ "externalReferences" : [ {
+ "type" : "website",
+ "url" : "https://github.com/tensorflow/tensorflow/tree/master/tensorflow/lite/experimental/microfrontend"
+ } ],
+ "purl" : "pkg:github/tensorflow/tensorflow@v2.3.1",
+ "pedigree" : {
+ "notes" : "Microfrontend library to process audio that lives within the tensorflow repo on GitHub, version 2.3.1"
+ }
+ } ]
+ }
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.aiml:2.2.0:tensorflow_debug_log_iostream",
+ "name" : "Debug Logging using IO Stream",
+ "version" : "2.2.0",
+ "supplier" : {
+ "name" : "Silicon Laboratories Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.aiml:2.2.0:tflite-micro",
+ "name" : "TensorFlow Lite Micro",
+ "version" : "2.2.0",
+ "supplier" : {
+ "name" : "Silicon Laboratories Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Apache-2.0 AND MSLA"
+ } ],
+ "pedigree" : {
+ "ancestors" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "tflite-micro:ea8db00ab35",
+ "name" : "Tensorflow Lite for Microcontrollers",
+ "version" : "ea8db00ab35",
+ "supplier" : {
+ "name" : "The Tensorflow Authors"
+ },
+ "externalReferences" : [ {
+ "type" : "website",
+ "url" : "https://github.com/tensorflow/tflite-micro"
+ } ],
+ "purl" : "pkg:github/tensorflow/tflite-micro@ea8db00ab35",
+ "pedigree" : {
+ "notes" : "Tensorflow Lite for Microcontrollers library as it was on GitHub, at commit hash ea8db00ab35"
+ }
+ } ]
+ }
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.aiml:2.2.0:tensorflow_lite_micro_accelerated_kernels",
+ "name" : "MVPv1 Accelerated Kernels",
+ "version" : "2.2.0",
+ "supplier" : {
+ "name" : "Silicon Laboratories Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.aiml:2.2.0:ml_cmsis_dsp_rfft_q15",
+ "name" : "cmsis_dsp_rfft",
+ "version" : "2.2.0",
+ "supplier" : {
+ "name" : "Silicon Laboratories Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Apache-2.0 AND Zlib"
+ } ],
+ "pedigree" : {
+ "ancestors" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "ml_cmsis_dsp_rfft_q15:1.15.0",
+ "name" : "CMSIS-DSP",
+ "version" : "1.15.0",
+ "supplier" : {
+ "name" : "ARM-software"
+ },
+ "externalReferences" : [ {
+ "type" : "website",
+ "url" : "https://github.com/ARM-software/CMSIS-DSP"
+ } ],
+ "purl" : "pkg:github/ARM-software/CMSIS-DSP@v1.15.0",
+ "pedigree" : {
+ "notes" : "CMSIS DSP Library as packaged and released by ARM-software, version 1.15.0"
+ }
+ } ]
+ }
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.aiml:2.2.0:tensorflow_dependency_flatbuffers",
+ "name" : "Flatbuffers",
+ "version" : "2.2.0",
+ "supplier" : {
+ "name" : "Silicon Laboratories Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Apache-2.0"
+ } ],
+ "pedigree" : {
+ "ancestors" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "tensorflow_dependency_flatbuffers:07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2",
+ "name" : "Flatbuffers",
+ "version" : "07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2",
+ "supplier" : {
+ "name" : "Google Inc."
+ },
+ "externalReferences" : [ {
+ "type" : "website",
+ "url" : "https://github.com/google/flatbuffers"
+ } ],
+ "purl" : "pkg:github/google/flatbuffers@07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2",
+ "pedigree" : {
+ "notes" : "Only \"include/\" folder copied from Flatbuffers GitHub repo, commit hash 07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2"
+ }
+ } ]
+ }
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.aiml:2.2.0:tensorflow_dependency_gemmlowp",
+ "name" : "Low Precision General Matrix Multiplication (GEMMLOWP)",
+ "version" : "2.2.0",
+ "supplier" : {
+ "name" : "Silicon Laboratories Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Apache-2.0"
+ } ],
+ "pedigree" : {
+ "ancestors" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "tensorflow_dependency_gemmlowp:719139ce755a0",
+ "name" : "Gemmlowp",
+ "version" : "719139ce755a0",
+ "supplier" : {
+ "name" : "The Gemmlowp Authors"
+ },
+ "externalReferences" : [ {
+ "type" : "website",
+ "url" : "https://github.com/google/gemmlowp"
+ } ],
+ "purl" : "pkg:github/google/gemmlowp@719139ce755a0",
+ "pedigree" : {
+ "notes" : "Few header files copied from \"fixedpoint\" and \"internal\" folders from Gemmlowp GitHub repo, commit hash 719139ce755a0"
+ }
+ } ]
+ }
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.aiml:2.2.0:tensorflow_dependency_ruy",
+ "name" : "Ruy Matrix Multiplication",
+ "version" : "2.2.0",
+ "supplier" : {
+ "name" : "Silicon Laboratories Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Apache-2.0"
+ } ],
+ "pedigree" : {
+ "ancestors" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "tensorflow_dependency_ruy:5bb02fbf90824",
+ "name" : "Ruy",
+ "version" : "5bb02fbf90824",
+ "supplier" : {
+ "name" : "Google LLC"
+ },
+ "externalReferences" : [ {
+ "type" : "website",
+ "url" : "https://github.com/google/ruy"
+ } ],
+ "purl" : "pkg:github/google/ruy@5bb02fbf90824",
+ "pedigree" : {
+ "notes" : "Only profiler instrumentation header copied from GitHub repo, commit hash 5bb02fbf90824"
+ }
+ } ]
+ }
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1",
+ "name" : "Simplicity SDK Suite",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "components" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:EFR32MG26B510F3200IM68",
+ "name" : "EFR32MG26B510F3200IM68",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:app_assert",
+ "name" : "Assert",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_feature_connection",
+ "name" : "Connection",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib AND MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_feature_gatt_server",
+ "name" : "GATT Server",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_feature_legacy_advertiser",
+ "name" : "Legacy Advertising",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_feature_sm",
+ "name" : "Security Manager",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_feature_system",
+ "name" : "System",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_stack",
+ "name" : "Bluetooth Core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib AND MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:brd2608a",
+ "name" : "BRD2608A",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:clock_manager",
+ "name" : "Clock Manager",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:device_init",
+ "name" : "Automatic Device Initialization",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:gatt_configuration",
+ "name" : "Static GATT Database and Configuration",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:gatt_service_rht",
+ "name" : "Environment Sensing - Relative Humidity and Temperature GATT Service",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:iostream_recommended_stream",
+ "name" : "IO Stream: Recommended Stream",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:iostream_retarget_stdio",
+ "name" : "IO Stream: Retarget STDIO",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:memory_manager",
+ "name" : "Memory Manager",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:micriumos_kernel",
+ "name" : "Micrium OS Kernel",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:mpu",
+ "name" : "Simple MPU",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:nvm3_default",
+ "name" : "NVM3 Default Instance",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:power_manager",
+ "name" : "Power Manager",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:printf",
+ "name" : "Tiny printf",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MIT"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sensor_rht",
+ "name" : "Relative Humidity and Temperature sensor",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:si70xx_driver",
+ "name" : "Si70xx - Temperature/Humidity Sensor",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:simple_led",
+ "name" : "Simple LED",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_main",
+ "name" : "System Setup (sl_main)",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sleeptimer",
+ "name" : "Sleep Timer",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:status",
+ "name" : "Status Codes Definitions",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bgapi_protocol_rtos_adaptation",
+ "name" : "BGAPI Protocol RTOS adaptation",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib AND MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:mic_i2s_driver",
+ "name" : "I2S Microphone",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:micriumos_common_platform_manager",
+ "name" : "Micrium OS Common Platform Manager",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:dmadrv_core",
+ "name" : "DMADRV Core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:device_manager",
+ "name" : "Device Manager",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:led",
+ "name" : "Generic LED API",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_eusart",
+ "name" : "EUSART",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bit",
+ "name" : "Bit Operations Library",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:psa_driver_common",
+ "name" : "PSA Driver Common Source Code",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_controller_libraries",
+ "name" : "Bluetooth Low Energy Controller Library",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:compute_util",
+ "name" : "Compute utilities",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:clock_manager_init_hal_s2",
+ "name" : "Clock Manager Init HAL Series 2",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:hal_system",
+ "name" : "SYSTEM",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:psa_crypto_trng",
+ "name" : "TRNG",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:slist",
+ "name" : "Single Link List",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:nn_mvp",
+ "name" : "MVP NN",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib and MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:micriumos_kernel_port_armv8m",
+ "name" : "Kernel port for ARMv8-M",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:cmsis_nn",
+ "name" : "CMSIS-NN",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Apache-2.0"
+ } ],
+ "pedigree" : {
+ "ancestors" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "cmsis_nn:3f773cbf8f5",
+ "name" : "CMSIS-NN",
+ "version" : "3f773cbf8f5",
+ "supplier" : {
+ "name" : "ARM-software"
+ },
+ "externalReferences" : [ {
+ "type" : "website",
+ "url" : "https://github.com/ARM-software/CMSIS-NN"
+ } ],
+ "purl" : "pkg:github/ARM-software/CMSIS-NN@3f773cbf8f5",
+ "pedigree" : {
+ "notes" : "CMSIS NN Library as packaged and released by ARM-software, version 4.1.0, tag 23.08, commit hash 3f773cbf8f5"
+ }
+ } ]
+ }
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:device_gpio",
+ "name" : "Device Manager GPIO",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:device_dma",
+ "name" : "Device Manager DMA",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:nvm3_source",
+ "name" : "NVM3 Core (source)",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:nvm3_default_config",
+ "name" : "NVM3 Default Config",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_crypto",
+ "name" : "Bluetooth Core Crypto Configuration",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:driver_mvp",
+ "name" : "MVP Driver",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:psa_crypto_config",
+ "name" : "Configuration",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:toolchain_gcc_standard",
+ "name" : "GCC Toolchain Standard Linker",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:iostream",
+ "name" : "IO Stream",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_configuration",
+ "name" : "Instantiation of Bluetooth configuration",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:hal_prs",
+ "name" : "PRS",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:se_manager_crypto",
+ "name" : "Crypto",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:device_init_dcdc",
+ "name" : "DC-DC Converter",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_rail_util_pa_tables",
+ "name" : "RAIL Utility, PA Tables",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:enum",
+ "name" : "Enumerations",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:mbedtls_threading_alt_cmsis_rtos2",
+ "name" : "Silicon Labs Threading support Mbed TLS",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sli_crypto_s2",
+ "name" : "Accelerated Crypto Primitives for Series-2 devices",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:power_manager_core_impl_sleep_loop",
+ "name" : "Power Manager: Core implementation",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:memory_manager_retention_control",
+ "name" : "Memory Manager Retention Control",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:nvm3_optimization_disable",
+ "name" : "NVM3 disable optimization",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sli_protocol_crypto",
+ "name" : "Accelerated Crypto Primitives (CRYPTO and RADIOAES)",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_main_memory_init",
+ "name" : "sl_main Setup",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:nn_util",
+ "name" : "NN Utilities",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_gattdb_definition",
+ "name" : "Bluetooth GATT database structure definition",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:atomic",
+ "name" : "Atomic Operations Library",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:code_classification",
+ "name" : "Code Classification",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:math",
+ "name" : "Math",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_main_kernel",
+ "name" : "SL Main Kernel",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:micriumos_common_collections",
+ "name" : "Micrium OS Common Collections",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:configuration_over_swo",
+ "name" : "Configuration Over SWO",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:micriumos_cpu_port_armv8m",
+ "name" : "CPU port for ARMv8-M",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:rail_lib_singleprotocol",
+ "name" : "RAIL Library, Single Protocol",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_feature_builtin_bonding_database",
+ "name" : "Built-in Bluetooth bonding database",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_rail_util_compatible_pa",
+ "name" : "RAIL Utility, PA compatibility",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:memory_manager_pool",
+ "name" : "Memory Manager Memory Pool",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_rail_util_pa",
+ "name" : "RAIL Utility, PA (RAIL 3)",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_ldma",
+ "name" : "LDMA",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_rtos_adaptation",
+ "name" : "Bluetooth RTOS Adaptation",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib AND MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:micriumos_common_core",
+ "name" : "Micrium OS Common Module Core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:cmsis_os2_ext_task_register",
+ "name" : "Task registers abstraction layer",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_device_compatibility",
+ "name" : "Device compatibility defines for Bluetooth features",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:cmsis_rtos2_tick",
+ "name" : "CMSIS-RTOS2 OS Tick",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Apache 2.0"
+ } ],
+ "pedigree" : {
+ "ancestors" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "cmsis_rtos2_tick:5.8.0",
+ "name" : "CMSIS_5",
+ "version" : "5.8.0",
+ "supplier" : {
+ "name" : "ARM-software"
+ },
+ "externalReferences" : [ {
+ "type" : "website",
+ "url" : "https://github.com/ARM-software/CMSIS_5"
+ } ],
+ "purl" : "pkg:github/ARM-software/CMSIS_5@5.8.0",
+ "pedigree" : {
+ "notes" : "The CMSIS is a set of tools, APIs, frameworks, and work flows"
+ }
+ } ]
+ }
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_cmu",
+ "name" : "CMU",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_host_release_libraries",
+ "name" : "Bluetooth Low Energy Host Library",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:errno_error_codes",
+ "name" : "errno error codes support",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_syscfg",
+ "name" : "SYSCFG",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:hal_usart",
+ "name" : "USART",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:trustzone_unaware",
+ "name" : "TrustZone Unaware",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:psa_se_driver",
+ "name" : "PSA SE Driver Source Code",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:hfxo_manager",
+ "name" : "HFXO Manager",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:dmadrv",
+ "name" : "DMADRV",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:hal_common",
+ "name" : "Common Headers",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_i2c",
+ "name" : "I2C",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bgapi_protocol",
+ "name" : "BGAPI Protocol",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib AND MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:micriumos_rtos_description",
+ "name" : "RTOS Description",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:device_peripheral_hal",
+ "name" : "Device Manager Peripheral HAL",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:interrupt_manager",
+ "name" : "Interrupt Manager",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:ecode",
+ "name" : "EMDRV Common Headers",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:iostream_uart_common",
+ "name" : "IO Stream: Common code for UART-type streams",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:psa_crypto",
+ "name" : "PSA Crypto",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_prs",
+ "name" : "PRS",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:psa_driver",
+ "name" : "Drivers for Crypto Acceleration",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:clock_manager_runtime",
+ "name" : "Clock Manager Runtime",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:memory_manager_retention_control_hal",
+ "name" : "Memory Manager Retention Control HAL",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sli_psec_osal",
+ "name" : "OS Abstraction Layer",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:udelay",
+ "name" : "Microsecond Delay",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:device_peripheral",
+ "name" : "Device Manager Peripheral",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:se_manager_mailbox",
+ "name" : "SE mailbox utilities",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:se_manager_config",
+ "name" : "Config",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:power_manager_handler_implementation",
+ "name" : "Power Manager: Handler",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_common_libraries_release",
+ "name" : "bluetooth_common_libraries_release",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:simple_led_core",
+ "name" : "Simple LED Core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:memory_profiler_api",
+ "name" : "Memory Profiler API",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:i2c_core",
+ "name" : "I2C Core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:board_control",
+ "name" : "Board Control",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:memory_manager_cpp",
+ "name" : "Memory Manager C++ Support",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:device_dma_hal",
+ "name" : "Device Manager DMA HAL",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:cmsis_common",
+ "name" : "Common APIs for CMSIS-Compliant Kernels",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:power_manager_core",
+ "name" : "Power Manager: Core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:i2cspm_core",
+ "name" : "I2CSPM Core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bgapi_protocol_libraries_release",
+ "name" : "BGAPI Protocol release libraries",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:mbedtls_slcrypto_driver",
+ "name" : "Drivers for Silicon Labs Crypto Acceleration",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_system",
+ "name" : "SYSTEM",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:rail_lib",
+ "name" : "RAIL Library, Core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:hal_gpio",
+ "name" : "GPIO",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:se_manager",
+ "name" : "SE Manager",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_rail_util_sequencer",
+ "name" : "RAIL Utility, Radio Sequencer Image Selection (RAIL 3)",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_controller",
+ "name" : "Bluetooth Low Energy Controller",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:event_handler",
+ "name" : "Event Handler",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:hal_sysrtc_subsystem_host",
+ "name" : "SYSRTC for Host Sub-System",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:memory_manager_region",
+ "name" : "Memory Manager region",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_msc",
+ "name" : "MSC",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_feature_advertiser",
+ "name" : "Advertising Base Feature",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib AND MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:device_i2c",
+ "name" : "Device Manager I2C",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sli_crypto",
+ "name" : "Accelerated Crypto Primitives",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_rail_util_built_in_phys",
+ "name" : "RAIL Utility, Built-in PHYs Across HFXO Frequencies (RAIL 3)",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:power_manager_deepsleep",
+ "name" : "Power Manager: Deepsleep",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:micriumos_cpu",
+ "name" : "Micrium OS CPU Module",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:debug_swo",
+ "name" : "SWO Debug",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:micriumos_common_lib",
+ "name" : "Micrium OS Common Libraries Module",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:rail_util_features",
+ "name" : "RAIL Library Features, Core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:interrupt_manager_cortexm",
+ "name" : "Interrupt Manager Cortex-M",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_controller_rtos_adaptation",
+ "name" : "Bluetooth Core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:rail_lib_singleprotocol_internal_chips_dummy",
+ "name" : "RAIL Library, Single Protocol Internal Chips Dummy",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_string",
+ "name" : "String Functions",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:cpp_support",
+ "name" : "Toolchain: C++ Support",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_host_adaptation",
+ "name" : "System adaptation layer used by the Bluetooth host stack",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib AND MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:mx25_flash_shutdown_eusart",
+ "name" : "MX25 Flash Shutdown with eusart",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_syscalls",
+ "name" : "SystemCall Functions",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_common",
+ "name" : "Bluetooth Low Energy Common Component",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_rail_util_power_manager_init",
+ "name" : "RAIL Utility, Power manager init (RAIL 3)",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_gpio",
+ "name" : "GPIO",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:nvm3_default_flash_backend",
+ "name" : "NVM3 back-end for default instance in flash",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:hal_i2c",
+ "name" : "I2C",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:rail_lib_singleprotocol_alpha_chips",
+ "name" : "RAIL Library, Single Protocol for Alpha Chips",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:cmsis_dsp",
+ "name" : "CMSIS-DSP",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Apache-2.0"
+ } ],
+ "pedigree" : {
+ "ancestors" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "cmsis_dsp:1.15.0",
+ "name" : "CMSIS-DSP",
+ "version" : "1.15.0",
+ "supplier" : {
+ "name" : "ARM-software"
+ },
+ "externalReferences" : [ {
+ "type" : "website",
+ "url" : "https://github.com/ARM-software/CMSIS-DSP"
+ } ],
+ "purl" : "pkg:github/ARM-software/CMSIS-DSP@v1.15.0",
+ "pedigree" : {
+ "notes" : "CMSIS DSP Library as packaged and released by ARM-software, version 1.15.0"
+ }
+ } ]
+ }
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:math_mvp",
+ "name" : "MVP Math",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:device_clock_hal",
+ "name" : "Device Manager Clock HAL",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_version",
+ "name" : "Bluetooth Version",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:iostream_eusart",
+ "name" : "IO Stream: EUSART",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:i2cspm",
+ "name" : "I2CSPM",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:cmsis_rtos2_init",
+ "name" : "CMSIS-RTOS2 Initialization",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Apache 2.0"
+ } ],
+ "pedigree" : {
+ "ancestors" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "cmsis_rtos2_init:5.8.0",
+ "name" : "CMSIS_5",
+ "version" : "5.8.0",
+ "supplier" : {
+ "name" : "ARM-software"
+ },
+ "externalReferences" : [ {
+ "type" : "website",
+ "url" : "https://github.com/ARM-software/CMSIS_5"
+ } ],
+ "purl" : "pkg:github/ARM-software/CMSIS_5@5.8.0",
+ "pedigree" : {
+ "notes" : "The CMSIS is a set of tools, APIs, frameworks, and work flows"
+ }
+ } ]
+ }
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:mbedtls_slcrypto",
+ "name" : "Silicon Labs Mbed TLS support",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:toolchain_gcc",
+ "name" : "GCC Toolchain",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_assert",
+ "name" : "Assert Functions",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:cmsis_rtos2_headers",
+ "name" : "CMSIS-RTOS2 Headers",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Apache 2.0"
+ } ],
+ "pedigree" : {
+ "ancestors" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "cmsis_rtos2_headers:5.8.0",
+ "name" : "CMSIS_5",
+ "version" : "5.8.0",
+ "supplier" : {
+ "name" : "ARM-software"
+ },
+ "externalReferences" : [ {
+ "type" : "website",
+ "url" : "https://github.com/ARM-software/CMSIS_5"
+ } ],
+ "purl" : "pkg:github/ARM-software/CMSIS_5@5.8.0",
+ "pedigree" : {
+ "notes" : "The CMSIS is a set of tools, APIs, frameworks, and work flows."
+ }
+ } ]
+ }
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:device_clock",
+ "name" : "Device Manager Clock",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:component_catalog",
+ "name" : "Component Catalog",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_emu",
+ "name" : "EMU",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:mic_driver",
+ "name" : "Microphone",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:clock_manager_runtime_hal_s2",
+ "name" : "Clock Manager Runtime HAL Series 2",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_burtc",
+ "name" : "BURTC",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:driver_mvp_hal_efr32",
+ "name" : "MVP HAL Driver for EFR32 parts",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:psa_its",
+ "name" : "PSA Persistent Storage Support (ITS)",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:hal_eusart",
+ "name" : "EUSART",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:brd2608a_config",
+ "name" : "brd2608a config",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:bluetooth_controller_crypto",
+ "name" : "Bluetooth Core Crypto Configuration for Controller",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:iostream_eusart_core",
+ "name" : "IO Stream: EUSART Core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_common",
+ "name" : "Common Headers",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:micriumos_kernel_port_generic",
+ "name" : "Kernel port generic",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "MSLA"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_core",
+ "name" : "core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:hal_syscfg",
+ "name" : "SYSCFG",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:cmsis_core",
+ "name" : "CMSIS-Core",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Apache 2.0"
+ } ],
+ "pedigree" : {
+ "ancestors" : [ {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "cmsis_core:5.8.0",
+ "name" : "CMSIS_5",
+ "version" : "5.8.0",
+ "supplier" : {
+ "name" : "ARM-software"
+ },
+ "externalReferences" : [ {
+ "type" : "website",
+ "url" : "https://github.com/ARM-software/CMSIS_5"
+ } ],
+ "purl" : "pkg:github/ARM-software/CMSIS_5@5.8.0",
+ "pedigree" : {
+ "notes" : "The CMSIS is a set of tools, APIs, frameworks, and work flows"
+ }
+ } ]
+ }
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_core",
+ "name" : "CORE",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:hal_sysrtc",
+ "name" : "SYSRTC",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:toolchain_variant_arm",
+ "name" : "Toolchain for ARM",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:emlib_timer",
+ "name" : "TIMER",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:psa_crypto_common",
+ "name" : "PSA Crypto Common",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:math_types",
+ "name" : "Math Types",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_common",
+ "name" : "Common Functions",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:mbedtls_config",
+ "name" : "Configuration",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_main_init",
+ "name" : "sl main Init",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:sl_main_process_action",
+ "name" : "sl_main Process Action",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ }, {
+ "scope" : "required",
+ "type" : "library",
+ "bom-ref" : "silabs.simplicity_sdk:2025.12.1:gpio",
+ "name" : "GPIO Driver",
+ "version" : "2025.12.1",
+ "supplier" : {
+ "name" : "Silicon Laboratories, Inc."
+ },
+ "licenses" : [ {
+ "expression" : "Zlib"
+ } ]
+ } ]
+ } ]
+}
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sbom/cyclonedx_bom.xml b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sbom/cyclonedx_bom.xml
new file mode 100644
index 000000000..cf902f47b
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sbom/cyclonedx_bom.xml
@@ -0,0 +1,2350 @@
+
+
+
+
+ 2026-04-09T10:15:55Z
+
+
+ Silicon Laboratories, Inc.
+
+
+
+
+
+
+ Silicon Laboratories Inc.
+
+ Silicon Labs AI/ML
+ 2.2.0
+
+
+ Audio Feature Generator
+ 2.2.0
+
+ Silicon Laboratories Inc.
+
+
+ Zlib AND Apache-2.0
+
+
+
+
+
+ The Tensorflow Authors
+
+ Microfrontend
+ 2.3.1
+ pkg:github/tensorflow/tensorflow@v2.3.1
+
+ Microfrontend library to process audio that lives within the tensorflow repo on GitHub, version 2.3.1
+
+
+
+ https://github.com/tensorflow/tensorflow/tree/master/tensorflow/lite/experimental/microfrontend
+
+
+
+
+
+
+
+ Debug Logging using IO Stream
+ 2.2.0
+
+ Silicon Laboratories Inc.
+
+
+ Zlib
+
+
+
+ TensorFlow Lite Micro
+ 2.2.0
+
+ Silicon Laboratories Inc.
+
+
+ Apache-2.0 AND MSLA
+
+
+
+
+
+ The Tensorflow Authors
+
+ Tensorflow Lite for Microcontrollers
+ ea8db00ab35
+ pkg:github/tensorflow/tflite-micro@ea8db00ab35
+
+ Tensorflow Lite for Microcontrollers library as it was on GitHub, at commit hash ea8db00ab35
+
+
+
+ https://github.com/tensorflow/tflite-micro
+
+
+
+
+
+
+
+ MVPv1 Accelerated Kernels
+ 2.2.0
+
+ Silicon Laboratories Inc.
+
+
+ MSLA
+
+
+
+ cmsis_dsp_rfft
+ 2.2.0
+
+ Silicon Laboratories Inc.
+
+
+ Apache-2.0 AND Zlib
+
+
+
+
+
+ ARM-software
+
+ CMSIS-DSP
+ 1.15.0
+ pkg:github/ARM-software/CMSIS-DSP@v1.15.0
+
+ CMSIS DSP Library as packaged and released by ARM-software, version 1.15.0
+
+
+
+ https://github.com/ARM-software/CMSIS-DSP
+
+
+
+
+
+
+
+ Flatbuffers
+ 2.2.0
+
+ Silicon Laboratories Inc.
+
+
+ Apache-2.0
+
+
+
+
+
+ Google Inc.
+
+ Flatbuffers
+ 07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2
+ pkg:github/google/flatbuffers@07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2
+
+ Only "include/" folder copied from Flatbuffers GitHub repo, commit hash 07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2
+
+
+
+ https://github.com/google/flatbuffers
+
+
+
+
+
+
+
+ Low Precision General Matrix Multiplication (GEMMLOWP)
+ 2.2.0
+
+ Silicon Laboratories Inc.
+
+
+ Apache-2.0
+
+
+
+
+
+ The Gemmlowp Authors
+
+ Gemmlowp
+ 719139ce755a0
+ pkg:github/google/gemmlowp@719139ce755a0
+
+ Few header files copied from "fixedpoint" and "internal" folders from Gemmlowp GitHub repo, commit hash 719139ce755a0
+
+
+
+ https://github.com/google/gemmlowp
+
+
+
+
+
+
+
+ Ruy Matrix Multiplication
+ 2.2.0
+
+ Silicon Laboratories Inc.
+
+
+ Apache-2.0
+
+
+
+
+
+ Google LLC
+
+ Ruy
+ 5bb02fbf90824
+ pkg:github/google/ruy@5bb02fbf90824
+
+ Only profiler instrumentation header copied from GitHub repo, commit hash 5bb02fbf90824
+
+
+
+ https://github.com/google/ruy
+
+
+
+
+
+
+
+
+
+
+ Silicon Laboratories, Inc.
+
+ Simplicity SDK Suite
+ 2025.12.1
+
+
+ EFR32MG26B510F3200IM68
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Assert
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Connection
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib AND MSLA
+
+
+
+ GATT Server
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Legacy Advertising
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Security Manager
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ System
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Bluetooth Core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib AND MSLA
+
+
+
+ BRD2608A
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Clock Manager
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Automatic Device Initialization
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Static GATT Database and Configuration
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Environment Sensing - Relative Humidity and Temperature GATT Service
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ IO Stream: Recommended Stream
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ IO Stream: Retarget STDIO
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Memory Manager
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Micrium OS Kernel
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Simple MPU
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ NVM3 Default Instance
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Power Manager
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Tiny printf
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MIT
+
+
+
+ Relative Humidity and Temperature sensor
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Si70xx - Temperature/Humidity Sensor
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Simple LED
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ System Setup (sl_main)
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Sleep Timer
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Status Codes Definitions
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ BGAPI Protocol RTOS adaptation
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib AND MSLA
+
+
+
+ I2S Microphone
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Micrium OS Common Platform Manager
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ DMADRV Core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Device Manager
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Generic LED API
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ EUSART
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Bit Operations Library
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ PSA Driver Common Source Code
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Bluetooth Low Energy Controller Library
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Compute utilities
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Clock Manager Init HAL Series 2
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ SYSTEM
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ TRNG
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Single Link List
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ MVP NN
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib and MSLA
+
+
+
+ Kernel port for ARMv8-M
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ CMSIS-NN
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Apache-2.0
+
+
+
+
+
+ ARM-software
+
+ CMSIS-NN
+ 3f773cbf8f5
+ pkg:github/ARM-software/CMSIS-NN@3f773cbf8f5
+
+ CMSIS NN Library as packaged and released by ARM-software, version 4.1.0, tag 23.08, commit hash 3f773cbf8f5
+
+
+
+ https://github.com/ARM-software/CMSIS-NN
+
+
+
+
+
+
+
+ Device Manager GPIO
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Device Manager DMA
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ NVM3 Core (source)
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ NVM3 Default Config
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Bluetooth Core Crypto Configuration
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ MVP Driver
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Configuration
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ GCC Toolchain Standard Linker
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ IO Stream
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Instantiation of Bluetooth configuration
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ PRS
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Crypto
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ DC-DC Converter
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ RAIL Utility, PA Tables
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Enumerations
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Silicon Labs Threading support Mbed TLS
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Accelerated Crypto Primitives for Series-2 devices
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Power Manager: Core implementation
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Memory Manager Retention Control
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ NVM3 disable optimization
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Accelerated Crypto Primitives (CRYPTO and RADIOAES)
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ sl_main Setup
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ NN Utilities
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Bluetooth GATT database structure definition
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Atomic Operations Library
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Code Classification
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Math
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ SL Main Kernel
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Micrium OS Common Collections
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Configuration Over SWO
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ CPU port for ARMv8-M
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ RAIL Library, Single Protocol
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Built-in Bluetooth bonding database
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ RAIL Utility, PA compatibility
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Memory Manager Memory Pool
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ RAIL Utility, PA (RAIL 3)
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ LDMA
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Bluetooth RTOS Adaptation
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib AND MSLA
+
+
+
+ Micrium OS Common Module Core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Task registers abstraction layer
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Device compatibility defines for Bluetooth features
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ CMSIS-RTOS2 OS Tick
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Apache 2.0
+
+
+
+
+
+ ARM-software
+
+ CMSIS_5
+ 5.8.0
+ pkg:github/ARM-software/CMSIS_5@5.8.0
+
+ The CMSIS is a set of tools, APIs, frameworks, and work flows
+
+
+
+ https://github.com/ARM-software/CMSIS_5
+
+
+
+
+
+
+
+ CMU
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Bluetooth Low Energy Host Library
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ errno error codes support
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ SYSCFG
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ USART
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ TrustZone Unaware
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ PSA SE Driver Source Code
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ HFXO Manager
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ DMADRV
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Common Headers
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ I2C
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ BGAPI Protocol
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib AND MSLA
+
+
+
+ RTOS Description
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Device Manager Peripheral HAL
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Interrupt Manager
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ EMDRV Common Headers
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ IO Stream: Common code for UART-type streams
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ PSA Crypto
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ PRS
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Drivers for Crypto Acceleration
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Clock Manager Runtime
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Memory Manager Retention Control HAL
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ OS Abstraction Layer
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Microsecond Delay
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Device Manager Peripheral
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ SE mailbox utilities
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Config
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Power Manager: Handler
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ bluetooth_common_libraries_release
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Simple LED Core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Memory Profiler API
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ I2C Core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Board Control
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Memory Manager C++ Support
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Device Manager DMA HAL
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Common APIs for CMSIS-Compliant Kernels
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Power Manager: Core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ I2CSPM Core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ BGAPI Protocol release libraries
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Drivers for Silicon Labs Crypto Acceleration
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ SYSTEM
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ RAIL Library, Core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ GPIO
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ SE Manager
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ RAIL Utility, Radio Sequencer Image Selection (RAIL 3)
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Bluetooth Low Energy Controller
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Event Handler
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ SYSRTC for Host Sub-System
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Memory Manager region
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ MSC
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Advertising Base Feature
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib AND MSLA
+
+
+
+ Device Manager I2C
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Accelerated Crypto Primitives
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ RAIL Utility, Built-in PHYs Across HFXO Frequencies (RAIL 3)
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Power Manager: Deepsleep
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Micrium OS CPU Module
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ SWO Debug
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Micrium OS Common Libraries Module
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ RAIL Library Features, Core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ Interrupt Manager Cortex-M
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Bluetooth Core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ RAIL Library, Single Protocol Internal Chips Dummy
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ String Functions
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Toolchain: C++ Support
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ System adaptation layer used by the Bluetooth host stack
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib AND MSLA
+
+
+
+ MX25 Flash Shutdown with eusart
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ SystemCall Functions
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Bluetooth Low Energy Common Component
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ RAIL Utility, Power manager init (RAIL 3)
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ GPIO
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ NVM3 back-end for default instance in flash
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ I2C
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ RAIL Library, Single Protocol for Alpha Chips
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ CMSIS-DSP
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Apache-2.0
+
+
+
+
+
+ ARM-software
+
+ CMSIS-DSP
+ 1.15.0
+ pkg:github/ARM-software/CMSIS-DSP@v1.15.0
+
+ CMSIS DSP Library as packaged and released by ARM-software, version 1.15.0
+
+
+
+ https://github.com/ARM-software/CMSIS-DSP
+
+
+
+
+
+
+
+ MVP Math
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Device Manager Clock HAL
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Bluetooth Version
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ IO Stream: EUSART
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ I2CSPM
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ CMSIS-RTOS2 Initialization
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Apache 2.0
+
+
+
+
+
+ ARM-software
+
+ CMSIS_5
+ 5.8.0
+ pkg:github/ARM-software/CMSIS_5@5.8.0
+
+ The CMSIS is a set of tools, APIs, frameworks, and work flows
+
+
+
+ https://github.com/ARM-software/CMSIS_5
+
+
+
+
+
+
+
+ Silicon Labs Mbed TLS support
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ GCC Toolchain
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Assert Functions
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ CMSIS-RTOS2 Headers
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Apache 2.0
+
+
+
+
+
+ ARM-software
+
+ CMSIS_5
+ 5.8.0
+ pkg:github/ARM-software/CMSIS_5@5.8.0
+
+ The CMSIS is a set of tools, APIs, frameworks, and work flows.
+
+
+
+ https://github.com/ARM-software/CMSIS_5
+
+
+
+
+
+
+
+ Device Manager Clock
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Component Catalog
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ EMU
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Microphone
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Clock Manager Runtime HAL Series 2
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ BURTC
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ MVP HAL Driver for EFR32 parts
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ PSA Persistent Storage Support (ITS)
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ EUSART
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ brd2608a config
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Bluetooth Core Crypto Configuration for Controller
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ IO Stream: EUSART Core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Common Headers
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Kernel port generic
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ MSLA
+
+
+
+ core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ SYSCFG
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ CMSIS-Core
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Apache 2.0
+
+
+
+
+
+ ARM-software
+
+ CMSIS_5
+ 5.8.0
+ pkg:github/ARM-software/CMSIS_5@5.8.0
+
+ The CMSIS is a set of tools, APIs, frameworks, and work flows
+
+
+
+ https://github.com/ARM-software/CMSIS_5
+
+
+
+
+
+
+
+ CORE
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ SYSRTC
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Toolchain for ARM
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ TIMER
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ PSA Crypto Common
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Math Types
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Common Functions
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ Configuration
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ sl main Init
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ sl_main Process Action
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+ GPIO Driver
+ 2025.12.1
+
+ Silicon Laboratories, Inc.
+
+
+ Zlib
+
+
+
+
+
+
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sbom/spdx_bom.spdx b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sbom/spdx_bom.spdx
new file mode 100644
index 000000000..63d652276
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sbom/spdx_bom.spdx
@@ -0,0 +1,2701 @@
+# TERMS OF USE - SILICON LABORATORIES INC.
+# (With respect to Silicon Labs software components, this Software Bill of Materials (SBOM) is based upon Silicon Labs'
+# review and analysis of the code version when released. It is provided "AS IS" and does not modify, change or alter
+# the terms or conditions of your use of Silicon Labs' software and/or SDKs based upon license terms and/or agreements
+# associated with this software or SDKs when distributed to you, received by you, or installed by you. Further, no
+# warranties or obligations are created by this SBOM. It is your obligation to comply with the terms of licenses
+# referenced in this SBOM.)
+SPDXVersion: SPDX-2.3
+DataLicense: CC0-1.0
+SPDXID: SPDXRef-DOCUMENT
+DocumentName: Silicon-Laboratories
+DocumentNamespace: https://silabs.com
+
+## Creation Information
+Creator: Organization: Silicon Laboratories, Inc.
+Created: 2026-04-09T10:15:55Z
+## Relationships
+Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-silabs.aiml-2.2.0
+Relationship: SPDXRef-DOCUMENT DESCRIBES SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Silicon Labs AI/ML
+SPDXID: SPDXRef-silabs.aiml-2.2.0
+PackageVersion: 2.2.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories Inc.
+## Relationships
+Relationship: SPDXRef-silabs.aiml-2.2.0 CONTAINS SPDXRef-silabs.aiml-2.2.0-ml_audio_feature_generation
+Relationship: SPDXRef-silabs.aiml-2.2.0 CONTAINS SPDXRef-silabs.aiml-2.2.0-tensorflow_debug_log_iostream
+Relationship: SPDXRef-silabs.aiml-2.2.0 CONTAINS SPDXRef-silabs.aiml-2.2.0-tflite-micro
+Relationship: SPDXRef-silabs.aiml-2.2.0 CONTAINS SPDXRef-silabs.aiml-2.2.0-tensorflow_lite_micro_accelerated_kernels
+Relationship: SPDXRef-silabs.aiml-2.2.0 CONTAINS SPDXRef-silabs.aiml-2.2.0-ml_cmsis_dsp_rfft_q15
+Relationship: SPDXRef-silabs.aiml-2.2.0 CONTAINS SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_flatbuffers
+Relationship: SPDXRef-silabs.aiml-2.2.0 CONTAINS SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_gemmlowp
+Relationship: SPDXRef-silabs.aiml-2.2.0 CONTAINS SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_ruy
+
+## Package Information
+PackageName: Audio Feature Generator
+SPDXID: SPDXRef-silabs.aiml-2.2.0-ml_audio_feature_generation
+PackageVersion: 2.2.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories Inc.
+PackageLicenseConcluded: Zlib AND Apache-2.0
+## Relationships
+Relationship: SPDXRef-silabs.aiml-2.2.0-ml_audio_feature_generation CONTAINED_BY SPDXRef-silabs.aiml-2.2.0
+Relationship: SPDXRef-silabs.aiml-2.2.0-ml_audio_feature_generation ANCESTOR_OF SPDXRef-ml_audio_feature_generation-2.3.1
+
+## Package Information
+PackageName: Microfrontend
+SPDXID: SPDXRef-ml_audio_feature_generation-2.3.1
+PackageVersion: 2.3.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: The Tensorflow Authors
+PackageOriginator: Organization: NOASSERTION
+PackageHomePage: https://github.com/tensorflow/tensorflow/tree/master/tensorflow/lite/experimental/microfrontend
+ExternalRef: PACKAGE-MANAGER purl pkg:github/tensorflow/tensorflow@v2.3.1
+PackageComment: Microfrontend library to process audio that lives within the tensorflow repo on GitHub, version 2.3.1
+## Relationships
+Relationship: SPDXRef-ml_audio_feature_generation-2.3.1 DESCENDANT_OF SPDXRef-silabs.aiml-2.2.0-ml_audio_feature_generation
+
+## Package Information
+PackageName: Debug Logging using IO Stream
+SPDXID: SPDXRef-silabs.aiml-2.2.0-tensorflow_debug_log_iostream
+PackageVersion: 2.2.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.aiml-2.2.0-tensorflow_debug_log_iostream CONTAINED_BY SPDXRef-silabs.aiml-2.2.0
+
+## Package Information
+PackageName: TensorFlow Lite Micro
+SPDXID: SPDXRef-silabs.aiml-2.2.0-tflite-micro
+PackageVersion: 2.2.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories Inc.
+PackageLicenseConcluded: Apache-2.0 AND MSLA
+## Relationships
+Relationship: SPDXRef-silabs.aiml-2.2.0-tflite-micro CONTAINED_BY SPDXRef-silabs.aiml-2.2.0
+Relationship: SPDXRef-silabs.aiml-2.2.0-tflite-micro ANCESTOR_OF SPDXRef-tflite-micro-ea8db00ab35
+
+## Package Information
+PackageName: Tensorflow Lite for Microcontrollers
+SPDXID: SPDXRef-tflite-micro-ea8db00ab35
+PackageVersion: ea8db00ab35
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: The Tensorflow Authors
+PackageOriginator: Organization: NOASSERTION
+PackageHomePage: https://github.com/tensorflow/tflite-micro
+ExternalRef: PACKAGE-MANAGER purl pkg:github/tensorflow/tflite-micro@ea8db00ab35
+PackageComment: Tensorflow Lite for Microcontrollers library as it was on GitHub, at commit hash ea8db00ab35
+## Relationships
+Relationship: SPDXRef-tflite-micro-ea8db00ab35 DESCENDANT_OF SPDXRef-silabs.aiml-2.2.0-tflite-micro
+
+## Package Information
+PackageName: MVPv1 Accelerated Kernels
+SPDXID: SPDXRef-silabs.aiml-2.2.0-tensorflow_lite_micro_accelerated_kernels
+PackageVersion: 2.2.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.aiml-2.2.0-tensorflow_lite_micro_accelerated_kernels CONTAINED_BY SPDXRef-silabs.aiml-2.2.0
+
+## Package Information
+PackageName: cmsis_dsp_rfft
+SPDXID: SPDXRef-silabs.aiml-2.2.0-ml_cmsis_dsp_rfft_q15
+PackageVersion: 2.2.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories Inc.
+PackageLicenseConcluded: Apache-2.0 AND Zlib
+## Relationships
+Relationship: SPDXRef-silabs.aiml-2.2.0-ml_cmsis_dsp_rfft_q15 CONTAINED_BY SPDXRef-silabs.aiml-2.2.0
+Relationship: SPDXRef-silabs.aiml-2.2.0-ml_cmsis_dsp_rfft_q15 ANCESTOR_OF SPDXRef-ml_cmsis_dsp_rfft_q15-1.15.0
+
+## Package Information
+PackageName: CMSIS-DSP
+SPDXID: SPDXRef-ml_cmsis_dsp_rfft_q15-1.15.0
+PackageVersion: 1.15.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: ARM-software
+PackageOriginator: Organization: NOASSERTION
+PackageHomePage: https://github.com/ARM-software/CMSIS-DSP
+ExternalRef: PACKAGE-MANAGER purl pkg:github/ARM-software/CMSIS-DSP@v1.15.0
+PackageComment: CMSIS DSP Library as packaged and released by ARM-software, version 1.15.0
+## Relationships
+Relationship: SPDXRef-ml_cmsis_dsp_rfft_q15-1.15.0 DESCENDANT_OF SPDXRef-silabs.aiml-2.2.0-ml_cmsis_dsp_rfft_q15
+
+## Package Information
+PackageName: Flatbuffers
+SPDXID: SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_flatbuffers
+PackageVersion: 2.2.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories Inc.
+PackageLicenseConcluded: Apache-2.0
+## Relationships
+Relationship: SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_flatbuffers CONTAINED_BY SPDXRef-silabs.aiml-2.2.0
+Relationship: SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_flatbuffers ANCESTOR_OF SPDXRef-tensorflow_dependency_flatbuffers-07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2
+
+## Package Information
+PackageName: Flatbuffers
+SPDXID: SPDXRef-tensorflow_dependency_flatbuffers-07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2
+PackageVersion: 07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Google Inc.
+PackageOriginator: Organization: NOASSERTION
+PackageHomePage: https://github.com/google/flatbuffers
+ExternalRef: PACKAGE-MANAGER purl pkg:github/google/flatbuffers@07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2
+PackageComment: Only "include/" folder copied from Flatbuffers GitHub repo, commit hash 07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2
+## Relationships
+Relationship: SPDXRef-tensorflow_dependency_flatbuffers-07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2 DESCENDANT_OF SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_flatbuffers
+
+## Package Information
+PackageName: Low Precision General Matrix Multiplication (GEMMLOWP)
+SPDXID: SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_gemmlowp
+PackageVersion: 2.2.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories Inc.
+PackageLicenseConcluded: Apache-2.0
+## Relationships
+Relationship: SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_gemmlowp CONTAINED_BY SPDXRef-silabs.aiml-2.2.0
+Relationship: SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_gemmlowp ANCESTOR_OF SPDXRef-tensorflow_dependency_gemmlowp-719139ce755a0
+
+## Package Information
+PackageName: Gemmlowp
+SPDXID: SPDXRef-tensorflow_dependency_gemmlowp-719139ce755a0
+PackageVersion: 719139ce755a0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: The Gemmlowp Authors
+PackageOriginator: Organization: NOASSERTION
+PackageHomePage: https://github.com/google/gemmlowp
+ExternalRef: PACKAGE-MANAGER purl pkg:github/google/gemmlowp@719139ce755a0
+PackageComment: Few header files copied from "fixedpoint" and "internal" folders from Gemmlowp GitHub repo, commit hash 719139ce755a0
+## Relationships
+Relationship: SPDXRef-tensorflow_dependency_gemmlowp-719139ce755a0 DESCENDANT_OF SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_gemmlowp
+
+## Package Information
+PackageName: Ruy Matrix Multiplication
+SPDXID: SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_ruy
+PackageVersion: 2.2.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories Inc.
+PackageLicenseConcluded: Apache-2.0
+## Relationships
+Relationship: SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_ruy CONTAINED_BY SPDXRef-silabs.aiml-2.2.0
+Relationship: SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_ruy ANCESTOR_OF SPDXRef-tensorflow_dependency_ruy-5bb02fbf90824
+
+## Package Information
+PackageName: Ruy
+SPDXID: SPDXRef-tensorflow_dependency_ruy-5bb02fbf90824
+PackageVersion: 5bb02fbf90824
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Google LLC
+PackageOriginator: Organization: NOASSERTION
+PackageHomePage: https://github.com/google/ruy
+ExternalRef: PACKAGE-MANAGER purl pkg:github/google/ruy@5bb02fbf90824
+PackageComment: Only profiler instrumentation header copied from GitHub repo, commit hash 5bb02fbf90824
+## Relationships
+Relationship: SPDXRef-tensorflow_dependency_ruy-5bb02fbf90824 DESCENDANT_OF SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_ruy
+
+## Package Information
+PackageName: Simplicity SDK Suite
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-EFR32MG26B510F3200IM68
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-app_assert
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_connection
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_gatt_server
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_legacy_advertiser
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_sm
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_system
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_stack
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-brd2608a
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-device_init
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-gatt_configuration
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-gatt_service_rht
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_recommended_stream
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_retarget_stdio
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-mpu
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-printf
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sensor_rht
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-si70xx_driver
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-simple_led
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sleeptimer
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-status
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol_rtos_adaptation
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-mic_i2s_driver
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_platform_manager
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-dmadrv_core
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-device_manager
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-led
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_eusart
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bit
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_driver_common
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_libraries
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-compute_util
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_init_hal_s2
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_system
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_trng
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-slist
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-nn_mvp
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel_port_armv8m
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_nn
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-device_gpio
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-device_dma
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_source
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default_config
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_crypto
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-driver_mvp
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_config
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_gcc_standard
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_configuration
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_prs
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_crypto
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-device_init_dcdc
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_pa_tables
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-enum
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_threading_alt_cmsis_rtos2
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_crypto_s2
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_core_impl_sleep_loop
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_retention_control
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_optimization_disable
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_protocol_crypto
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_memory_init
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-nn_util
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_gattdb_definition
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-atomic
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-code_classification
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-math
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_kernel
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_collections
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-configuration_over_swo
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_cpu_port_armv8m
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_builtin_bonding_database
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_compatible_pa
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_pool
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_pa
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_ldma
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_rtos_adaptation
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_core
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_os2_ext_task_register
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_device_compatibility
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_tick
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_cmu
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_host_release_libraries
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-errno_error_codes
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_syscfg
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_usart
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-trustzone_unaware
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_se_driver
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-hfxo_manager
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-dmadrv
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_common
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_i2c
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_rtos_description
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-device_peripheral_hal
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-interrupt_manager
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-ecode
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_uart_common
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_prs
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_driver
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_runtime
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_retention_control_hal
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_psec_osal
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-udelay
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-device_peripheral
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_mailbox
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_config
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_handler_implementation
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_common_libraries_release
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-simple_led_core
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_profiler_api
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-i2c_core
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-board_control
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_cpp
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-device_dma_hal
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_common
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_core
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-i2cspm_core
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol_libraries_release
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_slcrypto_driver
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_system
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_gpio
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_sequencer
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-event_handler
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_sysrtc_subsystem_host
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_region
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_msc
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_advertiser
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-device_i2c
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_crypto
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_built_in_phys
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_deepsleep
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_cpu
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-debug_swo
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_lib
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_util_features
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-interrupt_manager_cortexm
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_rtos_adaptation
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol_internal_chips_dummy
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_string
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-cpp_support
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_host_adaptation
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-mx25_flash_shutdown_eusart
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_syscalls
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_common
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_power_manager_init
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_gpio
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default_flash_backend
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_i2c
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol_alpha_chips
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_dsp
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-math_mvp
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-device_clock_hal
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_version
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_eusart
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-i2cspm
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_init
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_slcrypto
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_gcc
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_assert
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_headers
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-device_clock
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-component_catalog
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_emu
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-mic_driver
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_runtime_hal_s2
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_burtc
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-driver_mvp_hal_efr32
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_its
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_eusart
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-brd2608a_config
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_crypto
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_eusart_core
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_common
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel_port_generic
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_core
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_syscfg
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_core
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_core
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_sysrtc
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_variant_arm
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_timer
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_common
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-math_types
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_common
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_config
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_init
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_process_action
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1 CONTAINS SPDXRef-silabs.simplicity_sdk-2025.12.1-gpio
+
+## Package Information
+PackageName: EFR32MG26B510F3200IM68
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-EFR32MG26B510F3200IM68
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-EFR32MG26B510F3200IM68 CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Assert
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-app_assert
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-app_assert CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Connection
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_connection
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib AND MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_connection CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: GATT Server
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_gatt_server
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_gatt_server CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Legacy Advertising
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_legacy_advertiser
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_legacy_advertiser CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Security Manager
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_sm
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_sm CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: System
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_system
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_system CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Bluetooth Core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_stack
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib AND MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_stack CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: BRD2608A
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-brd2608a
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-brd2608a CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Clock Manager
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Automatic Device Initialization
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_init
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_init CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Static GATT Database and Configuration
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-gatt_configuration
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-gatt_configuration CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Environment Sensing - Relative Humidity and Temperature GATT Service
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-gatt_service_rht
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-gatt_service_rht CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: IO Stream: Recommended Stream
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_recommended_stream
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_recommended_stream CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: IO Stream: Retarget STDIO
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_retarget_stdio
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_retarget_stdio CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Memory Manager
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Micrium OS Kernel
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Simple MPU
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-mpu
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-mpu CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: NVM3 Default Instance
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Power Manager
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Tiny printf
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-printf
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MIT
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-printf CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Relative Humidity and Temperature sensor
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sensor_rht
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sensor_rht CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Si70xx - Temperature/Humidity Sensor
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-si70xx_driver
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-si70xx_driver CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Simple LED
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-simple_led
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-simple_led CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: System Setup (sl_main)
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Sleep Timer
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sleeptimer
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sleeptimer CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Status Codes Definitions
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-status
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-status CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: BGAPI Protocol RTOS adaptation
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol_rtos_adaptation
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib AND MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol_rtos_adaptation CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: I2S Microphone
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-mic_i2s_driver
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-mic_i2s_driver CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Micrium OS Common Platform Manager
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_platform_manager
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_platform_manager CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: DMADRV Core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-dmadrv_core
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-dmadrv_core CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Device Manager
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_manager
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_manager CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Generic LED API
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-led
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-led CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: EUSART
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_eusart
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_eusart CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Bit Operations Library
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bit
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bit CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: PSA Driver Common Source Code
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_driver_common
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_driver_common CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Bluetooth Low Energy Controller Library
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_libraries
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_libraries CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Compute utilities
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-compute_util
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-compute_util CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Clock Manager Init HAL Series 2
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_init_hal_s2
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_init_hal_s2 CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: SYSTEM
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_system
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_system CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: TRNG
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_trng
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_trng CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Single Link List
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-slist
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-slist CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: MVP NN
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-nn_mvp
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib and MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-nn_mvp CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Kernel port for ARMv8-M
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel_port_armv8m
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel_port_armv8m CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: CMSIS-NN
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_nn
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Apache-2.0
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_nn CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_nn ANCESTOR_OF SPDXRef-cmsis_nn-3f773cbf8f5
+
+## Package Information
+PackageName: CMSIS-NN
+SPDXID: SPDXRef-cmsis_nn-3f773cbf8f5
+PackageVersion: 3f773cbf8f5
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: ARM-software
+PackageOriginator: Organization: NOASSERTION
+PackageHomePage: https://github.com/ARM-software/CMSIS-NN
+ExternalRef: PACKAGE-MANAGER purl pkg:github/ARM-software/CMSIS-NN@3f773cbf8f5
+PackageComment: CMSIS NN Library as packaged and released by ARM-software, version 4.1.0, tag 23.08, commit hash 3f773cbf8f5
+## Relationships
+Relationship: SPDXRef-cmsis_nn-3f773cbf8f5 DESCENDANT_OF SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_nn
+
+## Package Information
+PackageName: Device Manager GPIO
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_gpio
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_gpio CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Device Manager DMA
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_dma
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_dma CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: NVM3 Core (source)
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_source
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_source CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: NVM3 Default Config
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default_config
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default_config CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Bluetooth Core Crypto Configuration
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_crypto
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_crypto CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: MVP Driver
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-driver_mvp
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-driver_mvp CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Configuration
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_config
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_config CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: GCC Toolchain Standard Linker
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_gcc_standard
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_gcc_standard CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: IO Stream
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Instantiation of Bluetooth configuration
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_configuration
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_configuration CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: PRS
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_prs
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_prs CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Crypto
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_crypto
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_crypto CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: DC-DC Converter
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_init_dcdc
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_init_dcdc CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: RAIL Utility, PA Tables
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_pa_tables
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_pa_tables CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Enumerations
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-enum
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-enum CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Silicon Labs Threading support Mbed TLS
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_threading_alt_cmsis_rtos2
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_threading_alt_cmsis_rtos2 CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Accelerated Crypto Primitives for Series-2 devices
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_crypto_s2
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_crypto_s2 CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Power Manager: Core implementation
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_core_impl_sleep_loop
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_core_impl_sleep_loop CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Memory Manager Retention Control
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_retention_control
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_retention_control CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: NVM3 disable optimization
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_optimization_disable
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_optimization_disable CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Accelerated Crypto Primitives (CRYPTO and RADIOAES)
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_protocol_crypto
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_protocol_crypto CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: sl_main Setup
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_memory_init
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_memory_init CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: NN Utilities
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-nn_util
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-nn_util CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Bluetooth GATT database structure definition
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_gattdb_definition
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_gattdb_definition CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Atomic Operations Library
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-atomic
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-atomic CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Code Classification
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-code_classification
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-code_classification CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Math
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-math
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-math CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: SL Main Kernel
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_kernel
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_kernel CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Micrium OS Common Collections
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_collections
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_collections CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Configuration Over SWO
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-configuration_over_swo
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-configuration_over_swo CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: CPU port for ARMv8-M
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_cpu_port_armv8m
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_cpu_port_armv8m CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: RAIL Library, Single Protocol
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Built-in Bluetooth bonding database
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_builtin_bonding_database
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_builtin_bonding_database CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: RAIL Utility, PA compatibility
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_compatible_pa
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_compatible_pa CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Memory Manager Memory Pool
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_pool
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_pool CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: RAIL Utility, PA (RAIL 3)
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_pa
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_pa CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: LDMA
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_ldma
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_ldma CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Bluetooth RTOS Adaptation
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_rtos_adaptation
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib AND MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_rtos_adaptation CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Micrium OS Common Module Core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_core
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_core CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Task registers abstraction layer
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_os2_ext_task_register
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_os2_ext_task_register CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Device compatibility defines for Bluetooth features
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_device_compatibility
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_device_compatibility CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: CMSIS-RTOS2 OS Tick
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_tick
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Apache 2.0
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_tick CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_tick ANCESTOR_OF SPDXRef-cmsis_rtos2_tick-5.8.0
+
+## Package Information
+PackageName: CMSIS_5
+SPDXID: SPDXRef-cmsis_rtos2_tick-5.8.0
+PackageVersion: 5.8.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: ARM-software
+PackageOriginator: Organization: NOASSERTION
+PackageHomePage: https://github.com/ARM-software/CMSIS_5
+ExternalRef: PACKAGE-MANAGER purl pkg:github/ARM-software/CMSIS_5@5.8.0
+PackageComment: The CMSIS is a set of tools, APIs, frameworks, and work flows
+## Relationships
+Relationship: SPDXRef-cmsis_rtos2_tick-5.8.0 DESCENDANT_OF SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_tick
+
+## Package Information
+PackageName: CMU
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_cmu
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_cmu CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Bluetooth Low Energy Host Library
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_host_release_libraries
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_host_release_libraries CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: errno error codes support
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-errno_error_codes
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-errno_error_codes CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: SYSCFG
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_syscfg
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_syscfg CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: USART
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_usart
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_usart CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: TrustZone Unaware
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-trustzone_unaware
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-trustzone_unaware CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: PSA SE Driver Source Code
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_se_driver
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_se_driver CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: HFXO Manager
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-hfxo_manager
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-hfxo_manager CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: DMADRV
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-dmadrv
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-dmadrv CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Common Headers
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_common
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_common CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: I2C
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_i2c
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_i2c CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: BGAPI Protocol
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib AND MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: RTOS Description
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_rtos_description
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_rtos_description CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Device Manager Peripheral HAL
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_peripheral_hal
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_peripheral_hal CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Interrupt Manager
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-interrupt_manager
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-interrupt_manager CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: EMDRV Common Headers
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-ecode
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-ecode CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: IO Stream: Common code for UART-type streams
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_uart_common
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_uart_common CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: PSA Crypto
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: PRS
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_prs
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_prs CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Drivers for Crypto Acceleration
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_driver
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_driver CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Clock Manager Runtime
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_runtime
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_runtime CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Memory Manager Retention Control HAL
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_retention_control_hal
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_retention_control_hal CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: OS Abstraction Layer
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_psec_osal
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_psec_osal CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Microsecond Delay
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-udelay
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-udelay CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Device Manager Peripheral
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_peripheral
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_peripheral CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: SE mailbox utilities
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_mailbox
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_mailbox CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Config
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_config
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_config CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Power Manager: Handler
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_handler_implementation
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_handler_implementation CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: bluetooth_common_libraries_release
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_common_libraries_release
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_common_libraries_release CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Simple LED Core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-simple_led_core
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-simple_led_core CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Memory Profiler API
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_profiler_api
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_profiler_api CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: I2C Core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-i2c_core
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-i2c_core CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Board Control
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-board_control
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-board_control CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Memory Manager C++ Support
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_cpp
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_cpp CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Device Manager DMA HAL
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_dma_hal
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_dma_hal CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Common APIs for CMSIS-Compliant Kernels
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_common
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_common CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Power Manager: Core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_core
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_core CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: I2CSPM Core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-i2cspm_core
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-i2cspm_core CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: BGAPI Protocol release libraries
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol_libraries_release
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol_libraries_release CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Drivers for Silicon Labs Crypto Acceleration
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_slcrypto_driver
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_slcrypto_driver CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: SYSTEM
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_system
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_system CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: RAIL Library, Core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: GPIO
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_gpio
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_gpio CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: SE Manager
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: RAIL Utility, Radio Sequencer Image Selection (RAIL 3)
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_sequencer
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_sequencer CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Bluetooth Low Energy Controller
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Event Handler
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-event_handler
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-event_handler CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: SYSRTC for Host Sub-System
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_sysrtc_subsystem_host
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_sysrtc_subsystem_host CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Memory Manager region
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_region
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_region CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: MSC
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_msc
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_msc CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Advertising Base Feature
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_advertiser
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib AND MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_advertiser CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Device Manager I2C
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_i2c
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_i2c CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Accelerated Crypto Primitives
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_crypto
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_crypto CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: RAIL Utility, Built-in PHYs Across HFXO Frequencies (RAIL 3)
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_built_in_phys
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_built_in_phys CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Power Manager: Deepsleep
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_deepsleep
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_deepsleep CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Micrium OS CPU Module
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_cpu
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_cpu CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: SWO Debug
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-debug_swo
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-debug_swo CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Micrium OS Common Libraries Module
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_lib
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_lib CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: RAIL Library Features, Core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_util_features
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_util_features CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Interrupt Manager Cortex-M
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-interrupt_manager_cortexm
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-interrupt_manager_cortexm CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Bluetooth Core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_rtos_adaptation
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_rtos_adaptation CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: RAIL Library, Single Protocol Internal Chips Dummy
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol_internal_chips_dummy
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol_internal_chips_dummy CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: String Functions
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_string
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_string CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Toolchain: C++ Support
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-cpp_support
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cpp_support CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: System adaptation layer used by the Bluetooth host stack
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_host_adaptation
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib AND MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_host_adaptation CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: MX25 Flash Shutdown with eusart
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-mx25_flash_shutdown_eusart
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-mx25_flash_shutdown_eusart CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: SystemCall Functions
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_syscalls
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_syscalls CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Bluetooth Low Energy Common Component
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_common
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_common CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: RAIL Utility, Power manager init (RAIL 3)
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_power_manager_init
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_power_manager_init CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: GPIO
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_gpio
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_gpio CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: NVM3 back-end for default instance in flash
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default_flash_backend
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default_flash_backend CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: I2C
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_i2c
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_i2c CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: RAIL Library, Single Protocol for Alpha Chips
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol_alpha_chips
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol_alpha_chips CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: CMSIS-DSP
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_dsp
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Apache-2.0
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_dsp CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_dsp ANCESTOR_OF SPDXRef-cmsis_dsp-1.15.0
+
+## Package Information
+PackageName: CMSIS-DSP
+SPDXID: SPDXRef-cmsis_dsp-1.15.0
+PackageVersion: 1.15.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: ARM-software
+PackageOriginator: Organization: NOASSERTION
+PackageHomePage: https://github.com/ARM-software/CMSIS-DSP
+ExternalRef: PACKAGE-MANAGER purl pkg:github/ARM-software/CMSIS-DSP@v1.15.0
+PackageComment: CMSIS DSP Library as packaged and released by ARM-software, version 1.15.0
+## Relationships
+Relationship: SPDXRef-cmsis_dsp-1.15.0 DESCENDANT_OF SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_dsp
+
+## Package Information
+PackageName: MVP Math
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-math_mvp
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-math_mvp CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Device Manager Clock HAL
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_clock_hal
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_clock_hal CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Bluetooth Version
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_version
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_version CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: IO Stream: EUSART
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_eusart
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_eusart CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: I2CSPM
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-i2cspm
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-i2cspm CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: CMSIS-RTOS2 Initialization
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_init
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Apache 2.0
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_init CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_init ANCESTOR_OF SPDXRef-cmsis_rtos2_init-5.8.0
+
+## Package Information
+PackageName: CMSIS_5
+SPDXID: SPDXRef-cmsis_rtos2_init-5.8.0
+PackageVersion: 5.8.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: ARM-software
+PackageOriginator: Organization: NOASSERTION
+PackageHomePage: https://github.com/ARM-software/CMSIS_5
+ExternalRef: PACKAGE-MANAGER purl pkg:github/ARM-software/CMSIS_5@5.8.0
+PackageComment: The CMSIS is a set of tools, APIs, frameworks, and work flows
+## Relationships
+Relationship: SPDXRef-cmsis_rtos2_init-5.8.0 DESCENDANT_OF SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_init
+
+## Package Information
+PackageName: Silicon Labs Mbed TLS support
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_slcrypto
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_slcrypto CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: GCC Toolchain
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_gcc
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_gcc CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Assert Functions
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_assert
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_assert CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: CMSIS-RTOS2 Headers
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_headers
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Apache 2.0
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_headers CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_headers ANCESTOR_OF SPDXRef-cmsis_rtos2_headers-5.8.0
+
+## Package Information
+PackageName: CMSIS_5
+SPDXID: SPDXRef-cmsis_rtos2_headers-5.8.0
+PackageVersion: 5.8.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: ARM-software
+PackageOriginator: Organization: NOASSERTION
+PackageHomePage: https://github.com/ARM-software/CMSIS_5
+ExternalRef: PACKAGE-MANAGER purl pkg:github/ARM-software/CMSIS_5@5.8.0
+PackageComment: The CMSIS is a set of tools, APIs, frameworks, and work flows.
+## Relationships
+Relationship: SPDXRef-cmsis_rtos2_headers-5.8.0 DESCENDANT_OF SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_headers
+
+## Package Information
+PackageName: Device Manager Clock
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_clock
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-device_clock CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Component Catalog
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-component_catalog
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-component_catalog CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: EMU
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_emu
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_emu CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Microphone
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-mic_driver
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-mic_driver CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Clock Manager Runtime HAL Series 2
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_runtime_hal_s2
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_runtime_hal_s2 CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: BURTC
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_burtc
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_burtc CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: MVP HAL Driver for EFR32 parts
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-driver_mvp_hal_efr32
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-driver_mvp_hal_efr32 CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: PSA Persistent Storage Support (ITS)
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_its
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_its CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: EUSART
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_eusart
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_eusart CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: brd2608a config
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-brd2608a_config
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-brd2608a_config CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Bluetooth Core Crypto Configuration for Controller
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_crypto
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_crypto CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: IO Stream: EUSART Core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_eusart_core
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_eusart_core CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Common Headers
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_common
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_common CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Kernel port generic
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel_port_generic
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: MSLA
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel_port_generic CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_core
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_core CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: SYSCFG
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_syscfg
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_syscfg CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: CMSIS-Core
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_core
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Apache 2.0
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_core CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_core ANCESTOR_OF SPDXRef-cmsis_core-5.8.0
+
+## Package Information
+PackageName: CMSIS_5
+SPDXID: SPDXRef-cmsis_core-5.8.0
+PackageVersion: 5.8.0
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: ARM-software
+PackageOriginator: Organization: NOASSERTION
+PackageHomePage: https://github.com/ARM-software/CMSIS_5
+ExternalRef: PACKAGE-MANAGER purl pkg:github/ARM-software/CMSIS_5@5.8.0
+PackageComment: The CMSIS is a set of tools, APIs, frameworks, and work flows
+## Relationships
+Relationship: SPDXRef-cmsis_core-5.8.0 DESCENDANT_OF SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_core
+
+## Package Information
+PackageName: CORE
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_core
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_core CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: SYSRTC
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_sysrtc
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_sysrtc CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Toolchain for ARM
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_variant_arm
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_variant_arm CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: TIMER
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_timer
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_timer CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: PSA Crypto Common
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_common
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_common CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Math Types
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-math_types
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-math_types CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Common Functions
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_common
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_common CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: Configuration
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_config
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_config CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: sl main Init
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_init
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_init CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: sl_main Process Action
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_process_action
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_process_action CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
+
+## Package Information
+PackageName: GPIO Driver
+SPDXID: SPDXRef-silabs.simplicity_sdk-2025.12.1-gpio
+PackageVersion: 2025.12.1
+PrimaryPackagePurpose: LIBRARY
+PackageDownloadLocation: NOASSERTION
+PackageSupplier: Organization: Silicon Laboratories, Inc.
+PackageLicenseConcluded: Zlib
+## Relationships
+Relationship: SPDXRef-silabs.simplicity_sdk-2025.12.1-gpio CONTAINED_BY SPDXRef-silabs.simplicity_sdk-2025.12.1
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sbom/spdx_bom.spdx.json b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sbom/spdx_bom.spdx.json
new file mode 100644
index 000000000..890bdd63f
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sbom/spdx_bom.spdx.json
@@ -0,0 +1,2749 @@
+{
+ "SPDXID" : "SPDXRef-DOCUMENT",
+ "spdxVersion" : "SPDX-2.3",
+ "dataLicense" : "CC0-1.0",
+ "name" : "Silicon-Laboratories",
+ "documentNamespace" : "https://silabs.com",
+ "creationInfo" : {
+ "created" : "2026-04-09T10:15:55Z",
+ "creators" : [ "Tool: Silicon Labs Configuration Tooling" ]
+ },
+ "comment" : "TERMS OF USE - SILICON LABORATORIES INC.\n(With respect to Silicon Labs software components, this Software Bill of Materials (SBOM) is based upon Silicon Labs'\nreview and analysis of the code version when released. It is provided \"AS IS\" and does not modify, change or alter\nthe terms or conditions of your use of Silicon Labs' software and/or SDKs based upon license terms and/or agreements\nassociated with this software or SDKs when distributed to you, received by you, or installed by you. Further, no\nwarranties or obligations are created by this SBOM. It is your obligation to comply with the terms of licenses\nreferenced in this SBOM.)",
+ "documentDescribes" : [ "SPDXRef-silabs.aiml-2.2.0", "SPDXRef-silabs.simplicity_sdk-2025.12.1" ],
+ "packages" : [ {
+ "SPDXID" : "SPDXRef-silabs.aiml-2.2.0",
+ "name" : "Silicon Labs AI/ML",
+ "versionInfo" : "2.2.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories Inc."
+ }, {
+ "SPDXID" : "SPDXRef-silabs.aiml-2.2.0-ml_audio_feature_generation",
+ "name" : "Audio Feature Generator",
+ "versionInfo" : "2.2.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories Inc.",
+ "licenseConcluded" : "Zlib AND Apache-2.0"
+ }, {
+ "SPDXID" : "SPDXRef-ml_audio_feature_generation-2.3.1",
+ "name" : "Microfrontend",
+ "versionInfo" : "2.3.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: The Tensorflow Authors",
+ "originator" : "Organization: NOASSERTION",
+ "homepage" : "https://github.com/tensorflow/tensorflow/tree/master/tensorflow/lite/experimental/microfrontend",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceLocator" : "pkg:github/tensorflow/tensorflow@v2.3.1",
+ "referenceType" : "purl"
+ } ],
+ "comment" : "Microfrontend library to process audio that lives within the tensorflow repo on GitHub, version 2.3.1"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_debug_log_iostream",
+ "name" : "Debug Logging using IO Stream",
+ "versionInfo" : "2.2.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.aiml-2.2.0-tflite-micro",
+ "name" : "TensorFlow Lite Micro",
+ "versionInfo" : "2.2.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories Inc.",
+ "licenseConcluded" : "Apache-2.0 AND MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-tflite-micro-ea8db00ab35",
+ "name" : "Tensorflow Lite for Microcontrollers",
+ "versionInfo" : "ea8db00ab35",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: The Tensorflow Authors",
+ "originator" : "Organization: NOASSERTION",
+ "homepage" : "https://github.com/tensorflow/tflite-micro",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceLocator" : "pkg:github/tensorflow/tflite-micro@ea8db00ab35",
+ "referenceType" : "purl"
+ } ],
+ "comment" : "Tensorflow Lite for Microcontrollers library as it was on GitHub, at commit hash ea8db00ab35"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_lite_micro_accelerated_kernels",
+ "name" : "MVPv1 Accelerated Kernels",
+ "versionInfo" : "2.2.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.aiml-2.2.0-ml_cmsis_dsp_rfft_q15",
+ "name" : "cmsis_dsp_rfft",
+ "versionInfo" : "2.2.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories Inc.",
+ "licenseConcluded" : "Apache-2.0 AND Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-ml_cmsis_dsp_rfft_q15-1.15.0",
+ "name" : "CMSIS-DSP",
+ "versionInfo" : "1.15.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: ARM-software",
+ "originator" : "Organization: NOASSERTION",
+ "homepage" : "https://github.com/ARM-software/CMSIS-DSP",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceLocator" : "pkg:github/ARM-software/CMSIS-DSP@v1.15.0",
+ "referenceType" : "purl"
+ } ],
+ "comment" : "CMSIS DSP Library as packaged and released by ARM-software, version 1.15.0"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_flatbuffers",
+ "name" : "Flatbuffers",
+ "versionInfo" : "2.2.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories Inc.",
+ "licenseConcluded" : "Apache-2.0"
+ }, {
+ "SPDXID" : "SPDXRef-tensorflow_dependency_flatbuffers-07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2",
+ "name" : "Flatbuffers",
+ "versionInfo" : "07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Google Inc.",
+ "originator" : "Organization: NOASSERTION",
+ "homepage" : "https://github.com/google/flatbuffers",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceLocator" : "pkg:github/google/flatbuffers@07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2",
+ "referenceType" : "purl"
+ } ],
+ "comment" : "Only \"include/\" folder copied from Flatbuffers GitHub repo, commit hash 07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_gemmlowp",
+ "name" : "Low Precision General Matrix Multiplication (GEMMLOWP)",
+ "versionInfo" : "2.2.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories Inc.",
+ "licenseConcluded" : "Apache-2.0"
+ }, {
+ "SPDXID" : "SPDXRef-tensorflow_dependency_gemmlowp-719139ce755a0",
+ "name" : "Gemmlowp",
+ "versionInfo" : "719139ce755a0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: The Gemmlowp Authors",
+ "originator" : "Organization: NOASSERTION",
+ "homepage" : "https://github.com/google/gemmlowp",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceLocator" : "pkg:github/google/gemmlowp@719139ce755a0",
+ "referenceType" : "purl"
+ } ],
+ "comment" : "Few header files copied from \"fixedpoint\" and \"internal\" folders from Gemmlowp GitHub repo, commit hash 719139ce755a0"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_ruy",
+ "name" : "Ruy Matrix Multiplication",
+ "versionInfo" : "2.2.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories Inc.",
+ "licenseConcluded" : "Apache-2.0"
+ }, {
+ "SPDXID" : "SPDXRef-tensorflow_dependency_ruy-5bb02fbf90824",
+ "name" : "Ruy",
+ "versionInfo" : "5bb02fbf90824",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Google LLC",
+ "originator" : "Organization: NOASSERTION",
+ "homepage" : "https://github.com/google/ruy",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceLocator" : "pkg:github/google/ruy@5bb02fbf90824",
+ "referenceType" : "purl"
+ } ],
+ "comment" : "Only profiler instrumentation header copied from GitHub repo, commit hash 5bb02fbf90824"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "name" : "Simplicity SDK Suite",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc."
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-EFR32MG26B510F3200IM68",
+ "name" : "EFR32MG26B510F3200IM68",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-app_assert",
+ "name" : "Assert",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_connection",
+ "name" : "Connection",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib AND MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_gatt_server",
+ "name" : "GATT Server",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_legacy_advertiser",
+ "name" : "Legacy Advertising",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_sm",
+ "name" : "Security Manager",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_system",
+ "name" : "System",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_stack",
+ "name" : "Bluetooth Core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib AND MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-brd2608a",
+ "name" : "BRD2608A",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager",
+ "name" : "Clock Manager",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_init",
+ "name" : "Automatic Device Initialization",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-gatt_configuration",
+ "name" : "Static GATT Database and Configuration",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-gatt_service_rht",
+ "name" : "Environment Sensing - Relative Humidity and Temperature GATT Service",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_recommended_stream",
+ "name" : "IO Stream: Recommended Stream",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_retarget_stdio",
+ "name" : "IO Stream: Retarget STDIO",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager",
+ "name" : "Memory Manager",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel",
+ "name" : "Micrium OS Kernel",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mpu",
+ "name" : "Simple MPU",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default",
+ "name" : "NVM3 Default Instance",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager",
+ "name" : "Power Manager",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-printf",
+ "name" : "Tiny printf",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MIT"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sensor_rht",
+ "name" : "Relative Humidity and Temperature sensor",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-si70xx_driver",
+ "name" : "Si70xx - Temperature/Humidity Sensor",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-simple_led",
+ "name" : "Simple LED",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main",
+ "name" : "System Setup (sl_main)",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sleeptimer",
+ "name" : "Sleep Timer",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-status",
+ "name" : "Status Codes Definitions",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol_rtos_adaptation",
+ "name" : "BGAPI Protocol RTOS adaptation",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib AND MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mic_i2s_driver",
+ "name" : "I2S Microphone",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_platform_manager",
+ "name" : "Micrium OS Common Platform Manager",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-dmadrv_core",
+ "name" : "DMADRV Core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_manager",
+ "name" : "Device Manager",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-led",
+ "name" : "Generic LED API",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_eusart",
+ "name" : "EUSART",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bit",
+ "name" : "Bit Operations Library",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_driver_common",
+ "name" : "PSA Driver Common Source Code",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_libraries",
+ "name" : "Bluetooth Low Energy Controller Library",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-compute_util",
+ "name" : "Compute utilities",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_init_hal_s2",
+ "name" : "Clock Manager Init HAL Series 2",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_system",
+ "name" : "SYSTEM",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_trng",
+ "name" : "TRNG",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-slist",
+ "name" : "Single Link List",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nn_mvp",
+ "name" : "MVP NN",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib and MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel_port_armv8m",
+ "name" : "Kernel port for ARMv8-M",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_nn",
+ "name" : "CMSIS-NN",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Apache-2.0"
+ }, {
+ "SPDXID" : "SPDXRef-cmsis_nn-3f773cbf8f5",
+ "name" : "CMSIS-NN",
+ "versionInfo" : "3f773cbf8f5",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: ARM-software",
+ "originator" : "Organization: NOASSERTION",
+ "homepage" : "https://github.com/ARM-software/CMSIS-NN",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceLocator" : "pkg:github/ARM-software/CMSIS-NN@3f773cbf8f5",
+ "referenceType" : "purl"
+ } ],
+ "comment" : "CMSIS NN Library as packaged and released by ARM-software, version 4.1.0, tag 23.08, commit hash 3f773cbf8f5"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_gpio",
+ "name" : "Device Manager GPIO",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_dma",
+ "name" : "Device Manager DMA",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_source",
+ "name" : "NVM3 Core (source)",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default_config",
+ "name" : "NVM3 Default Config",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_crypto",
+ "name" : "Bluetooth Core Crypto Configuration",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-driver_mvp",
+ "name" : "MVP Driver",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_config",
+ "name" : "Configuration",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_gcc_standard",
+ "name" : "GCC Toolchain Standard Linker",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream",
+ "name" : "IO Stream",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_configuration",
+ "name" : "Instantiation of Bluetooth configuration",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_prs",
+ "name" : "PRS",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_crypto",
+ "name" : "Crypto",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_init_dcdc",
+ "name" : "DC-DC Converter",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_pa_tables",
+ "name" : "RAIL Utility, PA Tables",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-enum",
+ "name" : "Enumerations",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_threading_alt_cmsis_rtos2",
+ "name" : "Silicon Labs Threading support Mbed TLS",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_crypto_s2",
+ "name" : "Accelerated Crypto Primitives for Series-2 devices",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_core_impl_sleep_loop",
+ "name" : "Power Manager: Core implementation",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_retention_control",
+ "name" : "Memory Manager Retention Control",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_optimization_disable",
+ "name" : "NVM3 disable optimization",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_protocol_crypto",
+ "name" : "Accelerated Crypto Primitives (CRYPTO and RADIOAES)",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_memory_init",
+ "name" : "sl_main Setup",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nn_util",
+ "name" : "NN Utilities",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_gattdb_definition",
+ "name" : "Bluetooth GATT database structure definition",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-atomic",
+ "name" : "Atomic Operations Library",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-code_classification",
+ "name" : "Code Classification",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-math",
+ "name" : "Math",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_kernel",
+ "name" : "SL Main Kernel",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_collections",
+ "name" : "Micrium OS Common Collections",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-configuration_over_swo",
+ "name" : "Configuration Over SWO",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_cpu_port_armv8m",
+ "name" : "CPU port for ARMv8-M",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol",
+ "name" : "RAIL Library, Single Protocol",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_builtin_bonding_database",
+ "name" : "Built-in Bluetooth bonding database",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_compatible_pa",
+ "name" : "RAIL Utility, PA compatibility",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_pool",
+ "name" : "Memory Manager Memory Pool",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_pa",
+ "name" : "RAIL Utility, PA (RAIL 3)",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_ldma",
+ "name" : "LDMA",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_rtos_adaptation",
+ "name" : "Bluetooth RTOS Adaptation",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib AND MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_core",
+ "name" : "Micrium OS Common Module Core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_os2_ext_task_register",
+ "name" : "Task registers abstraction layer",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_device_compatibility",
+ "name" : "Device compatibility defines for Bluetooth features",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_tick",
+ "name" : "CMSIS-RTOS2 OS Tick",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Apache 2.0"
+ }, {
+ "SPDXID" : "SPDXRef-cmsis_rtos2_tick-5.8.0",
+ "name" : "CMSIS_5",
+ "versionInfo" : "5.8.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: ARM-software",
+ "originator" : "Organization: NOASSERTION",
+ "homepage" : "https://github.com/ARM-software/CMSIS_5",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceLocator" : "pkg:github/ARM-software/CMSIS_5@5.8.0",
+ "referenceType" : "purl"
+ } ],
+ "comment" : "The CMSIS is a set of tools, APIs, frameworks, and work flows"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_cmu",
+ "name" : "CMU",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_host_release_libraries",
+ "name" : "Bluetooth Low Energy Host Library",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-errno_error_codes",
+ "name" : "errno error codes support",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_syscfg",
+ "name" : "SYSCFG",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_usart",
+ "name" : "USART",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-trustzone_unaware",
+ "name" : "TrustZone Unaware",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_se_driver",
+ "name" : "PSA SE Driver Source Code",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hfxo_manager",
+ "name" : "HFXO Manager",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-dmadrv",
+ "name" : "DMADRV",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_common",
+ "name" : "Common Headers",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_i2c",
+ "name" : "I2C",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol",
+ "name" : "BGAPI Protocol",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib AND MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_rtos_description",
+ "name" : "RTOS Description",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_peripheral_hal",
+ "name" : "Device Manager Peripheral HAL",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-interrupt_manager",
+ "name" : "Interrupt Manager",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-ecode",
+ "name" : "EMDRV Common Headers",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_uart_common",
+ "name" : "IO Stream: Common code for UART-type streams",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto",
+ "name" : "PSA Crypto",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_prs",
+ "name" : "PRS",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_driver",
+ "name" : "Drivers for Crypto Acceleration",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_runtime",
+ "name" : "Clock Manager Runtime",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_retention_control_hal",
+ "name" : "Memory Manager Retention Control HAL",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_psec_osal",
+ "name" : "OS Abstraction Layer",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-udelay",
+ "name" : "Microsecond Delay",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_peripheral",
+ "name" : "Device Manager Peripheral",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_mailbox",
+ "name" : "SE mailbox utilities",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_config",
+ "name" : "Config",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_handler_implementation",
+ "name" : "Power Manager: Handler",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_common_libraries_release",
+ "name" : "bluetooth_common_libraries_release",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-simple_led_core",
+ "name" : "Simple LED Core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_profiler_api",
+ "name" : "Memory Profiler API",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-i2c_core",
+ "name" : "I2C Core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-board_control",
+ "name" : "Board Control",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_cpp",
+ "name" : "Memory Manager C++ Support",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_dma_hal",
+ "name" : "Device Manager DMA HAL",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_common",
+ "name" : "Common APIs for CMSIS-Compliant Kernels",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_core",
+ "name" : "Power Manager: Core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-i2cspm_core",
+ "name" : "I2CSPM Core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol_libraries_release",
+ "name" : "BGAPI Protocol release libraries",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_slcrypto_driver",
+ "name" : "Drivers for Silicon Labs Crypto Acceleration",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_system",
+ "name" : "SYSTEM",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib",
+ "name" : "RAIL Library, Core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_gpio",
+ "name" : "GPIO",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager",
+ "name" : "SE Manager",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_sequencer",
+ "name" : "RAIL Utility, Radio Sequencer Image Selection (RAIL 3)",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller",
+ "name" : "Bluetooth Low Energy Controller",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-event_handler",
+ "name" : "Event Handler",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_sysrtc_subsystem_host",
+ "name" : "SYSRTC for Host Sub-System",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_region",
+ "name" : "Memory Manager region",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_msc",
+ "name" : "MSC",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_advertiser",
+ "name" : "Advertising Base Feature",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib AND MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_i2c",
+ "name" : "Device Manager I2C",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_crypto",
+ "name" : "Accelerated Crypto Primitives",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_built_in_phys",
+ "name" : "RAIL Utility, Built-in PHYs Across HFXO Frequencies (RAIL 3)",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_deepsleep",
+ "name" : "Power Manager: Deepsleep",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_cpu",
+ "name" : "Micrium OS CPU Module",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-debug_swo",
+ "name" : "SWO Debug",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_lib",
+ "name" : "Micrium OS Common Libraries Module",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_util_features",
+ "name" : "RAIL Library Features, Core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-interrupt_manager_cortexm",
+ "name" : "Interrupt Manager Cortex-M",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_rtos_adaptation",
+ "name" : "Bluetooth Core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol_internal_chips_dummy",
+ "name" : "RAIL Library, Single Protocol Internal Chips Dummy",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_string",
+ "name" : "String Functions",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cpp_support",
+ "name" : "Toolchain: C++ Support",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_host_adaptation",
+ "name" : "System adaptation layer used by the Bluetooth host stack",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib AND MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mx25_flash_shutdown_eusart",
+ "name" : "MX25 Flash Shutdown with eusart",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_syscalls",
+ "name" : "SystemCall Functions",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_common",
+ "name" : "Bluetooth Low Energy Common Component",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_power_manager_init",
+ "name" : "RAIL Utility, Power manager init (RAIL 3)",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_gpio",
+ "name" : "GPIO",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default_flash_backend",
+ "name" : "NVM3 back-end for default instance in flash",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_i2c",
+ "name" : "I2C",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol_alpha_chips",
+ "name" : "RAIL Library, Single Protocol for Alpha Chips",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_dsp",
+ "name" : "CMSIS-DSP",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Apache-2.0"
+ }, {
+ "SPDXID" : "SPDXRef-cmsis_dsp-1.15.0",
+ "name" : "CMSIS-DSP",
+ "versionInfo" : "1.15.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: ARM-software",
+ "originator" : "Organization: NOASSERTION",
+ "homepage" : "https://github.com/ARM-software/CMSIS-DSP",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceLocator" : "pkg:github/ARM-software/CMSIS-DSP@v1.15.0",
+ "referenceType" : "purl"
+ } ],
+ "comment" : "CMSIS DSP Library as packaged and released by ARM-software, version 1.15.0"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-math_mvp",
+ "name" : "MVP Math",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_clock_hal",
+ "name" : "Device Manager Clock HAL",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_version",
+ "name" : "Bluetooth Version",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_eusart",
+ "name" : "IO Stream: EUSART",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-i2cspm",
+ "name" : "I2CSPM",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_init",
+ "name" : "CMSIS-RTOS2 Initialization",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Apache 2.0"
+ }, {
+ "SPDXID" : "SPDXRef-cmsis_rtos2_init-5.8.0",
+ "name" : "CMSIS_5",
+ "versionInfo" : "5.8.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: ARM-software",
+ "originator" : "Organization: NOASSERTION",
+ "homepage" : "https://github.com/ARM-software/CMSIS_5",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceLocator" : "pkg:github/ARM-software/CMSIS_5@5.8.0",
+ "referenceType" : "purl"
+ } ],
+ "comment" : "The CMSIS is a set of tools, APIs, frameworks, and work flows"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_slcrypto",
+ "name" : "Silicon Labs Mbed TLS support",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_gcc",
+ "name" : "GCC Toolchain",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_assert",
+ "name" : "Assert Functions",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_headers",
+ "name" : "CMSIS-RTOS2 Headers",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Apache 2.0"
+ }, {
+ "SPDXID" : "SPDXRef-cmsis_rtos2_headers-5.8.0",
+ "name" : "CMSIS_5",
+ "versionInfo" : "5.8.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: ARM-software",
+ "originator" : "Organization: NOASSERTION",
+ "homepage" : "https://github.com/ARM-software/CMSIS_5",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceLocator" : "pkg:github/ARM-software/CMSIS_5@5.8.0",
+ "referenceType" : "purl"
+ } ],
+ "comment" : "The CMSIS is a set of tools, APIs, frameworks, and work flows."
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_clock",
+ "name" : "Device Manager Clock",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-component_catalog",
+ "name" : "Component Catalog",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_emu",
+ "name" : "EMU",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mic_driver",
+ "name" : "Microphone",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_runtime_hal_s2",
+ "name" : "Clock Manager Runtime HAL Series 2",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_burtc",
+ "name" : "BURTC",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-driver_mvp_hal_efr32",
+ "name" : "MVP HAL Driver for EFR32 parts",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_its",
+ "name" : "PSA Persistent Storage Support (ITS)",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_eusart",
+ "name" : "EUSART",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-brd2608a_config",
+ "name" : "brd2608a config",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_crypto",
+ "name" : "Bluetooth Core Crypto Configuration for Controller",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_eusart_core",
+ "name" : "IO Stream: EUSART Core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_common",
+ "name" : "Common Headers",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel_port_generic",
+ "name" : "Kernel port generic",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "MSLA"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_core",
+ "name" : "core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_syscfg",
+ "name" : "SYSCFG",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_core",
+ "name" : "CMSIS-Core",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Apache 2.0"
+ }, {
+ "SPDXID" : "SPDXRef-cmsis_core-5.8.0",
+ "name" : "CMSIS_5",
+ "versionInfo" : "5.8.0",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: ARM-software",
+ "originator" : "Organization: NOASSERTION",
+ "homepage" : "https://github.com/ARM-software/CMSIS_5",
+ "externalRefs" : [ {
+ "referenceCategory" : "PACKAGE-MANAGER",
+ "referenceLocator" : "pkg:github/ARM-software/CMSIS_5@5.8.0",
+ "referenceType" : "purl"
+ } ],
+ "comment" : "The CMSIS is a set of tools, APIs, frameworks, and work flows"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_core",
+ "name" : "CORE",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_sysrtc",
+ "name" : "SYSRTC",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_variant_arm",
+ "name" : "Toolchain for ARM",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_timer",
+ "name" : "TIMER",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_common",
+ "name" : "PSA Crypto Common",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-math_types",
+ "name" : "Math Types",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_common",
+ "name" : "Common Functions",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_config",
+ "name" : "Configuration",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_init",
+ "name" : "sl main Init",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_process_action",
+ "name" : "sl_main Process Action",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ }, {
+ "SPDXID" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-gpio",
+ "name" : "GPIO Driver",
+ "versionInfo" : "2025.12.1",
+ "primaryPackagePurpose" : "LIBRARY",
+ "downloadLocation" : "NOASSERTION",
+ "supplier" : "Organization: Silicon Laboratories, Inc.",
+ "licenseConcluded" : "Zlib"
+ } ],
+ "relationships" : [ {
+ "spdxElementId" : "SPDXRef-DOCUMENT",
+ "relatedSpdxElement" : "SPDXRef-silabs.aiml-2.2.0",
+ "relationshipType" : "DESCRIBES"
+ }, {
+ "spdxElementId" : "SPDXRef-DOCUMENT",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relationshipType" : "DESCRIBES"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0",
+ "relatedSpdxElement" : "SPDXRef-silabs.aiml-2.2.0-ml_audio_feature_generation",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0-ml_audio_feature_generation",
+ "relatedSpdxElement" : "SPDXRef-ml_audio_feature_generation-2.3.1",
+ "relationshipType" : "ANCESTOR_OF"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0",
+ "relatedSpdxElement" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_debug_log_iostream",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0",
+ "relatedSpdxElement" : "SPDXRef-silabs.aiml-2.2.0-tflite-micro",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0-tflite-micro",
+ "relatedSpdxElement" : "SPDXRef-tflite-micro-ea8db00ab35",
+ "relationshipType" : "ANCESTOR_OF"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0",
+ "relatedSpdxElement" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_lite_micro_accelerated_kernels",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0",
+ "relatedSpdxElement" : "SPDXRef-silabs.aiml-2.2.0-ml_cmsis_dsp_rfft_q15",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0-ml_cmsis_dsp_rfft_q15",
+ "relatedSpdxElement" : "SPDXRef-ml_cmsis_dsp_rfft_q15-1.15.0",
+ "relationshipType" : "ANCESTOR_OF"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0",
+ "relatedSpdxElement" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_flatbuffers",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_flatbuffers",
+ "relatedSpdxElement" : "SPDXRef-tensorflow_dependency_flatbuffers-07a8b5cb5a1085b7a3d7348ca547ec2643ca18c2",
+ "relationshipType" : "ANCESTOR_OF"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0",
+ "relatedSpdxElement" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_gemmlowp",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_gemmlowp",
+ "relatedSpdxElement" : "SPDXRef-tensorflow_dependency_gemmlowp-719139ce755a0",
+ "relationshipType" : "ANCESTOR_OF"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0",
+ "relatedSpdxElement" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_ruy",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.aiml-2.2.0-tensorflow_dependency_ruy",
+ "relatedSpdxElement" : "SPDXRef-tensorflow_dependency_ruy-5bb02fbf90824",
+ "relationshipType" : "ANCESTOR_OF"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-EFR32MG26B510F3200IM68",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-app_assert",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_connection",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_gatt_server",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_legacy_advertiser",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_sm",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_system",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_stack",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-brd2608a",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_init",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-gatt_configuration",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-gatt_service_rht",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_recommended_stream",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_retarget_stdio",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mpu",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-printf",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sensor_rht",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-si70xx_driver",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-simple_led",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sleeptimer",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-status",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol_rtos_adaptation",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mic_i2s_driver",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_platform_manager",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-dmadrv_core",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_manager",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-led",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_eusart",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bit",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_driver_common",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_libraries",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-compute_util",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_init_hal_s2",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_system",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_trng",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-slist",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nn_mvp",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel_port_armv8m",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_nn",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_nn",
+ "relatedSpdxElement" : "SPDXRef-cmsis_nn-3f773cbf8f5",
+ "relationshipType" : "ANCESTOR_OF"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_gpio",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_dma",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_source",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default_config",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_crypto",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-driver_mvp",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_config",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_gcc_standard",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_configuration",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_prs",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_crypto",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_init_dcdc",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_pa_tables",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-enum",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_threading_alt_cmsis_rtos2",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_crypto_s2",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_core_impl_sleep_loop",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_retention_control",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_optimization_disable",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_protocol_crypto",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_memory_init",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nn_util",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_gattdb_definition",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-atomic",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-code_classification",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-math",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_kernel",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_collections",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-configuration_over_swo",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_cpu_port_armv8m",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_builtin_bonding_database",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_compatible_pa",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_pool",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_pa",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_ldma",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_rtos_adaptation",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_core",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_os2_ext_task_register",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_device_compatibility",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_tick",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_tick",
+ "relatedSpdxElement" : "SPDXRef-cmsis_rtos2_tick-5.8.0",
+ "relationshipType" : "ANCESTOR_OF"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_cmu",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_host_release_libraries",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-errno_error_codes",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_syscfg",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_usart",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-trustzone_unaware",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_se_driver",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hfxo_manager",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-dmadrv",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_common",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_i2c",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_rtos_description",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_peripheral_hal",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-interrupt_manager",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-ecode",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_uart_common",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_prs",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_driver",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_runtime",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_retention_control_hal",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_psec_osal",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-udelay",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_peripheral",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_mailbox",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager_config",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_handler_implementation",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_common_libraries_release",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-simple_led_core",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_profiler_api",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-i2c_core",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-board_control",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_cpp",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_dma_hal",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_common",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_core",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-i2cspm_core",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bgapi_protocol_libraries_release",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_slcrypto_driver",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_system",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_gpio",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-se_manager",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_sequencer",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-event_handler",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_sysrtc_subsystem_host",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-memory_manager_region",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_msc",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_feature_advertiser",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_i2c",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sli_crypto",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_built_in_phys",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-power_manager_deepsleep",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_cpu",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-debug_swo",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_common_lib",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_util_features",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-interrupt_manager_cortexm",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_rtos_adaptation",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol_internal_chips_dummy",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_string",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cpp_support",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_host_adaptation",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mx25_flash_shutdown_eusart",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_syscalls",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_common",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_rail_util_power_manager_init",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_gpio",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-nvm3_default_flash_backend",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_i2c",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-rail_lib_singleprotocol_alpha_chips",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_dsp",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_dsp",
+ "relatedSpdxElement" : "SPDXRef-cmsis_dsp-1.15.0",
+ "relationshipType" : "ANCESTOR_OF"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-math_mvp",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_clock_hal",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_version",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_eusart",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-i2cspm",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_init",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_init",
+ "relatedSpdxElement" : "SPDXRef-cmsis_rtos2_init-5.8.0",
+ "relationshipType" : "ANCESTOR_OF"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_slcrypto",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_gcc",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_assert",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_headers",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_rtos2_headers",
+ "relatedSpdxElement" : "SPDXRef-cmsis_rtos2_headers-5.8.0",
+ "relationshipType" : "ANCESTOR_OF"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-device_clock",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-component_catalog",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_emu",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mic_driver",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-clock_manager_runtime_hal_s2",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_burtc",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-driver_mvp_hal_efr32",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_its",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_eusart",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-brd2608a_config",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-bluetooth_controller_crypto",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-iostream_eusart_core",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_common",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-micriumos_kernel_port_generic",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_core",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_syscfg",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_core",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-cmsis_core",
+ "relatedSpdxElement" : "SPDXRef-cmsis_core-5.8.0",
+ "relationshipType" : "ANCESTOR_OF"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_core",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-hal_sysrtc",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-toolchain_variant_arm",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-emlib_timer",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-psa_crypto_common",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-math_types",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_common",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-mbedtls_config",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_init",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-sl_main_process_action",
+ "relationshipType" : "CONTAINS"
+ }, {
+ "spdxElementId" : "SPDXRef-silabs.simplicity_sdk-2025.12.1",
+ "relatedSpdxElement" : "SPDXRef-silabs.simplicity_sdk-2025.12.1-gpio",
+ "relationshipType" : "CONTAINS"
+ } ]
+}
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_bluetooth.c b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_bluetooth.c
new file mode 100644
index 000000000..14807bfe0
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_bluetooth.c
@@ -0,0 +1,96 @@
+/***************************************************************************//**
+ * @file
+ * @brief Bluetooth initialization and event processing
+ *******************************************************************************
+ * # License
+ * Copyright 2024 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied warranty.
+ * In no event will the authors be held liable for any damages arising from the
+ * use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software in a
+ * product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#include
+#include "sl_bluetooth.h"
+#include "sli_bt_api.h"
+#include "sli_bgapi.h"
+#include "sl_assert.h"
+#include "sl_bt_stack_init.h"
+#include "sl_component_catalog.h"
+#include "sl_gatt_service_rht.h"
+
+void sl_bt_init(void)
+{
+ // Stack initialization could fail, e.g., due to out of memory.
+ // The failure could not be returned to user as the system initialization
+ // does not return an error code. Use the EFM_ASSERT to catch the failure,
+ // which requires either DEBUG_EFM or DEBUG_EFM_USER is defined.
+ sl_status_t err = sl_bt_stack_init();
+ EFM_ASSERT(err == SL_STATUS_OK);
+}
+
+SL_WEAK void sl_bt_on_event(sl_bt_msg_t* evt)
+{
+ (void)(evt);
+}
+
+void sl_bt_process_event(sl_bt_msg_t *evt)
+{
+ sl_gatt_service_rht_on_event(evt);
+ sl_bt_on_event(evt);
+}
+
+#if !defined(SL_CATALOG_KERNEL_PRESENT)
+// When running in an RTOS, the stack events are processed in a dedicated
+// event processing task, and these functions are not used at all.
+
+SL_WEAK bool sl_bt_can_process_event(uint32_t len)
+{
+ (void)(len);
+ return true;
+}
+
+void sl_bt_step(void)
+{
+ sl_bt_msg_t evt;
+
+ // Run the Bluetooth host stack processing step
+ sl_bt_run();
+
+ // Check the length of the next event, if any, and verify that the application
+ // can process it. To prevent data loss, the event will be kept in the stack's
+ // queue if the application cannot process it at the moment.
+ size_t event_len = sli_bgapi_device_peek_event_len(&sli_bt_bgapi_device);
+ if ((event_len == 0) || (!sl_bt_can_process_event(event_len))) {
+ return;
+ }
+
+ // Pop the event and process it if successful
+ sl_status_t status = sli_bgapi_device_pop_event(&sli_bt_bgapi_device,
+ sizeof(evt),
+ &evt);
+
+ if (status != SL_STATUS_OK) {
+ return;
+ }
+ sl_bt_process_event(&evt);
+}
+#endif // !defined(SL_CATALOG_KERNEL_PRESENT)
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_bluetooth.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_bluetooth.h
new file mode 100644
index 000000000..2b284460f
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_bluetooth.h
@@ -0,0 +1,73 @@
+/***************************************************************************//**
+ * @file
+ * @brief Bluetooth initialization and event processing
+ *******************************************************************************
+ * # License
+ * Copyright 2024 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied warranty.
+ * In no event will the authors be held liable for any damages arising from the
+ * use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software in a
+ * product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef BLUETOOTH_H
+#define BLUETOOTH_H
+
+#include
+#include "sl_power_manager.h"
+#include "sl_bluetooth_config.h"
+#include "sl_bt_stack_init.h"
+#include "sl_bt_api.h"
+#define SL_BT_COMPONENT_ADVERTISERS 0
+
+#define SL_BT_COMPONENT_CONNECTIONS 0
+
+// Initialize Bluetooth core functionality
+void sl_bt_init(void);
+
+// Polls bluetooth stack for an event and processes it
+void sl_bt_step(void);
+
+/**
+ * Tell if the application can process a new Bluetooth event in its current
+ * state, for example, based on resource availability status.
+ * If true is returned by this function, sl_bt_process_event will be called
+ * for event processing. Otherwise, the event will be kept in stack's event
+ * queue until the application can process it.
+ *
+ * @note Default implementation of this function returns true.
+ * Application can override it for own business logic.
+ *
+ * @param len Data length of the event
+ * @return ture if event can be processed; false otherwise
+ */
+bool sl_bt_can_process_event(uint32_t len);
+
+// Processes a single bluetooth event
+void sl_bt_process_event(sl_bt_msg_t *evt);
+
+void sl_bt_on_event(sl_bt_msg_t* evt);
+
+// Power Manager related functions
+bool sli_bt_is_ok_to_sleep(void);
+sl_power_manager_on_isr_exit_t sli_bt_sleep_on_isr_exit(void);
+
+#endif // BLUETOOTH_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_board_default_init.c b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_board_default_init.c
new file mode 100644
index 000000000..c3a6b4866
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_board_default_init.c
@@ -0,0 +1,34 @@
+/***************************************************************************//**
+ * @file
+ * @brief Board Default Init
+ *******************************************************************************
+ * # License
+ * Copyright 2020 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+#include "sl_board_control.h"
+
+void sl_board_default_init(void)
+{
+}
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_component_catalog.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_component_catalog.h
new file mode 100644
index 000000000..f3fbe49a3
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_component_catalog.h
@@ -0,0 +1,75 @@
+#ifndef SL_COMPONENT_CATALOG_H
+#define SL_COMPONENT_CATALOG_H
+
+// APIs present in project
+#define SL_CATALOG_TFLITE_MICRO_PRESENT
+#define SL_CATALOG_APP_ASSERT_PRESENT
+#define SL_CATALOG_BGAPI_PROTOCOL_PRESENT
+#define SL_CATALOG_BGAPI_PROTOCOL_RTOS_ADAPTATION_PRESENT
+#define SL_CATALOG_BLUETOOTH_CONFIGURATION_PRESENT
+#define SL_CATALOG_BLUETOOTH_CTE_SUPPORT_PRESENT
+#define SL_CATALOG_BLUETOOTH_FEATURE_ADVERTISER_PRESENT
+#define SL_CATALOG_BLUETOOTH_FEATURE_BUILTIN_BONDING_DATABASE_PRESENT
+#define SL_CATALOG_BLUETOOTH_FEATURE_CONNECTION_PRESENT
+#define SL_CATALOG_BLUETOOTH_FEATURE_CONNECTION_ROLE_PERIPHERAL_PRESENT
+#define SL_CATALOG_BLUETOOTH_FEATURE_GATT_SERVER_PRESENT
+#define SL_CATALOG_BLUETOOTH_FEATURE_LEGACY_ADVERTISER_PRESENT
+#define SL_CATALOG_BLUETOOTH_FEATURE_SM_PRESENT
+#define SL_CATALOG_BLUETOOTH_FEATURE_SYSTEM_PRESENT
+#define SL_CATALOG_BLUETOOTH_HOST_ADAPTATION_PRESENT
+#define SL_CATALOG_BLUETOOTH_RTOS_ADAPTATION_PRESENT
+#define SL_CATALOG_BLUETOOTH_PRESENT
+#define SL_CATALOG_CLOCK_MANAGER_PRESENT
+#define SL_CATALOG_CMSIS_OS_COMMON_PRESENT
+#define SL_CATALOG_CPP_SUPPORT_PRESENT
+#define SL_CATALOG_DEVICE_INIT_PRESENT
+#define SL_CATALOG_DEVICE_INIT_DCDC_PRESENT
+#define SL_CATALOG_MVP_PRESENT
+#define SL_CATALOG_EMLIB_CORE_PRESENT
+#define SL_CATALOG_GATT_CONFIGURATION_PRESENT
+#define SL_CATALOG_GATT_SERVICE_RHT_PRESENT
+#define SL_CATALOG_GPIO_PRESENT
+#define SL_CATALOG_HAL_SYSTEM_PRESENT
+#define SL_CATALOG_HFXO_MANAGER_PRESENT
+#define SL_CATALOG_INTERRUPT_MANAGER_PRESENT
+#define SL_CATALOG_IOSTREAM_PRESENT
+#define SL_CATALOG_IOSTREAM_EUSART_PRESENT
+#define SL_CATALOG_RETARGET_STDIO_PRESENT
+#define SL_CATALOG_IOSTREAM_UART_COMMON_PRESENT
+#define SL_CATALOG_MEMORY_MANAGER_PRESENT
+#define SL_CATALOG_MEMORY_PROFILER_API_PRESENT
+#define SL_CATALOG_KERNEL_PRESENT
+#define SL_CATALOG_MICRIUMOS_KERNEL_PRESENT
+#define SL_CATALOG_MPU_PRESENT
+#define SL_CATALOG_MX25_FLASH_SHUTDOWN_EUSART_PRESENT
+#define SL_CATALOG_NVM3_DEFAULT_PRESENT
+#define SL_CATALOG_NVM3_PRESENT
+#define SL_CATALOG_POWER_MANAGER_PRESENT
+#define SL_CATALOG_POWER_MANAGER_DEEPSLEEP_PRESENT
+#define SL_CATALOG_PRINTF_PRESENT
+#define SL_CATALOG_PSA_CRYPTO_PRESENT
+#define SL_CATALOG_RAIL_LIB_PRESENT
+#define SL_CATALOG_SE_MANAGER_PRESENT
+#define SL_CATALOG_SENSOR_RHT_PRESENT
+#define SL_CATALOG_SI70XX_DRIVER_PRESENT
+#define SL_CATALOG_LED0_PRESENT
+#define SL_CATALOG_SIMPLE_LED_PRESENT
+#define SL_CATALOG_SIMPLE_LED_LED0_PRESENT
+#define SL_CATALOG_LED1_PRESENT
+#define SL_CATALOG_SIMPLE_LED_LED1_PRESENT
+#define SL_CATALOG_LED2_PRESENT
+#define SL_CATALOG_SIMPLE_LED_LED2_PRESENT
+#define SL_CATALOG_SL_CORE_PRESENT
+#define SL_CATALOG_SL_MAIN_PRESENT
+#define SL_CATALOG_SL_RAIL_UTIL_BUILT_IN_PHYS_PRESENT
+#define SL_CATALOG_RAIL_UTIL_BUILT_IN_PHYS_PRESENT
+#define SL_CATALOG_SL_RAIL_UTIL_COMPATIBLE_PA_PRESENT
+#define SL_CATALOG_SL_RAIL_UTIL_PA_PRESENT
+#define SL_CATALOG_SL_RAIL_UTIL_POWER_MANAGER_INIT_PRESENT
+#define SL_CATALOG_RAIL_UTIL_POWER_MANAGER_INIT_PRESENT
+#define SL_CATALOG_SL_RAIL_UTIL_SEQUENCER_PRESENT
+#define SL_CATALOG_RAIL_UTIL_SEQUENCER_PRESENT
+#define SL_CATALOG_SLEEPTIMER_PRESENT
+#define SL_CATALOG_SLI_PROTOCOL_CRYPTO_PRESENT
+
+#endif // SL_COMPONENT_CATALOG_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_event_handler.c b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_event_handler.c
new file mode 100644
index 000000000..224ed3908
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_event_handler.c
@@ -0,0 +1,112 @@
+#include "sl_event_handler.h"
+
+#include "sl_board_init.h"
+#include "sl_clock_manager.h"
+#include "sl_hfxo_manager.h"
+#include "sl_rail_util_compatible_pa.h"
+#include "sl_rail_util_power_manager_init.h"
+#include "sl_board_control.h"
+#include "sl_tflite_micro_init.h"
+#include "sl_bt_rtos_adaptation.h"
+#include "sl_bluetooth.h"
+#include "sl_debug_swo.h"
+#include "sl_mvp.h"
+#include "sl_gpio.h"
+#include "sl_i2cspm_instances.h"
+#include "sl_iostream_init_eusart_instances.h"
+#include "sl_mbedtls.h"
+#include "sl_simple_led_instances.h"
+#include "psa/crypto.h"
+#include "sl_se_manager.h"
+#include "sli_protocol_crypto.h"
+#include "cpu.h"
+#include "sli_crypto.h"
+#include "sl_iostream_init_instances.h"
+#include "cmsis_os2.h"
+#include "nvm3_default.h"
+#include "sl_cos.h"
+#include "sl_iostream_handles.h"
+
+void sli_driver_permanent_allocation(void)
+{
+}
+
+void sli_service_permanent_allocation(void)
+{
+}
+
+void sli_stack_permanent_allocation(void)
+{
+ sli_bt_stack_permanent_allocation();
+}
+
+void sli_internal_permanent_allocation(void)
+{
+}
+
+void sl_platform_init(void)
+{
+ sl_board_preinit();
+ sl_clock_manager_runtime_init();
+ sl_hfxo_manager_init_hardware();
+ sl_board_init();
+ CPU_Init();
+ nvm3_initDefault();
+}
+
+void sli_internal_init_early(void)
+{
+}
+
+void sl_kernel_start(void)
+{
+ sli_bt_rtos_adaptation_kernel_start();
+ osKernelStart();
+}
+
+void sl_driver_init(void)
+{
+ sl_debug_swo_init();
+ sli_mvp_init();
+ sl_gpio_init();
+ sl_i2cspm_init_instances();
+ sl_simple_led_init_instances();
+ sl_cos_send_config();
+}
+
+void sl_service_init(void)
+{
+ sl_board_configure_vcom();
+ sl_hfxo_manager_init();
+ sl_mbedtls_init();
+ psa_crypto_init();
+ sl_se_init();
+ sli_protocol_crypto_init();
+ sli_crypto_init();
+ sli_aes_seed_mask();
+ sl_iostream_init_instances_stage_1();
+ sl_iostream_init_instances_stage_2();
+}
+
+void sl_stack_init(void)
+{
+ sl_rail_util_pa_init();
+ sl_rail_util_power_manager_init();
+ sli_bt_stack_functional_init();
+}
+
+void sl_internal_app_init(void)
+{
+ sl_tflite_micro_init();
+}
+
+void sl_iostream_init_instances_stage_1(void)
+{
+ sl_iostream_eusart_init_instances();
+}
+
+void sl_iostream_init_instances_stage_2(void)
+{
+ sl_iostream_set_console_instance();
+}
+
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_event_handler.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_event_handler.h
new file mode 100644
index 000000000..a092b8899
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_event_handler.h
@@ -0,0 +1,18 @@
+#ifndef SL_EVENT_HANDLER_H
+#define SL_EVENT_HANDLER_H
+
+void sli_driver_permanent_allocation(void);
+void sli_service_permanent_allocation(void);
+void sli_stack_permanent_allocation(void);
+void sli_internal_permanent_allocation(void);
+void sl_platform_init(void);
+void sli_internal_init_early(void);
+void sl_kernel_start(void);
+void sl_driver_init(void);
+void sl_service_init(void);
+void sl_stack_init(void);
+void sl_internal_app_init(void);
+void sl_iostream_init_instances_stage_1(void);
+void sl_iostream_init_instances_stage_2(void);
+
+#endif // SL_EVENT_HANDLER_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_i2cspm_init.c b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_i2cspm_init.c
new file mode 100644
index 000000000..247e557d7
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_i2cspm_init.c
@@ -0,0 +1,64 @@
+/***************************************************************************//**
+ * @file
+ * @brief I2C simple poll-based master mode driver instance initialilization
+ *******************************************************************************
+ * # License
+ * Copyright 2020 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#include "sl_i2cspm.h"
+#include "sl_clock_manager.h"
+// Include instance config
+#include "sl_i2cspm_sensor_config.h"
+
+sl_i2cspm_t *sl_i2cspm_sensor = SL_I2CSPM_SENSOR_PERIPHERAL;
+
+#if SL_I2CSPM_SENSOR_SPEED_MODE == 0
+#define SL_I2CSPM_SENSOR_HLR i2cClockHLRStandard
+#define SL_I2CSPM_SENSOR_MAX_FREQ I2C_FREQ_STANDARD_MAX
+#elif SL_I2CSPM_SENSOR_SPEED_MODE == 1
+#define SL_I2CSPM_SENSOR_HLR i2cClockHLRAsymetric
+#define SL_I2CSPM_SENSOR_MAX_FREQ I2C_FREQ_FAST_MAX
+#elif SL_I2CSPM_SENSOR_SPEED_MODE == 2
+#define SL_I2CSPM_SENSOR_HLR i2cClockHLRFast
+#define SL_I2CSPM_SENSOR_MAX_FREQ I2C_FREQ_FASTPLUS_MAX
+#endif
+
+I2CSPM_Init_TypeDef init_sensor = {
+ .port = SL_I2CSPM_SENSOR_PERIPHERAL,
+ .sclPort = SL_I2CSPM_SENSOR_SCL_PORT,
+ .sclPin = SL_I2CSPM_SENSOR_SCL_PIN,
+ .sdaPort = SL_I2CSPM_SENSOR_SDA_PORT,
+ .sdaPin = SL_I2CSPM_SENSOR_SDA_PIN,
+ .i2cRefFreq = 0,
+ .i2cMaxFreq = SL_I2CSPM_SENSOR_MAX_FREQ,
+ .i2cClhr = SL_I2CSPM_SENSOR_HLR
+};
+
+void sl_i2cspm_init_instances(void)
+{
+ sl_clock_manager_enable_bus_clock(SL_BUS_CLOCK_GPIO);
+ I2CSPM_Init(&init_sensor);
+}
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_i2cspm_instances.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_i2cspm_instances.h
new file mode 100644
index 000000000..41ff115bf
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_i2cspm_instances.h
@@ -0,0 +1,52 @@
+/***************************************************************************//**
+ * @file
+ * @brief I2C simple poll-based master mode driver instances
+ *******************************************************************************
+ * # License
+ * Copyright 2020 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_I2CSPM_INSTANCES_H
+#define SL_I2CSPM_INSTANCES_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include "sl_i2cspm.h"
+
+
+#define SL_I2CSPM_SENSOR_PRESENT
+
+
+extern sl_i2cspm_t *sl_i2cspm_sensor;
+
+void sl_i2cspm_init_instances(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // SL_I2CSPM_INSTANCES_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_handles.c b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_handles.c
new file mode 100644
index 000000000..e9919e803
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_handles.c
@@ -0,0 +1,63 @@
+#include "sl_iostream.h"
+#include "sl_iostream_handles.h"
+#include "string.h"
+
+const sl_iostream_instance_info_t *sl_iostream_instances_info[] = {
+
+ &sl_iostream_instance_vcom_info,
+
+};
+
+const uint32_t sl_iostream_instances_count = sizeof(sl_iostream_instances_info) / sizeof(sl_iostream_instances_info[0]);
+sl_iostream_t *sl_iostream_recommended_console_stream = NULL;
+
+
+/***************************************************************************//**
+ * Get iostream instance handle for a given name
+ *
+ * @return Instance handle if it exist, NULL otherwise.
+ ******************************************************************************/
+sl_iostream_t *sl_iostream_get_handle(const char *name)
+{
+ for (uint32_t i = 0; i < sl_iostream_instances_count; i++) {
+ if (strcmp(sl_iostream_instances_info[i]->name, name) == 0) {
+ return sl_iostream_instances_info[i]->handle;
+ }
+ }
+
+ return NULL;
+}
+
+/***************************************************************************//**
+ * Set iostream recommended instance for a console
+ ******************************************************************************/
+void sl_iostream_set_console_instance(void)
+{
+ sl_iostream_type_t console = SL_IOSTREAM_TYPE_UNDEFINED;
+
+ for (uint32_t i = 0; i < sl_iostream_instances_count; i++) {
+ switch (sl_iostream_instances_info[i]->type) {
+ case SL_IOSTREAM_TYPE_UART:
+ case SL_IOSTREAM_TYPE_RTT:
+ if (console != SL_IOSTREAM_TYPE_UART) {
+ console = sl_iostream_instances_info[i]->type;
+ sl_iostream_recommended_console_stream = sl_iostream_instances_info[i]->handle;
+ }
+ break;
+
+ case SL_IOSTREAM_TYPE_VUART:
+ if (console != SL_IOSTREAM_TYPE_UART && console != SL_IOSTREAM_TYPE_RTT) {
+ console = sl_iostream_instances_info[i]->type;
+ sl_iostream_recommended_console_stream = sl_iostream_instances_info[i]->handle;
+ }
+ break;
+
+ case SL_IOSTREAM_TYPE_LOOPBACK:
+ // Ignore loopback interface
+ break;
+
+ default:
+ break;
+ }
+ }
+}
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_handles.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_handles.h
new file mode 100644
index 000000000..96b803c17
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_handles.h
@@ -0,0 +1,24 @@
+#ifndef SL_IOSTREAM_HANDLES_H
+#define SL_IOSTREAM_HANDLES_H
+#include "sl_iostream.h"
+#include "sl_iostream_init_eusart_instances.h"
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern const sl_iostream_instance_info_t *sl_iostream_instances_info[];
+extern const uint32_t sl_iostream_instances_count;
+
+extern sl_iostream_t *sl_iostream_recommended_console_stream;
+
+sl_iostream_t *sl_iostream_get_handle(const char *name);
+
+void sl_iostream_set_console_instance(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // SL_IOSTREAM_HANDLES_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_init_eusart_instances.c b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_init_eusart_instances.c
new file mode 100644
index 000000000..07d93ae58
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_init_eusart_instances.c
@@ -0,0 +1,265 @@
+#include "sl_iostream.h"
+#include "sl_iostream_uart.h"
+#include "sl_iostream_eusart.h"
+#include "sl_common.h"
+#include "dmadrv.h"
+#include "sl_device_peripheral.h"
+#include "sl_clock_manager.h"
+#include "sl_hal_eusart.h"
+#include "sl_hal_gpio.h"
+
+
+#include "sl_clock_manager_tree_config.h"
+
+
+
+#include "sl_cos.h"
+
+// Include instance config
+ #include "sl_iostream_eusart_vcom_config.h"
+
+// MACROs for generating name and IRQ handler function
+#if defined(EUART_COUNT) && (EUART_COUNT > 0)
+#define SL_IOSTREAM_EUSART_TX_IRQ_NUMBER(periph_nbr) SL_CONCAT_PASTER_3(EUART, periph_nbr, _TX_IRQn)
+#define SL_IOSTREAM_EUSART_RX_IRQ_NUMBER(periph_nbr) SL_CONCAT_PASTER_3(EUART, periph_nbr, _RX_IRQn)
+#define SL_IOSTREAM_EUSART_TX_IRQ_HANDLER(periph_nbr) SL_CONCAT_PASTER_3(EUART, periph_nbr, _TX_IRQHandler)
+#define SL_IOSTREAM_EUSART_RX_IRQ_HANDLER(periph_nbr) SL_CONCAT_PASTER_3(EUART, periph_nbr, _RX_IRQHandler)
+#define SL_IOSTREAM_EUSART_RX_DMA_SIGNAL(periph_nbr) SL_CONCAT_PASTER_3(dmadrvPeripheralSignal_EUART, periph_nbr, _RXDATAV)
+#define SL_IOSTREAM_EUSART_TX_DMA_SIGNAL(periph_nbr) SL_CONCAT_PASTER_3(dmadrvPeripheralSignal_EUART, periph_nbr, _TXBL)
+#define SL_IOSTREAM_EUSART_CLOCK_REF(periph_nbr) SL_CONCAT_PASTER_2(SL_BUS_CLOCK_EUART, periph_nbr)
+#define SL_IOSTREAM_EUSART_PERIPHERAL(periph_nbr) SL_CONCAT_PASTER_2(SL_PERIPHERAL_EUART, periph_nbr)
+#else
+#define SL_IOSTREAM_EUSART_TX_IRQ_NUMBER(periph_nbr) SL_CONCAT_PASTER_3(EUSART, periph_nbr, _TX_IRQn)
+#define SL_IOSTREAM_EUSART_RX_IRQ_NUMBER(periph_nbr) SL_CONCAT_PASTER_3(EUSART, periph_nbr, _RX_IRQn)
+#define SL_IOSTREAM_EUSART_TX_IRQ_HANDLER(periph_nbr) SL_CONCAT_PASTER_3(EUSART, periph_nbr, _TX_IRQHandler)
+#define SL_IOSTREAM_EUSART_RX_IRQ_HANDLER(periph_nbr) SL_CONCAT_PASTER_3(EUSART, periph_nbr, _RX_IRQHandler)
+#define SL_IOSTREAM_EUSART_RX_DMA_SIGNAL(periph_nbr) SL_CONCAT_PASTER_3(dmadrvPeripheralSignal_EUSART, periph_nbr, _RXDATAV)
+#define SL_IOSTREAM_EUSART_TX_DMA_SIGNAL(periph_nbr) SL_CONCAT_PASTER_3(dmadrvPeripheralSignal_EUSART, periph_nbr, _TXBL)
+#define SL_IOSTREAM_EUSART_CLOCK_REF(periph_nbr) SL_CONCAT_PASTER_2(SL_BUS_CLOCK_EUSART, periph_nbr)
+#define SL_IOSTREAM_EUSART_PERIPHERAL(periph_nbr) SL_CONCAT_PASTER_2(SL_PERIPHERAL_EUSART, periph_nbr)
+#endif
+
+
+#if defined(EUART_COUNT) && (EUART_COUNT > 0)
+#define SL_IOSTREAM_EUSART_CLOCK_SOURCE(periph_nbr) SL_CLOCK_MANAGER_EUART0CLK_SOURCE
+#define SL_IOSTREAM_EUSART_HF_CLOCK_SOURCE CMU_EUART0CLKCTRL_CLKSEL_EM01GRPACLK
+#define SL_IOSTREAM_EUSART_DISABLED_CLOCK_SOURCE CMU_EUART0CLKCTRL_CLKSEL_DISABLED
+#else
+#define SL_IOSTREAM_EUSART_CLOCK_SOURCE(periph_nbr) SL_CLOCK_MANAGER_EUSART0CLK_SOURCE
+#if defined(CMU_EUSART0CLKCTRL_CLKSEL_EM01GRPCCLK)
+#define SL_IOSTREAM_EUSART_HF_CLOCK_SOURCE CMU_EUSART0CLKCTRL_CLKSEL_EM01GRPCCLK
+#elif defined(CMU_EUSART0CLKCTRL_CLKSEL_EM01GRPACLK)
+#define SL_IOSTREAM_EUSART_HF_CLOCK_SOURCE CMU_EUSART0CLKCTRL_CLKSEL_EM01GRPACLK
+#endif
+#define SL_IOSTREAM_EUSART_DISABLED_CLOCK_SOURCE CMU_EUSART0CLKCTRL_CLKSEL_DISABLED
+#endif
+
+// Check clock configuration
+
+#if (SL_IOSTREAM_EUSART_CLOCK_SOURCE(SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO) == \
+ SL_IOSTREAM_EUSART_DISABLED_CLOCK_SOURCE)
+ #error Peripheral clock is disabled for VCOM. Modify sl_clock_manager_tree_config.h \
+ to enable the peripheral clock
+#else
+#define _SL_IOSTREAM_EUSART_VCOM_ENABLE_HIGH_FREQUENCY \
+ SL_IOSTREAM_EUSART_CLOCK_SOURCE(SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO) == \
+ SL_IOSTREAM_EUSART_HF_CLOCK_SOURCE
+
+#if defined(SL_IOSTREAM_EUSART_VCOM_ENABLE_HIGH_FREQUENCY) && \
+ (_SL_IOSTREAM_EUSART_VCOM_ENABLE_HIGH_FREQUENCY != \
+ SL_IOSTREAM_EUSART_VCOM_ENABLE_HIGH_FREQUENCY)
+#if SL_IOSTREAM_EUSART_VCOM_ENABLE_HIGH_FREQUENCY
+#warning Configuration mismatch for IOStream EUSART VCOM. \
+ IOStream was configured in high-frequency, but peripheral uses a low-frequency \
+ oscillator in sl_clock_manager_tree_config.h.
+#else
+#warning Configuration mismatch for IOStream EUSART VCOM. \
+ IOStream was configured in low-frequency, but peripheral uses a high-frequency \
+ oscillator in sl_clock_manager_tree_config.h.
+#endif // SL_IOSTREAM_EUSART_VCOM_ENABLE_HIGH_FREQUENCY
+#endif // Config mismatch
+#endif // SL_IOSTREAM_EUSART_DISABLED_CLOCK_SOURCE
+
+
+
+
+
+// EM Events
+#define SLEEP_EM_EVENT_MASK (SL_POWER_MANAGER_EVENT_TRANSITION_ENTERING_EM0 \
+ | SL_POWER_MANAGER_EVENT_TRANSITION_LEAVING_EM0)
+static void events_handler(sl_power_manager_em_t from,
+ sl_power_manager_em_t to);
+static sl_power_manager_em_transition_event_info_t events_info =
+{
+ .event_mask = SLEEP_EM_EVENT_MASK,
+ .on_event = events_handler,
+};
+static sl_power_manager_em_transition_event_handle_t events_handle;
+
+
+
+sl_status_t sl_iostream_eusart_init_vcom(void);
+
+
+// Instance(s) handle and context variable
+static sl_iostream_uart_t sl_iostream_vcom;
+sl_iostream_t *sl_iostream_vcom_handle = &sl_iostream_vcom.stream;
+
+sl_iostream_uart_t *sl_iostream_uart_vcom_handle = &sl_iostream_vcom;
+static sl_iostream_eusart_context_t context_vcom;
+
+static uint8_t rx_buffer_vcom[SL_IOSTREAM_EUSART_VCOM_RX_BUFFER_SIZE];
+
+static sli_iostream_uart_periph_t uart_periph_vcom = {
+ .rx_irq_number = SL_IOSTREAM_EUSART_RX_IRQ_NUMBER(SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO),
+#if defined(SL_CATALOG_POWER_MANAGER_PRESENT)
+ .tx_irq_number = SL_IOSTREAM_EUSART_TX_IRQ_NUMBER(SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO),
+#endif
+};
+
+sl_iostream_instance_info_t sl_iostream_instance_vcom_info = {
+ .handle = &sl_iostream_vcom.stream,
+ .name = "vcom",
+ .type = SL_IOSTREAM_TYPE_UART,
+ .periph_id = SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO,
+ .init = sl_iostream_eusart_init_vcom,
+};
+
+
+
+sl_status_t sl_iostream_eusart_init_vcom(void)
+{
+ sl_status_t status;
+
+ sl_iostream_eusart_config_t config_vcom = {
+ .eusart = SL_IOSTREAM_EUSART_PERIPHERAL(SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO),
+ .eusart_nbr = SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO,
+ .bus_clock = SL_IOSTREAM_EUSART_CLOCK_REF(SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO),
+ .baudrate = SL_IOSTREAM_EUSART_VCOM_BAUDRATE,
+ .parity = SL_IOSTREAM_EUSART_VCOM_PARITY,
+ .flow_control = SL_IOSTREAM_EUSART_VCOM_FLOW_CONTROL_TYPE,
+ .stop_bits = SL_IOSTREAM_EUSART_VCOM_STOP_BITS,
+#if defined(EUSART_COUNT) && (EUSART_COUNT > 1)
+ .port_index = SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO,
+#endif
+ .tx_port = SL_IOSTREAM_EUSART_VCOM_TX_PORT,
+ .tx_pin = SL_IOSTREAM_EUSART_VCOM_TX_PIN,
+ .rx_port = SL_IOSTREAM_EUSART_VCOM_RX_PORT,
+ .rx_pin = SL_IOSTREAM_EUSART_VCOM_RX_PIN,
+#if defined(SL_IOSTREAM_EUSART_VCOM_CTS_PORT)
+ .cts_port = SL_IOSTREAM_EUSART_VCOM_CTS_PORT,
+ .cts_pin = SL_IOSTREAM_EUSART_VCOM_CTS_PIN,
+#endif
+#if defined(SL_IOSTREAM_EUSART_VCOM_RTS_PORT)
+ .rts_port = SL_IOSTREAM_EUSART_VCOM_RTS_PORT,
+ .rts_pin = SL_IOSTREAM_EUSART_VCOM_RTS_PIN,
+#endif
+ };
+
+ sl_iostream_dma_config_t rx_dma_config_vcom = {.src = (uint8_t *)&SL_IOSTREAM_EUSART_VCOM_PERIPHERAL->RXDATA,
+ .xfer_cfg = IOSTREAM_LDMA_TFER_CFG_PERIPH(SL_IOSTREAM_EUSART_RX_DMA_SIGNAL(SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO))};
+
+ sl_iostream_dma_config_t tx_dma_config_vcom = {.dst = (uint8_t *)&SL_IOSTREAM_EUSART_VCOM_PERIPHERAL->TXDATA,
+ .xfer_cfg = IOSTREAM_LDMA_TFER_CFG_PERIPH(SL_IOSTREAM_EUSART_TX_DMA_SIGNAL(SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO))};
+
+ sl_iostream_uart_config_t uart_config_vcom = {
+ .rx_dma_cfg = rx_dma_config_vcom,
+ .tx_dma_cfg = tx_dma_config_vcom,
+ .rx_buffer = rx_buffer_vcom,
+ .rx_buffer_length = SL_IOSTREAM_EUSART_VCOM_RX_BUFFER_SIZE,
+ .enable_high_frequency = _SL_IOSTREAM_EUSART_VCOM_ENABLE_HIGH_FREQUENCY,
+ .lf_to_crlf = SL_IOSTREAM_EUSART_VCOM_CONVERT_BY_DEFAULT_LF_TO_CRLF,
+ .rx_when_sleeping = SL_IOSTREAM_EUSART_VCOM_RESTRICT_ENERGY_MODE_TO_ALLOW_RECEPTION,
+ .uart_periph = &uart_periph_vcom
+ };
+ uart_config_vcom.sw_flow_control = SL_IOSTREAM_EUSART_VCOM_FLOW_CONTROL_TYPE == SL_IOSTREAM_EUSART_UART_FLOW_CTRL_SOFT;
+#if defined(SL_IOSTREAM_EUSART_VCOM_ASYNC_TX)
+ uart_config_vcom.async_tx_enabled = SL_IOSTREAM_EUSART_VCOM_ASYNC_TX;
+#else
+ uart_config_vcom.async_tx_enabled = false;
+#endif
+ // Instantiate eusart instance
+ status = sl_iostream_eusart_init(&sl_iostream_vcom,
+ &uart_config_vcom,
+ &config_vcom,
+ &context_vcom);
+ EFM_ASSERT(status == SL_STATUS_OK);
+
+
+ // Send VCOM config to WSTK
+ uint8_t flow_control = COS_CONFIG_FLOWCONTROL_NONE;
+ if (!uart_config_vcom.sw_flow_control) {
+ switch (SL_IOSTREAM_EUSART_VCOM_FLOW_CONTROL_TYPE)
+ {
+ case SL_IOSTREAM_EUSART_UART_FLOW_CTRL_NONE:
+ case SL_IOSTREAM_EUSART_UART_FLOW_CTRL_SOFT:
+ flow_control = COS_CONFIG_FLOWCONTROL_NONE;
+ break;
+ case SL_IOSTREAM_EUSART_UART_FLOW_CTRL_CTS:
+ flow_control = COS_CONFIG_FLOWCONTROL_CTS;
+ break;
+ case SL_IOSTREAM_EUSART_UART_FLOW_CTRL_RTS:
+ flow_control = COS_CONFIG_FLOWCONTROL_RTS;
+ break;
+ case SL_IOSTREAM_EUSART_UART_FLOW_CTRL_CTS_RTS:
+ flow_control = COS_CONFIG_FLOWCONTROL_CTS_RTS;
+ break;
+ default:
+ // Invalid flow control type
+ EFM_ASSERT(0);
+ break;
+ }
+ }
+ sl_cos_config_vcom((uint32_t) SL_IOSTREAM_EUSART_VCOM_BAUDRATE, flow_control);
+
+
+ return status;
+}
+
+
+
+void sl_iostream_eusart_init_instances(void)
+{
+
+ // Enable power manager notifications
+ sl_power_manager_subscribe_em_transition_event(&events_handle, &events_info);
+
+ // Instantiate eusart instance(s)
+
+ sl_iostream_eusart_init_vcom();
+
+}
+
+
+void SL_IOSTREAM_EUSART_TX_IRQ_HANDLER(SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO)(void)
+{
+ sl_iostream_eusart_irq_handler(&sl_iostream_vcom);
+}
+
+void SL_IOSTREAM_EUSART_RX_IRQ_HANDLER(SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO)(void)
+{
+ sl_iostream_eusart_irq_handler(&sl_iostream_vcom);
+}
+
+
+
+static void events_handler(sl_power_manager_em_t from,
+ sl_power_manager_em_t to)
+{
+ (void) from;
+ if (to == SL_POWER_MANAGER_EM0) {
+
+ if (sl_iostream_uart_vcom_handle->stream.context != NULL) {
+ sl_iostream_uart_wakeup(sl_iostream_uart_vcom_handle);
+ }
+
+ } else if (to < SL_POWER_MANAGER_EM2){
+ // Only prepare for sleep to EM2 or less
+
+ if (sl_iostream_uart_vcom_handle->stream.context != NULL) {
+ sl_iostream_uart_prepare_for_sleep(sl_iostream_uart_vcom_handle);
+ }
+
+ }
+}
+
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_init_eusart_instances.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_init_eusart_instances.h
new file mode 100644
index 000000000..babdca8d1
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_init_eusart_instances.h
@@ -0,0 +1,29 @@
+#ifndef SL_IOSTREAM_INIT_EUSART_INSTANCES_H
+#define SL_IOSTREAM_INIT_EUSART_INSTANCES_H
+
+#include "sl_iostream.h"
+#include "sl_iostream_uart.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+extern sl_iostream_t *sl_iostream_vcom_handle;
+extern sl_iostream_uart_t *sl_iostream_uart_vcom_handle;
+extern sl_iostream_instance_info_t sl_iostream_instance_vcom_info;
+
+
+// Initialize only iostream eusart instance(s)
+void sl_iostream_eusart_init_instances(void);
+
+#if defined(SL_CATALOG_POWER_MANAGER_PRESENT)
+
+sl_power_manager_on_isr_exit_t sl_iostream_eusart_vcom_sleep_on_isr_exit(void);
+
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // SL_IOSTREAM_INIT_EUSART_INSTANCES_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_init_instances.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_init_instances.h
new file mode 100644
index 000000000..1e9df285f
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_iostream_init_instances.h
@@ -0,0 +1,17 @@
+#ifndef SL_IOSTREAM_INIT_INSTANCES_H
+#define SL_IOSTREAM_INIT_INSTANCES_H
+
+#include "sl_iostream.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+// Initialize iostream component(s) / instance(s)
+void sl_iostream_init_instances_stage_1(void);
+void sl_iostream_init_instances_stage_2(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // SL_IOSTREAM_INIT_INSTANCES_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_simple_led_instances.c b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_simple_led_instances.c
new file mode 100644
index 000000000..fd594963a
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_simple_led_instances.c
@@ -0,0 +1,92 @@
+/***************************************************************************//**
+ * @file
+ * @brief LED Driver Instances
+ *******************************************************************************
+ * # License
+ * Copyright 2019 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#include "sl_simple_led.h"
+#include "sl_gpio.h"
+
+#include "sl_simple_led_led0_config.h"
+#include "sl_simple_led_led1_config.h"
+#include "sl_simple_led_led2_config.h"
+
+sl_simple_led_context_t simple_led0_context = {
+ .port = SL_SIMPLE_LED_LED0_PORT,
+ .pin = SL_SIMPLE_LED_LED0_PIN,
+ .polarity = SL_SIMPLE_LED_LED0_POLARITY,
+};
+
+const sl_led_t sl_led_led0 = {
+ .context = &simple_led0_context,
+ .init = sl_simple_led_init,
+ .turn_on = sl_simple_led_turn_on,
+ .turn_off = sl_simple_led_turn_off,
+ .toggle = sl_simple_led_toggle,
+ .get_state = sl_simple_led_get_state,
+};
+sl_simple_led_context_t simple_led1_context = {
+ .port = SL_SIMPLE_LED_LED1_PORT,
+ .pin = SL_SIMPLE_LED_LED1_PIN,
+ .polarity = SL_SIMPLE_LED_LED1_POLARITY,
+};
+
+const sl_led_t sl_led_led1 = {
+ .context = &simple_led1_context,
+ .init = sl_simple_led_init,
+ .turn_on = sl_simple_led_turn_on,
+ .turn_off = sl_simple_led_turn_off,
+ .toggle = sl_simple_led_toggle,
+ .get_state = sl_simple_led_get_state,
+};
+sl_simple_led_context_t simple_led2_context = {
+ .port = SL_SIMPLE_LED_LED2_PORT,
+ .pin = SL_SIMPLE_LED_LED2_PIN,
+ .polarity = SL_SIMPLE_LED_LED2_POLARITY,
+};
+
+const sl_led_t sl_led_led2 = {
+ .context = &simple_led2_context,
+ .init = sl_simple_led_init,
+ .turn_on = sl_simple_led_turn_on,
+ .turn_off = sl_simple_led_turn_off,
+ .toggle = sl_simple_led_toggle,
+ .get_state = sl_simple_led_get_state,
+};
+
+const sl_led_t *sl_simple_led_array[] = {
+ &sl_led_led0,
+ &sl_led_led1,
+ &sl_led_led2
+};
+
+void sl_simple_led_init_instances(void)
+{
+ sl_led_init(&sl_led_led0);
+ sl_led_init(&sl_led_led1);
+ sl_led_init(&sl_led_led2);
+}
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_simple_led_instances.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_simple_led_instances.h
new file mode 100644
index 000000000..7422e8161
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_simple_led_instances.h
@@ -0,0 +1,47 @@
+/***************************************************************************//**
+ * @file
+ * @brief LED Driver Instances
+ *******************************************************************************
+ * # License
+ * Copyright 2019 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_SIMPLE_LED_INSTANCES_H
+#define SL_SIMPLE_LED_INSTANCES_H
+
+#include "sl_simple_led.h"
+
+extern const sl_led_t sl_led_led0;
+extern const sl_led_t sl_led_led1;
+extern const sl_led_t sl_led_led2;
+
+extern const sl_led_t *sl_simple_led_array[];
+
+#define SL_SIMPLE_LED_COUNT 3
+#define SL_SIMPLE_LED_INSTANCE(n) (sl_simple_led_array[n])
+
+void sl_simple_led_init_instances(void);
+
+#endif // SL_SIMPLE_LED_INIT_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_tflite_micro_model.c b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_tflite_micro_model.c
new file mode 100644
index 000000000..bc7dfa56b
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_tflite_micro_model.c
@@ -0,0 +1,4764 @@
+// Auto-generated serialization of TFLite flatbuffers in config directory
+
+#include "em_device.h"
+#include "sl_tflite_micro_model.h"
+
+// Model data generated from "baby_cry_int8_DEPLOY.tflite"
+const uint8_t sl_tflite_model_array[] __ALIGNED(4) = {
+ 0x20, 0x00, 0x00, 0x00, 0x54, 0x46, 0x4c, 0x33, 0x00, 0x00, 0x00, 0x00,
+ 0x14, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x18, 0x00, 0x14, 0x00, 0x10, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x14, 0x00, 0x00, 0x00,
+ 0x1c, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00,
+ 0xbc, 0xa1, 0x00, 0x00, 0xcc, 0xa1, 0x00, 0x00, 0xfc, 0xdd, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xe2, 0x5b, 0xff, 0xff, 0x0c, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x3c, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x73, 0x65, 0x72, 0x76,
+ 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x98, 0xff, 0xff, 0xff,
+ 0x26, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x30, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xee, 0x5b, 0xff, 0xff,
+ 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x69, 0x6e, 0x70, 0x75,
+ 0x74, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00,
+ 0x04, 0x00, 0x00, 0x00, 0xdc, 0xff, 0xff, 0xff, 0x29, 0x00, 0x00, 0x00,
+ 0x04, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x43, 0x4f, 0x4e, 0x56,
+ 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x4d, 0x45, 0x54, 0x41, 0x44,
+ 0x41, 0x54, 0x41, 0x00, 0x08, 0x00, 0x0c, 0x00, 0x08, 0x00, 0x04, 0x00,
+ 0x08, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x13, 0x00, 0x00, 0x00, 0x6d, 0x69, 0x6e, 0x5f, 0x72, 0x75, 0x6e, 0x74,
+ 0x69, 0x6d, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x00,
+ 0x2a, 0x00, 0x00, 0x00, 0xdc, 0xa0, 0x00, 0x00, 0xd4, 0xa0, 0x00, 0x00,
+ 0xbc, 0xa0, 0x00, 0x00, 0xa4, 0xa0, 0x00, 0x00, 0x14, 0xa0, 0x00, 0x00,
+ 0x04, 0x9f, 0x00, 0x00, 0xf4, 0x96, 0x00, 0x00, 0x64, 0x96, 0x00, 0x00,
+ 0x54, 0x84, 0x00, 0x00, 0x04, 0x84, 0x00, 0x00, 0x44, 0x82, 0x00, 0x00,
+ 0x2c, 0x82, 0x00, 0x00, 0x1c, 0x81, 0x00, 0x00, 0x0c, 0x7f, 0x00, 0x00,
+ 0xfc, 0x5e, 0x00, 0x00, 0xec, 0x5d, 0x00, 0x00, 0xdc, 0x15, 0x00, 0x00,
+ 0x4c, 0x15, 0x00, 0x00, 0x3c, 0x03, 0x00, 0x00, 0xec, 0x02, 0x00, 0x00,
+ 0x2c, 0x01, 0x00, 0x00, 0x24, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00,
+ 0x14, 0x01, 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00,
+ 0xfc, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0xec, 0x00, 0x00, 0x00,
+ 0xe4, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00,
+ 0xcc, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0xbc, 0x00, 0x00, 0x00,
+ 0xb4, 0x00, 0x00, 0x00, 0xac, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00,
+ 0x9c, 0x00, 0x00, 0x00, 0x94, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00,
+ 0x04, 0x00, 0x00, 0x00, 0x0a, 0x5d, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00,
+ 0x60, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x08, 0x00, 0x0e, 0x00,
+ 0x08, 0x00, 0x04, 0x00, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x08, 0x00, 0x04, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xeb, 0x03, 0x00, 0x00, 0x0c, 0x00, 0x18, 0x00, 0x14, 0x00, 0x10, 0x00,
+ 0x0c, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xb6, 0x60, 0x2f, 0x42,
+ 0x0c, 0x31, 0xfa, 0xc5, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x04, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x32, 0x2e, 0x32, 0x30,
+ 0x2e, 0x30, 0x00, 0x00, 0x76, 0x5d, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00,
+ 0x10, 0x00, 0x00, 0x00, 0x31, 0x2e, 0x31, 0x34, 0x2e, 0x30, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x24, 0xff, 0xff,
+ 0xdc, 0x24, 0xff, 0xff, 0xe0, 0x24, 0xff, 0xff, 0xe4, 0x24, 0xff, 0xff,
+ 0xe8, 0x24, 0xff, 0xff, 0xec, 0x24, 0xff, 0xff, 0xf0, 0x24, 0xff, 0xff,
+ 0xf4, 0x24, 0xff, 0xff, 0xf8, 0x24, 0xff, 0xff, 0xfc, 0x24, 0xff, 0xff,
+ 0x00, 0x25, 0xff, 0xff, 0x04, 0x25, 0xff, 0xff, 0x08, 0x25, 0xff, 0xff,
+ 0x0c, 0x25, 0xff, 0xff, 0x10, 0x25, 0xff, 0xff, 0x14, 0x25, 0xff, 0xff,
+ 0x18, 0x25, 0xff, 0xff, 0x1c, 0x25, 0xff, 0xff, 0x20, 0x25, 0xff, 0xff,
+ 0xde, 0x5d, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x00, 0x00,
+ 0xcb, 0x03, 0x8d, 0x71, 0x3f, 0xe7, 0x4c, 0xc3, 0x81, 0xd9, 0x26, 0x38,
+ 0x17, 0xf7, 0xb1, 0xd4, 0xdf, 0x90, 0x9d, 0x0a, 0x1f, 0x61, 0x32, 0xfe,
+ 0x6e, 0x4e, 0x14, 0x86, 0xb7, 0xcf, 0xa1, 0xee, 0x18, 0x81, 0xb7, 0xe1,
+ 0xb3, 0x58, 0xbb, 0xad, 0xbe, 0xb6, 0xcd, 0xc6, 0xcf, 0xfa, 0xcf, 0xd0,
+ 0xb6, 0x32, 0x65, 0xa0, 0xca, 0x0a, 0xf6, 0x1a, 0xbb, 0x21, 0x3a, 0xd7,
+ 0xfc, 0xd2, 0xb1, 0xfe, 0x0f, 0xdb, 0xea, 0x1b, 0xc5, 0x1d, 0xd7, 0x5a,
+ 0x7b, 0x0f, 0xe9, 0x7f, 0xf3, 0xfe, 0x60, 0x2d, 0xe2, 0xa4, 0x33, 0xa0,
+ 0x0a, 0x40, 0x7e, 0xff, 0xb6, 0x87, 0x30, 0x09, 0xa0, 0x81, 0x63, 0x2b,
+ 0xc3, 0xa9, 0xb4, 0xf3, 0xc9, 0xbc, 0x29, 0x9f, 0x56, 0x4e, 0x4a, 0xd6,
+ 0x22, 0xc0, 0x55, 0x22, 0xb7, 0x4e, 0xef, 0x4f, 0x56, 0x72, 0x31, 0xda,
+ 0xb7, 0x73, 0x83, 0x39, 0x66, 0x3a, 0x00, 0xb1, 0x17, 0x37, 0x85, 0xba,
+ 0x9d, 0xd1, 0x81, 0xdb, 0x32, 0x6c, 0xee, 0x08, 0x60, 0xf1, 0x65, 0x4a,
+ 0x12, 0xac, 0xb3, 0xd9, 0xaa, 0x56, 0x10, 0xba, 0xb8, 0xd4, 0xb1, 0xc6,
+ 0xee, 0x16, 0x7f, 0x0c, 0x79, 0xe5, 0xd5, 0xcb, 0x4c, 0x43, 0x4e, 0x7f,
+ 0x7f, 0x9c, 0x5c, 0x0b, 0x23, 0x5c, 0x3d, 0xf7, 0xb4, 0xb8, 0x90, 0xec,
+ 0xf4, 0x55, 0x5c, 0xf2, 0x01, 0x93, 0xd2, 0xe2, 0x44, 0xee, 0xbe, 0xe3,
+ 0xcf, 0x33, 0x05, 0xb3, 0xba, 0xfd, 0x24, 0x31, 0xce, 0x66, 0x07, 0x5b,
+ 0x81, 0xfd, 0xcb, 0x70, 0x63, 0xcb, 0x17, 0xae, 0x4a, 0x19, 0x13, 0x13,
+ 0x29, 0xaf, 0x46, 0x0e, 0xfe, 0x32, 0x30, 0xea, 0xcf, 0xd1, 0xaf, 0x50,
+ 0x7f, 0x00, 0x0a, 0xf2, 0xe1, 0xb3, 0x34, 0x27, 0xa9, 0x37, 0x3a, 0xf8,
+ 0x40, 0xcc, 0x58, 0x47, 0x12, 0xbd, 0xe2, 0x97, 0xd4, 0x38, 0x3e, 0x6e,
+ 0x06, 0x1f, 0xff, 0x6f, 0x46, 0x84, 0x4f, 0xa5, 0xb5, 0xd8, 0x3e, 0x81,
+ 0xf1, 0xda, 0x05, 0x3d, 0xc5, 0x54, 0x8c, 0xcd, 0x08, 0xd7, 0x29, 0xdb,
+ 0x07, 0x3a, 0xb1, 0xb2, 0xf6, 0xca, 0xb7, 0xc0, 0x71, 0x20, 0xd8, 0x93,
+ 0x3c, 0x44, 0x76, 0xa4, 0x1d, 0xff, 0x7f, 0x0d, 0x3a, 0xfb, 0x27, 0x34,
+ 0x20, 0x34, 0x02, 0xcf, 0xc7, 0xbf, 0x7f, 0xda, 0xeb, 0x9e, 0xa8, 0xb0,
+ 0x95, 0x11, 0xf6, 0x6d, 0x92, 0xb8, 0x1d, 0x5b, 0x6e, 0xd2, 0x67, 0x42,
+ 0x37, 0xd3, 0xd3, 0xe0, 0x02, 0x32, 0xf5, 0xef, 0xd5, 0xac, 0x10, 0xde,
+ 0x3a, 0xf3, 0xd9, 0x7f, 0xec, 0x03, 0x8b, 0xeb, 0xab, 0xeb, 0x36, 0x2e,
+ 0x46, 0x1f, 0x54, 0x1a, 0xa6, 0x05, 0x7f, 0xfc, 0xc1, 0x5d, 0xd1, 0xab,
+ 0x66, 0x0c, 0x1f, 0x5c, 0xa0, 0xb0, 0xec, 0xff, 0x11, 0x66, 0xc4, 0xa1,
+ 0x36, 0x50, 0x57, 0xb1, 0xb9, 0x42, 0x9e, 0x6f, 0xf3, 0x1f, 0xe4, 0xdc,
+ 0xfc, 0x46, 0xa0, 0x56, 0x2e, 0xb4, 0x33, 0x50, 0xdf, 0x5e, 0x1c, 0xae,
+ 0x83, 0x81, 0x66, 0xd1, 0x8b, 0x73, 0x60, 0xca, 0x60, 0x0a, 0x56, 0x31,
+ 0xcc, 0x9b, 0x65, 0x43, 0xf6, 0xba, 0x45, 0xd3, 0x5b, 0xa8, 0x62, 0xce,
+ 0x77, 0xfb, 0x1c, 0xa1, 0x2c, 0x5c, 0x81, 0x27, 0xe1, 0xcb, 0x34, 0x9b,
+ 0x9a, 0x5f, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00,
+ 0x16, 0x58, 0x00, 0x00, 0xe7, 0x8c, 0x01, 0x00, 0x12, 0x15, 0x00, 0x00,
+ 0x58, 0xa6, 0x00, 0x00, 0xfd, 0x0b, 0x00, 0x00, 0x0e, 0x87, 0xff, 0xff,
+ 0x0f, 0x38, 0xff, 0xff, 0x37, 0xfb, 0xff, 0xff, 0x9f, 0xc8, 0xff, 0xff,
+ 0x40, 0x65, 0x00, 0x00, 0x5c, 0x11, 0x00, 0x00, 0x4d, 0x0f, 0x00, 0x00,
+ 0x6c, 0x1d, 0x00, 0x00, 0x51, 0x53, 0x00, 0x00, 0x5e, 0xf5, 0xff, 0xff,
+ 0x99, 0x96, 0xff, 0xff, 0xe6, 0x5f, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00,
+ 0x00, 0x12, 0x00, 0x00, 0xf6, 0xcf, 0x24, 0xe3, 0xdc, 0x23, 0x38, 0x05,
+ 0xb7, 0x3a, 0xa6, 0x21, 0xda, 0xc2, 0xea, 0xdb, 0x39, 0xd0, 0x1d, 0x69,
+ 0xe5, 0x43, 0x36, 0xd3, 0xb1, 0x26, 0x1c, 0xe4, 0x06, 0xc4, 0xfe, 0x3d,
+ 0xbd, 0x28, 0x20, 0xcd, 0x3c, 0xb4, 0xc2, 0xb5, 0xe5, 0x7f, 0xe2, 0xc0,
+ 0x46, 0xed, 0x49, 0xb4, 0xc4, 0x14, 0x09, 0xe8, 0x2d, 0xce, 0x18, 0x47,
+ 0x9c, 0x10, 0x3e, 0x9e, 0x1c, 0x0f, 0xc4, 0xf3, 0x4e, 0x2f, 0xe7, 0x66,
+ 0xf0, 0x06, 0x0d, 0x3d, 0xca, 0x12, 0xd2, 0xaf, 0x2a, 0xc2, 0x2a, 0xb8,
+ 0x56, 0xf9, 0x05, 0x59, 0xe4, 0x29, 0x2a, 0x1d, 0xe5, 0xd5, 0x3d, 0x47,
+ 0xe8, 0xee, 0x54, 0x2e, 0xf6, 0xde, 0x3f, 0x02, 0x05, 0xf1, 0xfe, 0x03,
+ 0x11, 0xce, 0x13, 0x19, 0xbd, 0x9e, 0x1b, 0xd9, 0xed, 0xac, 0xe6, 0x23,
+ 0x01, 0x24, 0xf0, 0x48, 0x3e, 0xfe, 0x4e, 0x10, 0xf3, 0xaa, 0xec, 0x1d,
+ 0x00, 0xf5, 0x45, 0x2d, 0xf1, 0x34, 0x2b, 0xe6, 0xc4, 0x39, 0x68, 0x48,
+ 0x2b, 0xa2, 0xf0, 0xbb, 0x01, 0xe4, 0xfe, 0x1f, 0x18, 0xda, 0xe8, 0xcb,
+ 0xd0, 0xf8, 0x42, 0x5d, 0x42, 0xe9, 0xe7, 0xf2, 0x18, 0x10, 0x2a, 0xca,
+ 0xb4, 0x21, 0x03, 0x31, 0xfe, 0x2b, 0x07, 0xec, 0xc9, 0xc4, 0xfd, 0x58,
+ 0xd0, 0x3a, 0x12, 0x34, 0xbd, 0xf4, 0x2d, 0x3e, 0xb7, 0xf2, 0xb9, 0xe9,
+ 0xe0, 0x37, 0x08, 0x1c, 0xf5, 0xbb, 0x25, 0x58, 0xd8, 0x08, 0xb3, 0xd6,
+ 0xb1, 0x5a, 0xe4, 0x6e, 0xf7, 0x30, 0xc4, 0x5e, 0x49, 0x03, 0xca, 0x3e,
+ 0xb5, 0x09, 0xf3, 0x3b, 0x24, 0x20, 0x08, 0xfd, 0x3d, 0xf9, 0x4e, 0x57,
+ 0xdb, 0x2b, 0xf1, 0x23, 0xe3, 0x89, 0x04, 0x7f, 0x40, 0xd2, 0x38, 0x76,
+ 0xd6, 0x5a, 0xb4, 0x33, 0xea, 0x33, 0xcd, 0x5c, 0x17, 0x27, 0xee, 0x09,
+ 0x49, 0x43, 0x1b, 0x36, 0xf5, 0x3b, 0xa8, 0x32, 0xdd, 0xff, 0x0d, 0xe0,
+ 0x16, 0xb9, 0x20, 0x42, 0x35, 0x69, 0x6c, 0x1d, 0xce, 0xdf, 0x0f, 0x03,
+ 0x13, 0x27, 0xb5, 0xf3, 0x17, 0x24, 0x01, 0x7a, 0x1e, 0x02, 0xdb, 0x5e,
+ 0xca, 0x5c, 0xf4, 0x38, 0x3e, 0x4c, 0xf6, 0x44, 0x02, 0xfb, 0x2b, 0xf8,
+ 0xc6, 0x0d, 0xb5, 0xe1, 0x9b, 0xe7, 0x81, 0xc5, 0xa0, 0xd1, 0xe5, 0x13,
+ 0xac, 0x2a, 0xf5, 0x0f, 0x12, 0x59, 0xba, 0x27, 0x21, 0xce, 0x0f, 0x38,
+ 0xfc, 0xec, 0x32, 0xad, 0xc8, 0xe3, 0xc4, 0xb4, 0x4a, 0xeb, 0xec, 0x41,
+ 0xe0, 0x5e, 0xf8, 0x17, 0x48, 0xec, 0x4e, 0xf0, 0xd0, 0x36, 0x19, 0x52,
+ 0x8a, 0x01, 0x22, 0x43, 0x11, 0x23, 0x83, 0x40, 0xe5, 0xd6, 0x2e, 0x4a,
+ 0xb6, 0x37, 0xfe, 0xaf, 0x0d, 0x43, 0x10, 0xf7, 0x4e, 0xe7, 0xd9, 0x24,
+ 0xe8, 0xc8, 0x23, 0xdf, 0x94, 0x0a, 0x24, 0xde, 0xc1, 0xcd, 0x19, 0xdf,
+ 0x1a, 0x2d, 0xa7, 0xda, 0xfa, 0x5d, 0xf1, 0xab, 0xbb, 0x46, 0xdd, 0x52,
+ 0xcc, 0xfd, 0xf0, 0xfb, 0xab, 0x0a, 0xd6, 0xdf, 0x39, 0x34, 0x2e, 0x19,
+ 0xd4, 0xef, 0x15, 0xb1, 0xbb, 0xcb, 0x52, 0x02, 0x63, 0x3d, 0xaf, 0xe8,
+ 0xdd, 0xfd, 0x14, 0xeb, 0xa5, 0xf5, 0xdb, 0xdf, 0x2b, 0xe5, 0x40, 0xca,
+ 0x22, 0x00, 0xa9, 0x2b, 0xdf, 0xea, 0x38, 0x07, 0x09, 0xda, 0x13, 0x33,
+ 0x0d, 0xee, 0xd6, 0x20, 0x0b, 0x10, 0xd3, 0x14, 0xcc, 0xf4, 0xf0, 0x22,
+ 0xc1, 0x2a, 0xec, 0x2a, 0xda, 0x17, 0x11, 0x1e, 0xec, 0x20, 0xb9, 0x28,
+ 0x0c, 0x12, 0xe3, 0xdc, 0xfe, 0x25, 0xfe, 0x9e, 0x02, 0xf9, 0xc0, 0xdc,
+ 0xbe, 0x02, 0xdf, 0x32, 0x13, 0x17, 0x00, 0x20, 0xe0, 0xbf, 0xec, 0x2b,
+ 0x28, 0xf4, 0xe1, 0x29, 0x17, 0x01, 0x13, 0xd5, 0xf2, 0x19, 0x22, 0xe4,
+ 0xf5, 0xd4, 0xd1, 0x37, 0xbe, 0x10, 0x21, 0xfc, 0xf5, 0x27, 0x16, 0x25,
+ 0x0d, 0x3c, 0xdb, 0xcc, 0xea, 0xf7, 0xe8, 0xad, 0xc4, 0x15, 0x1f, 0x81,
+ 0x0c, 0x36, 0x03, 0xff, 0xf0, 0x19, 0xfd, 0x19, 0x2a, 0xdb, 0x1d, 0x34,
+ 0x1d, 0xf2, 0xd4, 0x40, 0x1c, 0x37, 0xea, 0xde, 0x19, 0xd4, 0xd8, 0x18,
+ 0xf3, 0xdc, 0xba, 0x14, 0xc8, 0xed, 0xf7, 0xf4, 0xe2, 0xea, 0x02, 0xf2,
+ 0xe3, 0x1d, 0x17, 0xe4, 0xc4, 0x1e, 0x1f, 0xa3, 0xfd, 0xd4, 0xcb, 0xbd,
+ 0xe8, 0x36, 0xd4, 0x41, 0x33, 0xb1, 0x01, 0xe6, 0xfc, 0xf9, 0xdc, 0x3d,
+ 0x31, 0xa4, 0xdb, 0x02, 0xfa, 0xcd, 0xf2, 0x24, 0x32, 0xe8, 0x39, 0xe7,
+ 0xf3, 0x18, 0x2e, 0xa4, 0xea, 0x41, 0xfc, 0xcf, 0x35, 0x00, 0x3e, 0xf7,
+ 0xfb, 0xf8, 0xdb, 0x44, 0xea, 0x22, 0x36, 0x2f, 0x51, 0xbd, 0x10, 0x46,
+ 0x13, 0x5c, 0x35, 0x81, 0x12, 0xf7, 0x09, 0xc3, 0xd3, 0x2f, 0x1b, 0x32,
+ 0x1c, 0x15, 0xba, 0xd5, 0x16, 0xd1, 0xe1, 0xc4, 0x1c, 0xc0, 0xcb, 0x44,
+ 0xba, 0xf9, 0x37, 0x90, 0x1b, 0xdd, 0x39, 0xdd, 0x12, 0xaa, 0xe9, 0x35,
+ 0x3f, 0x41, 0x05, 0xd8, 0x1e, 0x0b, 0xf7, 0x43, 0x12, 0xf1, 0x25, 0x22,
+ 0xfb, 0x45, 0xce, 0x87, 0x4c, 0x14, 0xc9, 0xcb, 0x40, 0x26, 0xcd, 0x3c,
+ 0x19, 0x08, 0x0e, 0x3d, 0x1f, 0xbb, 0xaa, 0x01, 0xf9, 0x1b, 0xec, 0x14,
+ 0x27, 0xdb, 0xe2, 0x01, 0xce, 0x00, 0xfb, 0xca, 0xe5, 0x0b, 0x2a, 0x37,
+ 0xfe, 0x32, 0xec, 0x53, 0x39, 0x1c, 0x0d, 0x6c, 0xd0, 0x16, 0xb8, 0x32,
+ 0x10, 0xf0, 0x3c, 0xa5, 0xe8, 0x3a, 0xe2, 0xb5, 0xf5, 0x0c, 0xe0, 0x69,
+ 0x48, 0xe6, 0x9f, 0xe7, 0x39, 0x3c, 0x3d, 0x14, 0x18, 0xc2, 0x12, 0xf7,
+ 0xe1, 0x1d, 0xee, 0xae, 0x06, 0x17, 0xbf, 0xc2, 0x52, 0xce, 0x18, 0x11,
+ 0xfa, 0x1c, 0xdd, 0xd0, 0xfa, 0xde, 0x33, 0xf3, 0xd8, 0xfa, 0xd7, 0xd3,
+ 0x14, 0xce, 0xa6, 0x41, 0xf6, 0xef, 0xe0, 0x14, 0x1a, 0xc5, 0xc0, 0x38,
+ 0xba, 0xd9, 0xf8, 0xd0, 0xdc, 0xd7, 0x0c, 0x2e, 0xe7, 0x04, 0xf8, 0x02,
+ 0xf0, 0x3b, 0x27, 0x8e, 0xbd, 0x30, 0xa0, 0x1b, 0xdf, 0xd9, 0x21, 0xdc,
+ 0xd2, 0xff, 0x28, 0xb1, 0x2c, 0xd5, 0x14, 0xf2, 0x12, 0xc2, 0xfb, 0xaa,
+ 0xb3, 0xfa, 0xf7, 0xe3, 0xf1, 0xc6, 0x01, 0x33, 0x64, 0xdd, 0x0c, 0x58,
+ 0x56, 0x2d, 0xef, 0x0b, 0x47, 0x19, 0xca, 0xe7, 0xff, 0x03, 0xe0, 0xb6,
+ 0xe3, 0x15, 0x0f, 0xb1, 0x50, 0xef, 0xb9, 0xea, 0xee, 0xcd, 0xcb, 0x22,
+ 0xbe, 0xd2, 0xc6, 0xdc, 0xef, 0x06, 0xde, 0x13, 0x03, 0xf5, 0xe9, 0x1b,
+ 0xe6, 0xfd, 0x81, 0xf0, 0xee, 0xd3, 0x11, 0xe5, 0x0d, 0xf4, 0xee, 0x10,
+ 0xb7, 0x11, 0xd0, 0xf1, 0x03, 0xd7, 0x00, 0xce, 0xe4, 0xf2, 0xfb, 0x1a,
+ 0x4c, 0x37, 0xe0, 0xf5, 0xe4, 0xde, 0xcf, 0xee, 0xff, 0x10, 0x00, 0x21,
+ 0xf1, 0xf3, 0x07, 0xd1, 0x0b, 0x2a, 0x23, 0xb0, 0xc8, 0x04, 0xf2, 0x81,
+ 0xe7, 0x08, 0x1a, 0x17, 0x29, 0xd7, 0x05, 0x3e, 0xe3, 0xd5, 0xea, 0x01,
+ 0xb6, 0x10, 0xef, 0x40, 0xde, 0x2f, 0xaf, 0xea, 0x20, 0xdb, 0xe9, 0x22,
+ 0x27, 0xd9, 0xcc, 0x0a, 0x00, 0x37, 0xf8, 0x05, 0x3a, 0x47, 0x0c, 0x27,
+ 0x04, 0x07, 0xcc, 0xed, 0xcf, 0x22, 0x04, 0xa3, 0xf7, 0x2b, 0x0a, 0xf3,
+ 0x04, 0xe3, 0xb2, 0x23, 0xc8, 0xf0, 0xff, 0xd3, 0x14, 0x2c, 0xf3, 0x0d,
+ 0xf1, 0xc9, 0x1a, 0x18, 0x0e, 0xd5, 0x20, 0x13, 0x30, 0xf8, 0x06, 0x19,
+ 0x30, 0x1a, 0x25, 0xe4, 0x15, 0x02, 0x34, 0x0b, 0x10, 0x34, 0xe1, 0x24,
+ 0x10, 0x2c, 0xbd, 0x19, 0x0f, 0x3f, 0xd8, 0xab, 0x11, 0xe5, 0x38, 0x0d,
+ 0xb9, 0xf5, 0xf2, 0xd4, 0xde, 0xf0, 0x0f, 0x3a, 0xd5, 0x17, 0xc5, 0xda,
+ 0x0c, 0xb2, 0xe9, 0x11, 0x02, 0xb1, 0x14, 0x0c, 0xb7, 0xf1, 0xf9, 0x46,
+ 0x16, 0xfb, 0xe5, 0xcc, 0x48, 0x25, 0x2c, 0x0c, 0xee, 0x22, 0xdb, 0x10,
+ 0x28, 0x2b, 0x29, 0x01, 0xcb, 0xa3, 0x20, 0xf0, 0xf5, 0xd2, 0x04, 0x22,
+ 0xca, 0x11, 0xe1, 0x11, 0xf3, 0xcd, 0x34, 0x17, 0xb2, 0xf3, 0x01, 0x32,
+ 0xc2, 0xbe, 0x5d, 0xd5, 0xee, 0x25, 0x69, 0x36, 0xff, 0x46, 0x64, 0xdb,
+ 0x0f, 0xb3, 0x04, 0x66, 0x4a, 0x21, 0x5b, 0xcb, 0xce, 0x02, 0x3e, 0xe1,
+ 0xdf, 0xdc, 0x24, 0xfe, 0xed, 0x05, 0x2b, 0x62, 0xfe, 0xeb, 0x3c, 0xd7,
+ 0xdc, 0x3b, 0xe3, 0x20, 0x11, 0x03, 0xf0, 0x00, 0x2a, 0xfa, 0x43, 0x05,
+ 0xfe, 0xe5, 0x05, 0xcf, 0x14, 0x21, 0x36, 0x14, 0x35, 0xf9, 0xcf, 0xf9,
+ 0x7f, 0xc5, 0x2f, 0xf9, 0x28, 0xdf, 0xe1, 0xb0, 0xcf, 0x60, 0xd2, 0x2b,
+ 0x0e, 0xfb, 0x2b, 0x13, 0x02, 0x04, 0xf7, 0x10, 0x5a, 0xc9, 0xe3, 0x02,
+ 0xcf, 0x56, 0x0f, 0x18, 0x0a, 0x38, 0xe1, 0x62, 0x57, 0xef, 0x07, 0x1e,
+ 0xe9, 0x06, 0x3c, 0x07, 0xe4, 0xbe, 0x37, 0x1c, 0xec, 0xfb, 0x2d, 0xe4,
+ 0xf7, 0x22, 0xdc, 0xeb, 0x0d, 0xbd, 0xa4, 0xe7, 0xe6, 0x54, 0x63, 0x1d,
+ 0x9d, 0x04, 0xaf, 0x47, 0x2f, 0x2f, 0xf1, 0xed, 0xd2, 0xad, 0xd9, 0x40,
+ 0x13, 0xe8, 0xf4, 0x35, 0x92, 0x1f, 0x2a, 0xce, 0x20, 0xd5, 0x29, 0xea,
+ 0x54, 0x55, 0x41, 0xd3, 0x0c, 0x3e, 0xf2, 0xd4, 0xa8, 0xf5, 0x1d, 0x0a,
+ 0x05, 0x1c, 0x35, 0xd5, 0x67, 0xdd, 0xf8, 0xb3, 0x5b, 0x53, 0x5b, 0xe4,
+ 0x83, 0xe8, 0xc9, 0xb8, 0x2e, 0x1c, 0x1b, 0xef, 0x3e, 0x14, 0x0f, 0xd3,
+ 0xc1, 0x25, 0x0a, 0xeb, 0x9c, 0x0e, 0xe4, 0x2d, 0xd0, 0xf5, 0xf2, 0xbc,
+ 0x41, 0xd3, 0x3b, 0xf3, 0xc2, 0x54, 0x94, 0xf5, 0xef, 0x3d, 0xbd, 0xf1,
+ 0x2a, 0xf7, 0x31, 0xcc, 0x25, 0xf7, 0xee, 0xe4, 0xf9, 0x7f, 0xcf, 0x31,
+ 0xda, 0xd5, 0xd8, 0xdf, 0xf3, 0xe6, 0x05, 0xf0, 0xa3, 0xb4, 0xc9, 0x0a,
+ 0x31, 0x13, 0xb7, 0x52, 0xce, 0x18, 0xdb, 0xf6, 0xd4, 0xe5, 0x31, 0x0c,
+ 0x44, 0xe6, 0xc0, 0x48, 0xf3, 0x0e, 0x07, 0xdb, 0xd5, 0x0a, 0xd9, 0xeb,
+ 0x8c, 0xb0, 0xc9, 0xfd, 0x17, 0xcc, 0x38, 0xe3, 0xee, 0xe1, 0xfc, 0xc4,
+ 0xf1, 0x03, 0xad, 0x4d, 0x07, 0x29, 0xde, 0x24, 0x1d, 0x9b, 0x6b, 0x3c,
+ 0x38, 0xb3, 0xd2, 0x29, 0x29, 0xe3, 0x08, 0xd7, 0xf7, 0xaf, 0x27, 0x15,
+ 0x09, 0x13, 0xcf, 0xcc, 0x37, 0x56, 0xf1, 0xf3, 0xce, 0xf2, 0x47, 0xa8,
+ 0x31, 0x25, 0xec, 0x2d, 0xaf, 0x3d, 0xbb, 0x11, 0x31, 0x00, 0x25, 0xd6,
+ 0xd8, 0xd4, 0xfa, 0x0e, 0x0b, 0xe1, 0xe1, 0x4b, 0xed, 0x2f, 0x3c, 0x79,
+ 0x05, 0x0b, 0xad, 0x54, 0x09, 0xea, 0xc9, 0xc4, 0xd2, 0x0b, 0x11, 0x2b,
+ 0x0e, 0xee, 0x81, 0x25, 0x39, 0xdc, 0x30, 0x98, 0xac, 0xeb, 0xc1, 0x9b,
+ 0xa5, 0x4e, 0xf8, 0xb3, 0xba, 0xde, 0x09, 0x14, 0xf3, 0x17, 0xf0, 0xcd,
+ 0xfd, 0xc7, 0xe2, 0x1b, 0x11, 0x1e, 0xd2, 0xc9, 0xe8, 0xa8, 0x14, 0xfa,
+ 0xa5, 0xfe, 0xf9, 0x3a, 0x22, 0xbf, 0x9a, 0x0b, 0x6c, 0xba, 0xe2, 0xd4,
+ 0x1c, 0x2e, 0x3e, 0x8e, 0x39, 0x00, 0x2a, 0x14, 0xa5, 0x43, 0x21, 0x7f,
+ 0x26, 0xa8, 0xa1, 0xc8, 0xcb, 0x0f, 0x65, 0x49, 0xc5, 0xf8, 0xc7, 0x48,
+ 0x90, 0xf6, 0x31, 0xe0, 0xf5, 0xab, 0xfc, 0xe8, 0x89, 0x15, 0xeb, 0xbc,
+ 0xf9, 0xc2, 0x54, 0xa0, 0x30, 0x40, 0xa2, 0xb7, 0x5f, 0x30, 0xb8, 0x76,
+ 0x1f, 0xac, 0xd7, 0xd5, 0x60, 0x6f, 0xe4, 0x03, 0xb6, 0x62, 0x49, 0x24,
+ 0x2a, 0x4f, 0xc6, 0x36, 0xb8, 0x3e, 0x73, 0xe0, 0xa2, 0x53, 0xc7, 0xf6,
+ 0x12, 0xd5, 0xc8, 0x9c, 0x32, 0x58, 0x52, 0x55, 0xed, 0x42, 0xf8, 0xd4,
+ 0xc0, 0xe5, 0x83, 0x3c, 0x02, 0xec, 0xc8, 0x09, 0x77, 0xe0, 0x51, 0x2c,
+ 0x68, 0x6b, 0x34, 0x36, 0xd8, 0x10, 0x3a, 0x10, 0xd5, 0x25, 0x5f, 0x4a,
+ 0xd0, 0xdd, 0x17, 0x3a, 0x3e, 0x0b, 0x50, 0x67, 0xdb, 0xc9, 0x09, 0x24,
+ 0x22, 0xb7, 0xc5, 0xb2, 0x5e, 0x04, 0xcd, 0xe1, 0xb9, 0xa8, 0x1e, 0xdf,
+ 0x2f, 0x97, 0x62, 0xae, 0x50, 0x08, 0x23, 0xc6, 0x58, 0xd8, 0x01, 0x5c,
+ 0x1a, 0x5b, 0xe7, 0xf9, 0x3e, 0x41, 0x52, 0x09, 0x41, 0xba, 0xd4, 0x2f,
+ 0x23, 0xeb, 0x0d, 0xea, 0xe2, 0x4e, 0xee, 0x14, 0x45, 0xfd, 0x41, 0xc7,
+ 0x14, 0xc6, 0xf8, 0xcf, 0x38, 0xe3, 0x04, 0xe8, 0xc8, 0x36, 0x01, 0xfd,
+ 0x19, 0xc2, 0x2c, 0xc6, 0x41, 0x20, 0xf2, 0x19, 0xde, 0x0b, 0x15, 0x19,
+ 0x26, 0x1b, 0xec, 0x51, 0x1c, 0x39, 0x40, 0xfe, 0x28, 0xb8, 0xad, 0xcb,
+ 0xb4, 0x22, 0xd7, 0x81, 0xab, 0xcb, 0xd6, 0xdd, 0x15, 0xf2, 0x49, 0x16,
+ 0x3a, 0x07, 0x2b, 0xd9, 0xe7, 0xf8, 0x1b, 0xeb, 0x0d, 0xb6, 0xd5, 0xdb,
+ 0xc1, 0xef, 0x28, 0x1b, 0xe8, 0x2e, 0x30, 0xfc, 0x45, 0x2d, 0x2d, 0x16,
+ 0xe0, 0xe5, 0x38, 0x5f, 0x45, 0x3c, 0x1c, 0x05, 0x06, 0xf1, 0xcd, 0x07,
+ 0xf5, 0x51, 0xd2, 0xc0, 0xae, 0x21, 0x33, 0xb3, 0x23, 0xfc, 0x15, 0xfc,
+ 0xf9, 0xda, 0xcd, 0xb9, 0xfb, 0x2b, 0x22, 0xd1, 0xdd, 0xd7, 0x04, 0xe2,
+ 0xaf, 0xc3, 0xaf, 0xf7, 0xe3, 0xd5, 0xf9, 0xfb, 0x02, 0xd4, 0xe2, 0xe6,
+ 0xf2, 0xc3, 0x0f, 0x81, 0x34, 0xee, 0xdd, 0x0a, 0xe8, 0x29, 0xf9, 0xfb,
+ 0xfb, 0xd2, 0xb9, 0x48, 0x1a, 0x3d, 0xd6, 0xc3, 0x26, 0x3e, 0xff, 0xd8,
+ 0xe3, 0xf3, 0xf8, 0x00, 0xe4, 0xa2, 0x1b, 0x52, 0xf6, 0x13, 0xf4, 0xfb,
+ 0xe1, 0x3e, 0x24, 0x0e, 0x22, 0xf7, 0xf0, 0x18, 0x1b, 0x13, 0xbd, 0x0a,
+ 0xba, 0xe7, 0x4d, 0x27, 0xb6, 0x9a, 0xeb, 0xef, 0xf8, 0x1a, 0x2b, 0xea,
+ 0x0a, 0x1f, 0x18, 0x29, 0xb7, 0xf8, 0x27, 0xc6, 0x28, 0x2c, 0x0d, 0xc8,
+ 0xc9, 0x0d, 0xc1, 0xb0, 0x36, 0x21, 0xd8, 0xf9, 0xcd, 0xfc, 0x0d, 0xf1,
+ 0xcd, 0x2b, 0x04, 0xc1, 0xe8, 0x29, 0x37, 0x0b, 0xb0, 0xcc, 0x2b, 0xf3,
+ 0xf8, 0xd1, 0xe3, 0xce, 0xe8, 0xf7, 0xe2, 0xf7, 0x21, 0xd9, 0x41, 0xe6,
+ 0x27, 0xb8, 0xd6, 0x0a, 0x11, 0x34, 0xde, 0x35, 0xd5, 0xf2, 0x0f, 0x09,
+ 0xdc, 0xfa, 0x1f, 0xbd, 0x43, 0x20, 0xf1, 0x41, 0xce, 0x0c, 0x02, 0x41,
+ 0x09, 0x1f, 0xa0, 0xc9, 0xc2, 0x3a, 0xe6, 0x38, 0xd1, 0xfb, 0xf1, 0x2e,
+ 0xab, 0x1a, 0x9b, 0x20, 0xec, 0xd5, 0xab, 0x41, 0x07, 0xfd, 0x00, 0xb9,
+ 0xe2, 0x20, 0xc1, 0xd0, 0x09, 0x0d, 0x7b, 0xb2, 0xcd, 0x96, 0xfd, 0xc3,
+ 0xd1, 0xe1, 0x09, 0xd4, 0xd7, 0xc1, 0xec, 0xec, 0x0e, 0xfd, 0xe6, 0x3f,
+ 0xe2, 0x3f, 0xeb, 0x29, 0xe4, 0xcf, 0xcd, 0x54, 0xab, 0x12, 0x32, 0x1b,
+ 0xad, 0xf2, 0x0d, 0x2f, 0xe4, 0xbb, 0x0d, 0x17, 0x06, 0x10, 0x2f, 0xce,
+ 0xd4, 0x01, 0x25, 0x1e, 0xff, 0xe3, 0x0a, 0xb6, 0x09, 0x14, 0x2d, 0xd8,
+ 0x11, 0xc8, 0x0d, 0xf9, 0xfc, 0xb9, 0x20, 0xf5, 0x20, 0xc0, 0xa0, 0x3e,
+ 0x4f, 0xd3, 0x20, 0x1a, 0xfd, 0x50, 0xfa, 0x4c, 0xd8, 0x48, 0x2f, 0xe5,
+ 0x48, 0x2a, 0xd7, 0x96, 0x2d, 0xf6, 0x33, 0x0c, 0xcf, 0xbd, 0x00, 0x29,
+ 0x31, 0xe8, 0xe2, 0x4f, 0xe8, 0x26, 0xd9, 0x59, 0x95, 0x7f, 0xff, 0xb1,
+ 0x15, 0xba, 0xe9, 0x3b, 0xcd, 0xca, 0xda, 0xd3, 0x3a, 0xf1, 0x25, 0x0c,
+ 0x7f, 0xe6, 0x2c, 0x04, 0x11, 0xf0, 0xdf, 0x3a, 0xbd, 0xbc, 0x24, 0xe0,
+ 0xf7, 0x15, 0xbb, 0x18, 0x27, 0xbb, 0x1c, 0xee, 0x35, 0xf3, 0xd0, 0xf7,
+ 0x24, 0xff, 0x07, 0xfe, 0xc4, 0xd9, 0x22, 0x3c, 0xd2, 0xd0, 0xeb, 0x02,
+ 0xc4, 0xd4, 0xe4, 0x18, 0x15, 0xe5, 0x0e, 0xd8, 0x18, 0x9f, 0x1f, 0x00,
+ 0xff, 0xd5, 0xfb, 0xe7, 0x37, 0x19, 0x32, 0x27, 0xbf, 0x2a, 0x26, 0xd1,
+ 0xd6, 0xb1, 0xcd, 0xfb, 0x03, 0xe5, 0x00, 0x9a, 0xc0, 0xf6, 0x0c, 0xdf,
+ 0xba, 0x15, 0x08, 0x12, 0x29, 0x0d, 0x4f, 0x09, 0x22, 0x1b, 0x31, 0xe3,
+ 0xb6, 0xd5, 0x02, 0xc2, 0x00, 0x0c, 0x17, 0xea, 0x36, 0x0a, 0x36, 0x53,
+ 0xe7, 0x1c, 0x09, 0xf3, 0xcb, 0xef, 0xf1, 0xe5, 0x01, 0xc5, 0xf3, 0x3f,
+ 0x31, 0x0d, 0x99, 0xfe, 0x01, 0xbe, 0x01, 0xf3, 0x39, 0xd3, 0xf8, 0xeb,
+ 0xef, 0x26, 0xd3, 0xc5, 0xc7, 0x17, 0xc2, 0x7f, 0x06, 0xe2, 0x20, 0x08,
+ 0xd2, 0xcf, 0xfd, 0x15, 0x40, 0x2d, 0x3c, 0x24, 0x06, 0xc7, 0xeb, 0xf9,
+ 0x1c, 0x3a, 0xb5, 0xff, 0x4d, 0x2a, 0x0e, 0x34, 0xf4, 0x26, 0x24, 0xe6,
+ 0x2c, 0xfa, 0xc5, 0xd5, 0x12, 0x62, 0x04, 0xca, 0x02, 0x00, 0x19, 0xf9,
+ 0xef, 0xec, 0x06, 0x13, 0xee, 0x06, 0x01, 0xdf, 0xf9, 0xfa, 0x09, 0x26,
+ 0x30, 0x41, 0x13, 0x0e, 0xfd, 0xd9, 0x2a, 0x11, 0xfb, 0x20, 0x99, 0x1a,
+ 0xcf, 0xcf, 0xfe, 0x8a, 0x41, 0x09, 0xde, 0x4a, 0x1f, 0x4d, 0xe7, 0xfa,
+ 0x3b, 0x3b, 0x09, 0x0a, 0xf8, 0x0e, 0x43, 0x1a, 0x3b, 0xde, 0xd1, 0x28,
+ 0xbf, 0x17, 0x03, 0x35, 0xd2, 0xbe, 0xf1, 0x01, 0x2d, 0x12, 0xfe, 0xc5,
+ 0xe6, 0x4a, 0x15, 0xc6, 0xb5, 0xfa, 0xc4, 0xf1, 0x21, 0x1c, 0xb3, 0xf4,
+ 0xd6, 0xf6, 0x24, 0x81, 0x42, 0xd0, 0xcf, 0x49, 0x32, 0x4f, 0xda, 0xfa,
+ 0x1c, 0xe7, 0x0c, 0x29, 0x0a, 0x12, 0x24, 0xc9, 0xef, 0x14, 0x10, 0xe8,
+ 0xe2, 0x46, 0x21, 0xf8, 0x05, 0x22, 0x1e, 0x45, 0x03, 0xee, 0xcf, 0xc8,
+ 0xb7, 0x58, 0xd1, 0xc8, 0xd1, 0xe5, 0xe1, 0x42, 0xf5, 0xf0, 0x08, 0xfb,
+ 0x14, 0xfa, 0xfa, 0xb0, 0x14, 0xff, 0xcb, 0xe4, 0x01, 0x00, 0x0f, 0x5a,
+ 0x20, 0xa7, 0x8d, 0x11, 0xc9, 0x02, 0x14, 0x43, 0xe4, 0x37, 0x1a, 0x27,
+ 0xa1, 0x47, 0xe7, 0x3a, 0xcc, 0x29, 0x31, 0xbe, 0x64, 0x0b, 0xd8, 0x09,
+ 0xe5, 0xd7, 0x37, 0xf6, 0x14, 0x32, 0x25, 0x10, 0xe4, 0x53, 0x28, 0xce,
+ 0x49, 0x48, 0x27, 0x3c, 0x26, 0x9f, 0xd0, 0xc3, 0x12, 0x00, 0xf5, 0x7f,
+ 0x33, 0xca, 0xfd, 0x31, 0xdd, 0x66, 0xbe, 0x0f, 0xd4, 0x38, 0x2a, 0x2e,
+ 0x99, 0xb8, 0xf8, 0xd2, 0xc2, 0x39, 0xe4, 0xbd, 0x46, 0xff, 0xa4, 0x52,
+ 0xcd, 0xa9, 0xe2, 0x26, 0xd0, 0x08, 0x49, 0xe9, 0xf9, 0x55, 0x76, 0x0c,
+ 0xf2, 0x0f, 0xee, 0xb0, 0xac, 0xa0, 0x07, 0x25, 0xee, 0xb3, 0xfb, 0x33,
+ 0xcf, 0x25, 0x12, 0x38, 0x0a, 0x20, 0xf9, 0x26, 0xf3, 0xc9, 0xe5, 0x4e,
+ 0xcf, 0xbf, 0xe5, 0xc7, 0xc9, 0xc5, 0x2b, 0xdc, 0x21, 0xc5, 0xb0, 0xdc,
+ 0xd3, 0xc9, 0xf6, 0x06, 0x18, 0x17, 0x29, 0xc8, 0x40, 0x47, 0x16, 0xfd,
+ 0x07, 0x3e, 0xd5, 0x00, 0xcc, 0xd1, 0xe0, 0xe2, 0xdb, 0xbf, 0x22, 0xeb,
+ 0xe8, 0xfc, 0x6c, 0xc8, 0x31, 0xa4, 0x40, 0x62, 0x12, 0x22, 0xc1, 0xb9,
+ 0x3b, 0x19, 0xc7, 0xca, 0xd8, 0xba, 0xe1, 0x0c, 0xf6, 0x2b, 0x4b, 0xd7,
+ 0x37, 0xb4, 0xb0, 0x03, 0x49, 0xb9, 0x0d, 0x00, 0x44, 0xd9, 0xe2, 0xe9,
+ 0x36, 0x17, 0x0f, 0x50, 0x30, 0x2c, 0xd0, 0x04, 0xc5, 0xec, 0xe5, 0x81,
+ 0x14, 0xe6, 0x6e, 0xbc, 0x46, 0x2f, 0x5c, 0xff, 0x39, 0xe7, 0x10, 0x01,
+ 0x9f, 0xb1, 0x38, 0x9d, 0xe2, 0xb5, 0xfe, 0xb8, 0x06, 0x02, 0xf6, 0xa2,
+ 0xa3, 0xdb, 0x23, 0xc8, 0x2d, 0x19, 0xe2, 0xd5, 0x2d, 0xd6, 0xf5, 0x11,
+ 0x2b, 0xcf, 0x59, 0x28, 0xc7, 0x29, 0x9d, 0x3c, 0x0d, 0xba, 0xcb, 0x92,
+ 0xbc, 0x13, 0x51, 0x8c, 0xe8, 0xd5, 0x57, 0x1c, 0x05, 0x30, 0xfd, 0xf9,
+ 0xfc, 0x35, 0xbd, 0xb3, 0xad, 0xfb, 0xbb, 0x84, 0xcf, 0xdf, 0x37, 0xfe,
+ 0x03, 0xbe, 0xba, 0xfc, 0xdf, 0xfb, 0xe4, 0x07, 0x13, 0x04, 0xd5, 0x1e,
+ 0xc7, 0xf3, 0xdd, 0x16, 0x31, 0x38, 0xc9, 0x15, 0x0f, 0xc4, 0xe9, 0x3c,
+ 0xb3, 0x92, 0x1a, 0x01, 0x20, 0xc4, 0xc2, 0xd5, 0xc8, 0xab, 0xbd, 0xe1,
+ 0xe7, 0x33, 0xc0, 0xcf, 0x4d, 0x36, 0xa5, 0xdf, 0xff, 0x18, 0x22, 0xfa,
+ 0xb7, 0xe4, 0x47, 0xf6, 0x52, 0xa9, 0x20, 0xe1, 0x2a, 0x6c, 0xd2, 0xa6,
+ 0x3d, 0x70, 0x3a, 0xe9, 0x06, 0xae, 0xb1, 0xef, 0x0d, 0xe8, 0x44, 0xd3,
+ 0xfc, 0xe7, 0xf9, 0xc0, 0xea, 0xb5, 0xba, 0xe7, 0x03, 0x1e, 0xcc, 0xc1,
+ 0xcc, 0x35, 0x1f, 0xe7, 0xd2, 0xf5, 0x07, 0x30, 0x43, 0xef, 0xfa, 0x11,
+ 0xee, 0x18, 0xe7, 0xe6, 0x39, 0x99, 0x1e, 0xdf, 0x7f, 0xf5, 0x8f, 0xaa,
+ 0xc8, 0x4e, 0xf7, 0xc1, 0xe7, 0xbc, 0xeb, 0xeb, 0x2c, 0x24, 0x9e, 0x27,
+ 0xcc, 0xd3, 0x05, 0x95, 0xea, 0x00, 0x1b, 0xda, 0xfb, 0xf4, 0xdb, 0xec,
+ 0xd8, 0x01, 0x2d, 0x89, 0xd3, 0xd2, 0xe7, 0x20, 0x3d, 0xe8, 0xcb, 0x14,
+ 0xd6, 0xd9, 0x3d, 0xb9, 0xed, 0xa3, 0xbf, 0xb9, 0xf9, 0x43, 0x21, 0xcc,
+ 0xbb, 0x70, 0x4b, 0xc0, 0xcc, 0x0a, 0x02, 0xf9, 0x38, 0xe1, 0xc8, 0xf2,
+ 0x42, 0xc5, 0xa8, 0x47, 0xe8, 0x6b, 0x22, 0xdb, 0xc9, 0x19, 0xa7, 0xe6,
+ 0xf0, 0x4d, 0x18, 0x38, 0x0c, 0x22, 0xcd, 0x0c, 0x24, 0x8c, 0x13, 0x07,
+ 0x30, 0x20, 0xe2, 0xf8, 0xfd, 0x13, 0xf8, 0xc1, 0x24, 0x1b, 0x0c, 0x94,
+ 0xef, 0xcb, 0xf3, 0x13, 0xe1, 0xd6, 0x4e, 0xe3, 0xe7, 0xfb, 0xe8, 0xea,
+ 0xf1, 0xf6, 0xa0, 0x30, 0xd6, 0xc8, 0xb0, 0x96, 0xc9, 0xfc, 0xf2, 0xc2,
+ 0xe5, 0x08, 0xe5, 0xf3, 0xf7, 0xe8, 0x21, 0x28, 0x4d, 0xca, 0xe1, 0x3f,
+ 0x1b, 0x41, 0xe8, 0xf3, 0xdd, 0xd0, 0xaf, 0x81, 0xa2, 0x8c, 0x18, 0xcb,
+ 0xf2, 0xd3, 0xa9, 0x1a, 0xc1, 0xcc, 0x13, 0x3f, 0xdf, 0xac, 0xd7, 0x1c,
+ 0x31, 0x05, 0xc9, 0x3d, 0xe5, 0xdb, 0x98, 0xa6, 0x00, 0xd5, 0xfa, 0x2a,
+ 0xf0, 0xb1, 0x23, 0xbf, 0xb2, 0xc7, 0xc9, 0x37, 0x0d, 0x93, 0xae, 0x3a,
+ 0xb2, 0xec, 0xd3, 0xc9, 0x1b, 0x17, 0xfa, 0xab, 0xda, 0xb5, 0x65, 0xe4,
+ 0xd5, 0xe9, 0xcc, 0x4a, 0xe6, 0xf7, 0xdd, 0x35, 0xce, 0x1e, 0xba, 0x97,
+ 0x3b, 0x03, 0x03, 0x3a, 0x16, 0x2a, 0x05, 0x2e, 0x4b, 0x7e, 0xd7, 0x6a,
+ 0x0a, 0xac, 0x45, 0x07, 0x56, 0x40, 0xa9, 0xda, 0x5a, 0xeb, 0x0c, 0x06,
+ 0xf2, 0x67, 0x15, 0x4b, 0x5f, 0xc5, 0x51, 0x2c, 0x6c, 0x1a, 0x18, 0xf4,
+ 0xf3, 0x36, 0x36, 0x47, 0xbb, 0xd5, 0xd4, 0xf9, 0x04, 0x18, 0xaa, 0xaf,
+ 0xef, 0x29, 0x44, 0xa8, 0x23, 0xe8, 0x3c, 0x04, 0x61, 0x04, 0x09, 0x77,
+ 0xfa, 0x0d, 0x0d, 0xe6, 0x24, 0x1c, 0x14, 0xda, 0x58, 0x65, 0xef, 0x0f,
+ 0xeb, 0xef, 0x30, 0xf9, 0x35, 0xd0, 0x3d, 0x93, 0x38, 0x0e, 0x25, 0xf4,
+ 0xb6, 0xe3, 0x0d, 0x4c, 0xed, 0x3c, 0xa6, 0x4c, 0x0a, 0x15, 0x1a, 0xbe,
+ 0x34, 0xd7, 0xcc, 0x2b, 0x1c, 0x29, 0xd6, 0x24, 0xe5, 0x7b, 0xe2, 0x2a,
+ 0xea, 0xdc, 0x0d, 0x1e, 0x21, 0xd3, 0xfd, 0x23, 0x7f, 0x11, 0x07, 0x76,
+ 0xfa, 0x5e, 0xe0, 0x59, 0xf5, 0xe1, 0xf1, 0xfe, 0x01, 0xfd, 0x45, 0x11,
+ 0x16, 0x41, 0xc0, 0x45, 0x16, 0x07, 0xf4, 0xc1, 0x1b, 0xec, 0xce, 0x1f,
+ 0xe4, 0xd9, 0xe3, 0x5a, 0xd9, 0x1a, 0x09, 0x0b, 0x13, 0x1f, 0x3f, 0x13,
+ 0x4a, 0x01, 0xcb, 0x31, 0x1c, 0x0e, 0x44, 0x33, 0xec, 0x47, 0xe7, 0x42,
+ 0xb5, 0x15, 0xe0, 0xca, 0x2d, 0x19, 0x10, 0x02, 0xd1, 0xcc, 0xc3, 0xd4,
+ 0xdd, 0xf4, 0xfb, 0xae, 0xd5, 0xaf, 0xc2, 0xde, 0x20, 0xe9, 0x3e, 0xf4,
+ 0xe3, 0x2e, 0xa6, 0x1f, 0x3b, 0xda, 0xca, 0x49, 0x10, 0x05, 0xce, 0x1c,
+ 0x34, 0x1b, 0xfe, 0xfa, 0xdb, 0x05, 0xdb, 0xf2, 0x08, 0x3f, 0x09, 0xf6,
+ 0xe9, 0xce, 0xc2, 0x03, 0x51, 0xb2, 0xee, 0xc6, 0xe4, 0x19, 0xcd, 0xa6,
+ 0xca, 0x09, 0x81, 0x1c, 0x21, 0x0e, 0x0b, 0xd9, 0x1a, 0x2c, 0xf1, 0xcb,
+ 0xce, 0xe7, 0xd1, 0xc9, 0x28, 0xf4, 0xbc, 0x25, 0x46, 0x29, 0xc7, 0x2b,
+ 0xec, 0xc3, 0xcf, 0x28, 0x14, 0x32, 0xfc, 0x21, 0x2b, 0x0d, 0xb8, 0x6c,
+ 0xc0, 0x13, 0xf8, 0xf2, 0xd2, 0xce, 0xb1, 0xc3, 0xda, 0x28, 0x04, 0xbd,
+ 0xfe, 0x34, 0xb1, 0xf6, 0xf8, 0x24, 0x51, 0xef, 0x35, 0xc0, 0xe5, 0xe3,
+ 0x44, 0xe1, 0xc5, 0xc0, 0xd8, 0x2f, 0x2c, 0xc0, 0xd2, 0x06, 0xec, 0x1d,
+ 0xe0, 0x3e, 0xfe, 0x52, 0x31, 0xe3, 0x30, 0xfb, 0xfe, 0x1b, 0xcc, 0xc4,
+ 0x2e, 0x40, 0x0b, 0xce, 0xe7, 0x0a, 0x38, 0xe8, 0xb2, 0x07, 0x20, 0x65,
+ 0xc9, 0xab, 0xc7, 0x56, 0xf2, 0x4f, 0x2e, 0xd9, 0x17, 0x21, 0xdd, 0x66,
+ 0x1b, 0x54, 0x81, 0x8b, 0x30, 0x78, 0x04, 0x45, 0xea, 0x0a, 0x47, 0x30,
+ 0xba, 0xca, 0xb9, 0xe8, 0x40, 0xf0, 0xb5, 0x07, 0xee, 0x15, 0xbb, 0x46,
+ 0x28, 0xd7, 0xee, 0xcf, 0x27, 0x38, 0x28, 0x19, 0xaa, 0xca, 0xde, 0x3e,
+ 0x52, 0xb3, 0xdf, 0x49, 0xb6, 0x03, 0x05, 0xc1, 0x2f, 0x39, 0xe9, 0xc6,
+ 0xf2, 0xfd, 0xcd, 0xde, 0xdc, 0x35, 0x3c, 0xf5, 0x02, 0x5f, 0x2e, 0xe5,
+ 0x25, 0xe1, 0xe8, 0xcb, 0xfa, 0xd6, 0x10, 0x2c, 0xc0, 0x2a, 0xfe, 0x20,
+ 0x46, 0x0a, 0x9b, 0x22, 0x22, 0x02, 0x0e, 0xc0, 0xb7, 0x1b, 0xec, 0x67,
+ 0xfe, 0x01, 0x23, 0x3a, 0x3c, 0x13, 0xc9, 0x2f, 0x45, 0x25, 0x09, 0xd3,
+ 0x5c, 0xe5, 0xed, 0x81, 0x08, 0xe6, 0xed, 0xe2, 0x2a, 0xc9, 0x36, 0xfd,
+ 0x42, 0x27, 0x2b, 0x23, 0x3e, 0xe8, 0x37, 0xcd, 0xfb, 0xc7, 0xf1, 0xdc,
+ 0x2a, 0x2d, 0xe8, 0xe6, 0xf2, 0xd7, 0x2d, 0xd6, 0xe4, 0xd7, 0xc8, 0xb3,
+ 0xfc, 0xd7, 0xcd, 0xd9, 0xe4, 0x3c, 0xb3, 0xca, 0xbb, 0x3e, 0xc7, 0xac,
+ 0x05, 0xb7, 0x21, 0xd3, 0x1d, 0xfd, 0xa4, 0xe3, 0xc6, 0x35, 0xe3, 0x2a,
+ 0xd2, 0x15, 0xf7, 0xd8, 0xe4, 0xe2, 0xe3, 0xbd, 0xda, 0xcc, 0xc6, 0x3f,
+ 0xf4, 0xf3, 0xf9, 0x10, 0x1a, 0xfa, 0xed, 0xc6, 0xba, 0xc6, 0xfc, 0xdf,
+ 0x2d, 0x15, 0xe4, 0x40, 0x34, 0x33, 0xba, 0x01, 0xde, 0xef, 0xf5, 0xde,
+ 0xae, 0xab, 0x2d, 0xd0, 0xe8, 0xfe, 0x05, 0x37, 0xfc, 0x39, 0xca, 0x29,
+ 0x95, 0xf3, 0xc3, 0x02, 0xa6, 0xde, 0x0d, 0xdd, 0xe0, 0xf5, 0xcc, 0x13,
+ 0xe7, 0x1a, 0xe8, 0xe4, 0xfc, 0x03, 0xa8, 0xdd, 0xb6, 0x0d, 0xfc, 0xe7,
+ 0x10, 0x37, 0xb0, 0x25, 0xc2, 0x2a, 0x12, 0x35, 0xc9, 0x48, 0x00, 0x23,
+ 0xe7, 0x06, 0x05, 0xf4, 0xea, 0x1a, 0x15, 0x32, 0xd2, 0xe5, 0x4c, 0xc5,
+ 0xfa, 0xfc, 0x1e, 0xaf, 0xfd, 0x06, 0xe2, 0xda, 0xb2, 0x2b, 0xef, 0xbe,
+ 0xf0, 0xd9, 0xbd, 0xe8, 0xcd, 0xd7, 0x07, 0x2d, 0x21, 0xc9, 0x28, 0x39,
+ 0xcf, 0x2b, 0x02, 0x4a, 0xc2, 0x02, 0xd5, 0x50, 0x47, 0x14, 0x2b, 0xd8,
+ 0x24, 0xd3, 0xe3, 0x15, 0xef, 0x01, 0x25, 0x10, 0x20, 0xbe, 0x23, 0xd8,
+ 0x46, 0xa8, 0xd2, 0xff, 0x0e, 0x2d, 0x2e, 0xae, 0xa8, 0x3c, 0x0f, 0xbf,
+ 0xdd, 0xcf, 0x1c, 0x34, 0xd7, 0x27, 0x17, 0x20, 0xc0, 0x37, 0xea, 0x58,
+ 0x01, 0x11, 0x81, 0x10, 0xfe, 0x23, 0xe0, 0xf2, 0xe7, 0x0b, 0xbc, 0xf2,
+ 0xbc, 0x45, 0xd6, 0xee, 0x44, 0x14, 0x0e, 0x42, 0x06, 0xca, 0x4e, 0x37,
+ 0xff, 0xe2, 0xcc, 0xda, 0x24, 0x17, 0x28, 0x08, 0xbb, 0x1b, 0x05, 0xb5,
+ 0x1c, 0xc8, 0xfc, 0x2b, 0x4e, 0xe3, 0xe5, 0x42, 0xc3, 0xee, 0x43, 0x49,
+ 0x11, 0xe0, 0x0c, 0x52, 0x0b, 0x19, 0xe1, 0x27, 0xe9, 0xfd, 0x3e, 0xc5,
+ 0x19, 0xd9, 0x42, 0xa9, 0xe5, 0xe5, 0x0f, 0xcd, 0x04, 0xc7, 0x20, 0xc9,
+ 0xe2, 0x29, 0x01, 0xb9, 0xff, 0xde, 0x2f, 0xd0, 0x34, 0xff, 0x28, 0xe9,
+ 0x11, 0xdb, 0xfc, 0xe0, 0xe9, 0xc2, 0xf2, 0x2a, 0x1e, 0x03, 0x0d, 0xd9,
+ 0xc1, 0x44, 0xdb, 0x09, 0xc6, 0xde, 0xd3, 0x29, 0xd9, 0xf9, 0x2f, 0xde,
+ 0x1a, 0xd6, 0xd0, 0xcd, 0xf9, 0x03, 0x06, 0xf6, 0x2b, 0xeb, 0x18, 0xf4,
+ 0xf0, 0xc0, 0xe4, 0x92, 0xfb, 0x42, 0xd5, 0xa9, 0x07, 0x13, 0x06, 0xea,
+ 0xf7, 0x30, 0x25, 0x08, 0x02, 0xcd, 0xd8, 0x04, 0x1a, 0xfa, 0x0d, 0xd9,
+ 0xf4, 0xf2, 0x81, 0x20, 0xfe, 0xd6, 0xfb, 0x20, 0xce, 0x08, 0x11, 0x97,
+ 0x0c, 0xeb, 0xf3, 0xd8, 0x22, 0x15, 0x01, 0x28, 0xf6, 0xc0, 0xea, 0xf1,
+ 0x07, 0xbf, 0xdf, 0xd0, 0x17, 0xee, 0x0d, 0xc0, 0xde, 0x25, 0x0f, 0x36,
+ 0x40, 0xd7, 0xdd, 0xf5, 0x06, 0xab, 0xe9, 0x44, 0x01, 0x32, 0xd2, 0x4b,
+ 0x04, 0xd0, 0xd8, 0x2b, 0xf2, 0xe7, 0x07, 0xd8, 0x01, 0x2f, 0xcf, 0x47,
+ 0x22, 0x00, 0x87, 0x2a, 0xbe, 0x3e, 0x17, 0x47, 0x04, 0xc9, 0xaa, 0xe2,
+ 0x27, 0xdd, 0x35, 0x23, 0x0a, 0x12, 0xe3, 0x61, 0xd5, 0xd1, 0xe9, 0x45,
+ 0xf1, 0x60, 0x1b, 0xcd, 0x11, 0xfe, 0xd0, 0x14, 0xc1, 0xea, 0xa6, 0x4d,
+ 0x20, 0x11, 0xd7, 0xa4, 0x1e, 0xe3, 0x4c, 0x54, 0xda, 0x25, 0xd8, 0xee,
+ 0x5f, 0xef, 0x00, 0xe4, 0xdf, 0x31, 0xc1, 0xd5, 0x1a, 0xd4, 0xd3, 0xf3,
+ 0xfc, 0xb9, 0x12, 0xc8, 0x18, 0xe8, 0xe5, 0x40, 0xb1, 0xd7, 0xb9, 0x6f,
+ 0xf0, 0x32, 0x3e, 0x4d, 0xee, 0xe2, 0x26, 0xe9, 0xca, 0xfb, 0x9a, 0x23,
+ 0x02, 0xce, 0xe3, 0xdc, 0x28, 0xc9, 0xf7, 0x5d, 0xa4, 0xa7, 0x15, 0x19,
+ 0x05, 0xd3, 0xd4, 0x13, 0xeb, 0x1b, 0xf3, 0xa6, 0x18, 0xc0, 0xb3, 0x61,
+ 0x02, 0x07, 0xed, 0xfe, 0xc1, 0xf7, 0xed, 0x1f, 0xfa, 0x19, 0x55, 0x48,
+ 0x49, 0xf2, 0xcc, 0x36, 0xef, 0x9a, 0x2b, 0x2d, 0x3a, 0x04, 0x0c, 0x7f,
+ 0xd7, 0x45, 0xe7, 0x84, 0xcb, 0x24, 0x0c, 0xf4, 0x08, 0xe4, 0xbd, 0xbd,
+ 0xc3, 0xb0, 0x26, 0x2c, 0xcc, 0xe7, 0x40, 0x2b, 0x06, 0x25, 0xe6, 0x18,
+ 0x18, 0x07, 0x38, 0xb6, 0xd6, 0x11, 0xec, 0x81, 0x15, 0x20, 0x4f, 0xfc,
+ 0x00, 0xc3, 0x0a, 0xcb, 0x1e, 0xcb, 0xc6, 0x4f, 0x59, 0x48, 0x12, 0xf6,
+ 0xba, 0x0c, 0x60, 0x1c, 0xdd, 0x49, 0xf4, 0xb4, 0xe3, 0xcd, 0xf1, 0xe9,
+ 0xd0, 0xdd, 0x2e, 0xc6, 0xb6, 0x05, 0x13, 0x2d, 0xbe, 0xfb, 0x1c, 0xe7,
+ 0xea, 0xe5, 0x29, 0xd0, 0x20, 0x1f, 0x24, 0xb7, 0xf5, 0xbc, 0xf0, 0x29,
+ 0x4a, 0x29, 0xf1, 0x27, 0x10, 0x09, 0x26, 0x09, 0xef, 0xd8, 0xa4, 0xb8,
+ 0xe2, 0xdd, 0x2f, 0xc3, 0x37, 0xe4, 0xcd, 0xb5, 0xd4, 0xc8, 0x39, 0xbe,
+ 0xe5, 0x8e, 0x42, 0xf9, 0xe8, 0x10, 0xc1, 0x26, 0xbf, 0x24, 0xf4, 0xd7,
+ 0x15, 0xf5, 0xc0, 0x93, 0xe3, 0x54, 0x20, 0xd0, 0x26, 0xae, 0x4f, 0x0c,
+ 0x4b, 0xd2, 0xf3, 0x4d, 0x0e, 0x2b, 0x19, 0x3e, 0x27, 0x47, 0xad, 0xc8,
+ 0xf4, 0x45, 0x41, 0xfc, 0x20, 0xf5, 0xff, 0x1f, 0x2d, 0xf6, 0x29, 0x2a,
+ 0x16, 0xe6, 0xcc, 0x45, 0xd4, 0x7f, 0x99, 0x36, 0x1e, 0x08, 0xbc, 0xbe,
+ 0x06, 0xfa, 0xfa, 0xf6, 0x02, 0xb9, 0x14, 0x0a, 0x14, 0x1a, 0xf1, 0x1f,
+ 0x07, 0x02, 0xdd, 0xee, 0xfe, 0x38, 0x19, 0x13, 0xce, 0xa1, 0x08, 0x2f,
+ 0xf5, 0xc6, 0xcc, 0xf0, 0x35, 0x39, 0x19, 0xe1, 0x2e, 0x37, 0xc5, 0x41,
+ 0xee, 0xfc, 0x07, 0x28, 0xb9, 0xfd, 0xb1, 0xf2, 0x10, 0x1d, 0x19, 0x37,
+ 0xdf, 0xea, 0x37, 0x07, 0xf2, 0xbb, 0xc0, 0x29, 0xdb, 0xb6, 0xc5, 0x1e,
+ 0x2d, 0xf1, 0x16, 0xd3, 0xeb, 0xd9, 0x0d, 0xfe, 0xf7, 0xcc, 0x26, 0xed,
+ 0xfb, 0xcd, 0xc9, 0x03, 0x1f, 0x3f, 0xe3, 0x3d, 0x10, 0x16, 0x11, 0x32,
+ 0xd6, 0xdf, 0xf4, 0x29, 0xa0, 0x06, 0x39, 0xd8, 0xe0, 0x2e, 0xc9, 0x3a,
+ 0xfe, 0xef, 0xf3, 0x1c, 0xde, 0xd2, 0x0d, 0xd3, 0x0a, 0xca, 0x3b, 0xf6,
+ 0xcc, 0xd9, 0x16, 0xee, 0xf3, 0x03, 0x1f, 0x1f, 0xc6, 0xbe, 0x26, 0xc8,
+ 0xd7, 0xc9, 0x0a, 0x41, 0xe0, 0xe4, 0x26, 0xf2, 0xc1, 0x3d, 0x1f, 0x3d,
+ 0xd0, 0x43, 0x1e, 0xd5, 0xf7, 0xaf, 0x00, 0x10, 0x4c, 0xea, 0x54, 0xef,
+ 0xb8, 0xf7, 0xd0, 0x4b, 0x10, 0xdc, 0x61, 0x1a, 0xa2, 0xde, 0x33, 0x13,
+ 0x23, 0x19, 0x30, 0xfa, 0xca, 0xd0, 0x1f, 0x2f, 0x5b, 0xd0, 0x2c, 0x0a,
+ 0xf5, 0xff, 0x24, 0x35, 0x30, 0x15, 0x5a, 0xe8, 0xe3, 0xe6, 0xfb, 0xf5,
+ 0x07, 0x44, 0x29, 0xde, 0x17, 0x02, 0x14, 0x01, 0x17, 0x3d, 0xf5, 0x0f,
+ 0x11, 0x18, 0xcb, 0xd4, 0xdb, 0xd5, 0x30, 0x14, 0xff, 0xd8, 0x41, 0xd6,
+ 0xe4, 0x4f, 0x64, 0x68, 0x1a, 0x1e, 0x0f, 0x38, 0x50, 0x23, 0x2b, 0x11,
+ 0x01, 0xca, 0xf7, 0x46, 0x44, 0xc9, 0x09, 0xf8, 0x81, 0x3f, 0x3f, 0xc7,
+ 0xfe, 0x4e, 0xe6, 0xfe, 0xce, 0xae, 0x41, 0x32, 0x38, 0x1f, 0xf5, 0x08,
+ 0xcd, 0x21, 0xee, 0xb4, 0xed, 0xed, 0xef, 0x14, 0x09, 0xc5, 0x30, 0xc4,
+ 0xc9, 0x30, 0x4e, 0x1e, 0xba, 0xf0, 0x16, 0x0c, 0xe9, 0x46, 0xcc, 0xde,
+ 0x16, 0xb3, 0x1a, 0xe6, 0xef, 0xbd, 0x44, 0x34, 0xd8, 0xfd, 0x1d, 0x58,
+ 0xb6, 0x34, 0x14, 0x00, 0xad, 0xb3, 0xf7, 0x27, 0x02, 0x17, 0x13, 0x34,
+ 0x1a, 0x41, 0x0f, 0x07, 0xac, 0x27, 0x81, 0xce, 0x38, 0xc6, 0x34, 0x13,
+ 0x0f, 0xd8, 0x4b, 0xee, 0xc6, 0x2b, 0x13, 0xda, 0x41, 0x3c, 0x24, 0xca,
+ 0xbc, 0xe9, 0xf2, 0xbf, 0x40, 0xef, 0x4e, 0x0c, 0x42, 0x9a, 0xc6, 0x3a,
+ 0x33, 0x0a, 0x07, 0x4a, 0x0f, 0x10, 0xf7, 0xd0, 0xda, 0xd0, 0xcf, 0xef,
+ 0xf5, 0xfc, 0xc8, 0x3d, 0x13, 0xed, 0xbf, 0x1f, 0x1d, 0xc1, 0x29, 0xc0,
+ 0xd4, 0xf2, 0xd5, 0xe4, 0xa3, 0xc9, 0x0c, 0x5a, 0x0a, 0x35, 0xf3, 0xe8,
+ 0xec, 0xf5, 0x08, 0xfc, 0xc0, 0x0b, 0xc0, 0xff, 0x6d, 0xd1, 0x2e, 0xc7,
+ 0x23, 0xb8, 0xe9, 0xa9, 0x31, 0x03, 0xf9, 0xba, 0x02, 0xd4, 0x42, 0xb9,
+ 0x66, 0xd7, 0x2a, 0x8b, 0xeb, 0xd3, 0xd9, 0x0e, 0xfe, 0x05, 0xcb, 0xe2,
+ 0x10, 0xe1, 0x07, 0xbb, 0xf1, 0x3f, 0x30, 0xd3, 0x17, 0xdf, 0xd1, 0xa3,
+ 0x3d, 0x96, 0xd1, 0xf6, 0xb7, 0x0e, 0xca, 0xd6, 0xda, 0x0f, 0xaf, 0xf0,
+ 0x02, 0xfc, 0xdb, 0xd6, 0xe7, 0xda, 0xee, 0x0a, 0x38, 0x12, 0x3d, 0xd0,
+ 0x1c, 0x23, 0xc5, 0x02, 0x04, 0xdb, 0xf2, 0xe6, 0x07, 0xd2, 0x29, 0xde,
+ 0x08, 0x3e, 0xfe, 0x31, 0xde, 0xe9, 0x3f, 0xaf, 0x04, 0xac, 0x02, 0x22,
+ 0xbe, 0x24, 0x91, 0xc4, 0xe9, 0xe5, 0xf3, 0x18, 0xe0, 0xf9, 0xea, 0x1d,
+ 0x2e, 0xcc, 0xc1, 0xd4, 0xf7, 0xc7, 0xf9, 0x41, 0x01, 0x35, 0x1c, 0xf0,
+ 0x54, 0xfb, 0x05, 0x31, 0x08, 0x10, 0xfd, 0xe0, 0x0e, 0x06, 0x08, 0xd4,
+ 0xb9, 0x14, 0xec, 0xd0, 0x09, 0x0d, 0x26, 0xe1, 0x1d, 0xee, 0x13, 0x32,
+ 0xa2, 0x3f, 0x81, 0x0b, 0xfc, 0xca, 0x1a, 0xcf, 0x17, 0xb2, 0xf1, 0x1d,
+ 0xe0, 0x0a, 0xbc, 0x1e, 0x4e, 0x9a, 0x36, 0x0b, 0x49, 0x15, 0x45, 0xcd,
+ 0x0c, 0xf3, 0x1f, 0x63, 0xd8, 0x45, 0xea, 0x6e, 0x26, 0x4d, 0x30, 0x2a,
+ 0x2a, 0x46, 0xd8, 0x39, 0xc6, 0xd9, 0xfd, 0x29, 0xca, 0x1b, 0x3c, 0x1a,
+ 0xd4, 0x0c, 0xb3, 0x0f, 0xf2, 0x71, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00,
+ 0x80, 0x00, 0x00, 0x00, 0x97, 0xf0, 0xff, 0xff, 0x27, 0x91, 0xff, 0xff,
+ 0xb5, 0x23, 0x00, 0x00, 0x64, 0x23, 0x00, 0x00, 0x4d, 0xf1, 0xff, 0xff,
+ 0xbf, 0x50, 0x00, 0x00, 0xa0, 0x18, 0x00, 0x00, 0xa5, 0xd1, 0xff, 0xff,
+ 0xb1, 0x04, 0x00, 0x00, 0x9e, 0x20, 0x00, 0x00, 0x22, 0xd8, 0xff, 0xff,
+ 0x1a, 0xf2, 0xff, 0xff, 0x85, 0x22, 0x00, 0x00, 0x1f, 0x1b, 0x00, 0x00,
+ 0x61, 0x1c, 0x00, 0x00, 0x21, 0xf5, 0xff, 0xff, 0x31, 0xfc, 0xff, 0xff,
+ 0xf8, 0x52, 0x00, 0x00, 0x0d, 0x68, 0x00, 0x00, 0x0f, 0x6b, 0x00, 0x00,
+ 0xb5, 0xa0, 0xff, 0xff, 0xa1, 0x25, 0x00, 0x00, 0x0d, 0xec, 0xff, 0xff,
+ 0x2a, 0x6f, 0x00, 0x00, 0xe2, 0xf4, 0xff, 0xff, 0x67, 0x52, 0x00, 0x00,
+ 0x8e, 0x09, 0x00, 0x00, 0x0f, 0x31, 0x00, 0x00, 0xdb, 0x0b, 0x00, 0x00,
+ 0x55, 0xcd, 0xff, 0xff, 0x06, 0x34, 0x00, 0x00, 0x5f, 0x0e, 0x00, 0x00,
+ 0x7e, 0x72, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00,
+ 0xd8, 0xcc, 0x09, 0x11, 0xa7, 0x3e, 0x27, 0xec, 0x3c, 0xdd, 0xba, 0x9b,
+ 0x14, 0x02, 0x81, 0x36, 0xf8, 0x18, 0xc1, 0x3b, 0xf3, 0xf1, 0x1f, 0x3a,
+ 0x8f, 0xa7, 0x8b, 0xfe, 0x4c, 0xaa, 0x16, 0xd3, 0xfa, 0x01, 0x33, 0x38,
+ 0x4a, 0xf5, 0xc8, 0xca, 0x04, 0x9f, 0xf4, 0xb7, 0xf5, 0x20, 0x3b, 0x04,
+ 0xed, 0xce, 0x3a, 0x3e, 0x48, 0xf8, 0xcc, 0x09, 0xee, 0xd2, 0xc5, 0x60,
+ 0x3c, 0x2e, 0x02, 0x5f, 0xd1, 0x0b, 0x9b, 0xbb, 0xef, 0xa5, 0x95, 0xe9,
+ 0x64, 0xd0, 0x25, 0x87, 0xfc, 0xe7, 0xfa, 0x0e, 0x16, 0xe4, 0xd9, 0xbe,
+ 0x1a, 0xac, 0x32, 0x30, 0xb4, 0x1b, 0x07, 0xde, 0x14, 0xb0, 0xd6, 0x1a,
+ 0xfe, 0xa8, 0x46, 0xd8, 0xc4, 0xf9, 0xe8, 0xf4, 0x21, 0x21, 0xbc, 0x03,
+ 0xda, 0xe7, 0xbb, 0xe4, 0x3b, 0xd6, 0xf4, 0x16, 0x22, 0x17, 0xc9, 0x3d,
+ 0x11, 0x06, 0xcd, 0x1b, 0xe1, 0xaa, 0xec, 0x0f, 0x29, 0xcc, 0x3d, 0xd9,
+ 0x1f, 0x3c, 0xd1, 0xf5, 0xee, 0x29, 0x4e, 0x55, 0x36, 0xfa, 0xb4, 0x5f,
+ 0xb5, 0x18, 0x24, 0x33, 0x0e, 0xc1, 0xde, 0x42, 0xda, 0x40, 0xde, 0x6e,
+ 0x1b, 0xc4, 0x1c, 0x1c, 0x1c, 0x11, 0x0a, 0x01, 0xba, 0xc2, 0xd6, 0x14,
+ 0x6b, 0x1f, 0xa5, 0x11, 0xf4, 0xf6, 0x98, 0x5f, 0x06, 0xa6, 0xf1, 0xd5,
+ 0xd7, 0xab, 0xcc, 0xff, 0xd7, 0xef, 0xdb, 0x02, 0xab, 0x4a, 0x89, 0x0d,
+ 0xfa, 0xdf, 0xd7, 0x22, 0x04, 0x0e, 0xfa, 0xf2, 0x11, 0x25, 0x70, 0xdf,
+ 0x3e, 0xab, 0x92, 0x4b, 0xc9, 0x46, 0xea, 0xc6, 0xc6, 0x1b, 0x49, 0xe8,
+ 0xdb, 0x22, 0x1f, 0x98, 0x18, 0x3a, 0xb0, 0x57, 0x04, 0xf2, 0x52, 0x42,
+ 0x40, 0xff, 0x60, 0xf4, 0x72, 0xf8, 0x47, 0x08, 0x54, 0x09, 0x08, 0x53,
+ 0xb5, 0xd5, 0x27, 0xbf, 0x2b, 0x24, 0x05, 0x51, 0x21, 0xba, 0x07, 0x34,
+ 0x3f, 0x1c, 0x3b, 0x76, 0xf9, 0x42, 0xbd, 0xa2, 0x01, 0xc8, 0xeb, 0x33,
+ 0x57, 0x32, 0x44, 0x31, 0xc4, 0x46, 0xb3, 0x38, 0xb1, 0xeb, 0xba, 0xf7,
+ 0xf9, 0x36, 0xf3, 0x67, 0xfd, 0xbd, 0x0d, 0xfe, 0xff, 0x64, 0x96, 0xba,
+ 0x0c, 0x10, 0xfb, 0x2b, 0xab, 0x47, 0xe6, 0x40, 0xfc, 0x3a, 0x3a, 0x5a,
+ 0x3d, 0x16, 0xb0, 0x17, 0x4b, 0xba, 0xc2, 0xf9, 0xcf, 0x42, 0x3a, 0x08,
+ 0x28, 0x1c, 0x58, 0xbe, 0xd8, 0xec, 0xf4, 0x00, 0xe6, 0xc0, 0x4d, 0xf9,
+ 0x81, 0x08, 0xfb, 0xe6, 0x2f, 0xe3, 0x15, 0xdd, 0xd8, 0xce, 0xd3, 0xcd,
+ 0xcd, 0xe5, 0xe1, 0xd4, 0xee, 0x4a, 0xe9, 0xde, 0xf8, 0x2e, 0xdf, 0x04,
+ 0xc9, 0x1f, 0x41, 0x13, 0x29, 0xa3, 0xf7, 0xf5, 0xeb, 0xf1, 0xee, 0xa4,
+ 0xb7, 0xe5, 0xf3, 0xd1, 0x0b, 0xd7, 0x1e, 0xc6, 0x4d, 0xe4, 0x1a, 0xd3,
+ 0x0f, 0x18, 0xfe, 0xfa, 0xce, 0x07, 0xb8, 0x27, 0xab, 0x15, 0x36, 0x01,
+ 0x2d, 0xfd, 0xec, 0x1f, 0x0a, 0x15, 0x05, 0x42, 0xc6, 0x27, 0x36, 0x1c,
+ 0x0d, 0x19, 0xcf, 0x38, 0x17, 0xd2, 0xfb, 0xe5, 0xe7, 0x3d, 0x24, 0xd6,
+ 0xee, 0x23, 0x47, 0xdf, 0xfd, 0x37, 0x26, 0x3d, 0x39, 0x2b, 0x10, 0x3c,
+ 0x84, 0x24, 0x32, 0xce, 0xef, 0xdc, 0x40, 0xf2, 0xef, 0x1b, 0xf6, 0xdd,
+ 0xc0, 0xf2, 0x27, 0x29, 0xf9, 0xf8, 0x19, 0x34, 0xba, 0x3b, 0xff, 0xc6,
+ 0xd5, 0xdc, 0xd7, 0x0d, 0x16, 0xd1, 0x02, 0xfd, 0xcf, 0xcf, 0xc0, 0xb1,
+ 0xb2, 0x4e, 0x09, 0xe2, 0xe9, 0x06, 0xd2, 0xea, 0x1b, 0xbc, 0x3f, 0xca,
+ 0xdf, 0x1b, 0xc3, 0x0e, 0xa8, 0xd8, 0x12, 0x43, 0x16, 0x23, 0xc8, 0x39,
+ 0x39, 0x06, 0x10, 0xff, 0x1a, 0x0b, 0x16, 0x21, 0x23, 0x02, 0xdc, 0x1d,
+ 0x2e, 0x12, 0x0a, 0x12, 0x1a, 0xe7, 0xc3, 0x1c, 0x11, 0xef, 0x33, 0x1a,
+ 0x0c, 0x00, 0x3d, 0xc0, 0x0f, 0xd9, 0xbf, 0x17, 0x15, 0x1d, 0x19, 0xff,
+ 0x00, 0xc7, 0xce, 0xe3, 0x01, 0xd8, 0x00, 0xc2, 0x12, 0xdb, 0x17, 0x07,
+ 0xd8, 0x1a, 0xf7, 0xdc, 0x0b, 0x21, 0xe3, 0xdf, 0xa9, 0x3f, 0x02, 0xe7,
+ 0x00, 0x1e, 0x10, 0xcf, 0x38, 0x0a, 0xdf, 0x06, 0x2c, 0xa8, 0xcb, 0xf7,
+ 0xf4, 0xe0, 0xfb, 0xb7, 0xd8, 0x42, 0x3e, 0x04, 0x4e, 0xb6, 0x2a, 0xe7,
+ 0x32, 0x0a, 0xde, 0xc7, 0xfd, 0x2a, 0x0b, 0x3b, 0xb2, 0x0e, 0x02, 0xd1,
+ 0x67, 0x0b, 0x04, 0x2b, 0x21, 0xf7, 0xd8, 0x30, 0x31, 0x17, 0x40, 0xca,
+ 0xf4, 0xf9, 0xe3, 0x7f, 0x38, 0xda, 0x27, 0xf5, 0x19, 0x38, 0x2b, 0xec,
+ 0xd8, 0x1c, 0xb2, 0x0a, 0x0f, 0x05, 0x22, 0xd9, 0x5e, 0xff, 0xe7, 0x1e,
+ 0xf7, 0xc4, 0x35, 0x10, 0x38, 0x08, 0xfe, 0xde, 0xe8, 0x3b, 0x23, 0x58,
+ 0xf6, 0xd4, 0x11, 0x01, 0xf7, 0x02, 0x0a, 0x3e, 0xd7, 0x9e, 0xfa, 0xf6,
+ 0xcf, 0x1d, 0xd7, 0x31, 0x03, 0xdf, 0xdf, 0x37, 0xf9, 0x31, 0xd6, 0x22,
+ 0xf7, 0x04, 0x2f, 0xe0, 0xd2, 0x60, 0x39, 0x32, 0xca, 0x02, 0x2e, 0x1a,
+ 0x4b, 0x01, 0x9f, 0x3e, 0xdd, 0xc0, 0xf4, 0x2e, 0xf8, 0xd5, 0x09, 0xa2,
+ 0x15, 0xe5, 0x18, 0xe6, 0x2d, 0xd7, 0x1f, 0x2a, 0xd8, 0x2f, 0x06, 0x18,
+ 0x25, 0xdb, 0xf9, 0x30, 0x16, 0x1a, 0xf7, 0x18, 0x65, 0xf8, 0x24, 0x1d,
+ 0xf4, 0x1d, 0x21, 0x58, 0x07, 0xf6, 0xc6, 0x2e, 0x60, 0xfe, 0xd7, 0x07,
+ 0xfc, 0xe0, 0x33, 0xe6, 0x25, 0xd4, 0xf3, 0xec, 0x22, 0x6f, 0xf7, 0x77,
+ 0xb0, 0x0d, 0x03, 0xdb, 0x22, 0xf2, 0x05, 0xed, 0xdf, 0xfc, 0xdd, 0xe3,
+ 0x0b, 0x19, 0xfa, 0x06, 0x0f, 0xf0, 0x9b, 0x05, 0xd4, 0x09, 0xf0, 0x01,
+ 0x00, 0xa5, 0x40, 0x0c, 0xa1, 0x2d, 0x33, 0x1a, 0x2d, 0xdb, 0x35, 0xe2,
+ 0x2e, 0x14, 0xe5, 0x23, 0xd0, 0xba, 0xeb, 0x2a, 0xda, 0xe3, 0x0a, 0xc6,
+ 0x1b, 0x0c, 0x39, 0x0a, 0xdd, 0x46, 0x3e, 0xe2, 0xfc, 0xca, 0x49, 0x16,
+ 0x1c, 0xec, 0xba, 0x08, 0x4e, 0x1c, 0x26, 0xf1, 0x15, 0x15, 0xf2, 0x4c,
+ 0xf3, 0x09, 0xcc, 0x29, 0x07, 0x0c, 0xf0, 0x0c, 0xf1, 0xd7, 0xf0, 0xcb,
+ 0xcd, 0xfd, 0xee, 0xc4, 0x08, 0xd8, 0x1c, 0x23, 0xec, 0x04, 0xba, 0x17,
+ 0xa5, 0xce, 0xcc, 0xca, 0x4d, 0x5d, 0x04, 0x0e, 0xec, 0xd5, 0xeb, 0x16,
+ 0xb1, 0xd1, 0xbe, 0x17, 0xf1, 0xc7, 0xd8, 0x60, 0xbf, 0x1d, 0xea, 0x96,
+ 0xc2, 0xf1, 0x0c, 0xd7, 0x12, 0x15, 0x06, 0x04, 0x5d, 0xe9, 0x7a, 0xd0,
+ 0xfb, 0x4b, 0xca, 0xfc, 0xae, 0xef, 0xd0, 0x38, 0xfe, 0xf6, 0xe9, 0xcb,
+ 0xff, 0xf8, 0x1b, 0x0c, 0xe5, 0x1e, 0x15, 0xb5, 0x19, 0x2c, 0x35, 0xfd,
+ 0x2b, 0x05, 0x0a, 0x1c, 0x25, 0x21, 0x22, 0xee, 0x0d, 0xef, 0x0a, 0xed,
+ 0xe3, 0x28, 0x02, 0x07, 0x1b, 0xf6, 0x11, 0x17, 0x0d, 0xca, 0x12, 0x8a,
+ 0x17, 0x05, 0xf4, 0xf8, 0xde, 0xd1, 0x06, 0xe4, 0x11, 0x27, 0x06, 0xd9,
+ 0xba, 0xcd, 0x14, 0x90, 0xef, 0xfa, 0x05, 0x21, 0x07, 0xf2, 0xd2, 0x21,
+ 0xfa, 0x1a, 0xf7, 0x31, 0xd0, 0x13, 0xa0, 0x2d, 0xc8, 0x04, 0x2f, 0x09,
+ 0x10, 0x02, 0xcd, 0x16, 0xf9, 0xd1, 0xe6, 0xda, 0xed, 0xbd, 0x1c, 0xe6,
+ 0xff, 0x05, 0xe7, 0xe9, 0x0e, 0xa4, 0xf2, 0xe4, 0x03, 0xe4, 0x15, 0xce,
+ 0xe2, 0xdd, 0xfc, 0x0a, 0x1a, 0x1f, 0x1b, 0xc4, 0xce, 0x24, 0x10, 0x04,
+ 0x19, 0x1a, 0xe0, 0xe9, 0x1b, 0x11, 0x36, 0xdd, 0x11, 0xe4, 0x0b, 0x0b,
+ 0xee, 0x2d, 0xe1, 0x2e, 0xf9, 0x14, 0x0c, 0x33, 0x0d, 0xc4, 0x02, 0xc4,
+ 0x31, 0x0d, 0xfe, 0xfb, 0xfb, 0x04, 0x34, 0xe3, 0x24, 0x3c, 0xea, 0x0d,
+ 0xe3, 0x09, 0x17, 0xca, 0xe3, 0xf6, 0x2b, 0xf7, 0xea, 0x09, 0x20, 0xf9,
+ 0xe4, 0x12, 0xf1, 0x35, 0xd5, 0x1f, 0xb3, 0xfc, 0xf5, 0x05, 0x09, 0xff,
+ 0xfd, 0x01, 0x16, 0x2c, 0xeb, 0xf7, 0xf6, 0x00, 0xca, 0x1b, 0x21, 0xc4,
+ 0x02, 0xe9, 0xb6, 0x00, 0xf9, 0xbc, 0x3a, 0xf9, 0xe6, 0x1f, 0x16, 0xc4,
+ 0x21, 0xec, 0x08, 0x1d, 0xf7, 0x0a, 0x4a, 0xff, 0xfd, 0x37, 0x3d, 0x5b,
+ 0x29, 0x0e, 0xda, 0x00, 0xf7, 0x52, 0x20, 0x1b, 0xfb, 0x13, 0x12, 0xf3,
+ 0xf5, 0x0f, 0xd7, 0x0e, 0x1c, 0x0d, 0xf0, 0x2e, 0x11, 0xe9, 0xec, 0x81,
+ 0xfe, 0xeb, 0x35, 0x0f, 0x28, 0xde, 0x1e, 0xea, 0xfe, 0x3c, 0x3a, 0x12,
+ 0xf0, 0xe2, 0xec, 0x8e, 0x0d, 0x11, 0x4c, 0xd9, 0xf9, 0x34, 0x02, 0x20,
+ 0xd4, 0x0e, 0xb7, 0x1e, 0x0d, 0x21, 0xf6, 0x27, 0xc9, 0xfa, 0x34, 0xdc,
+ 0xd4, 0x0d, 0x01, 0x06, 0xe2, 0x2a, 0xee, 0x03, 0xb1, 0xe6, 0xfc, 0xd0,
+ 0x29, 0xc7, 0xfe, 0xde, 0xe1, 0x9d, 0xfc, 0x0b, 0xf8, 0xe0, 0x21, 0xe6,
+ 0xb3, 0xcb, 0xb3, 0x25, 0xdb, 0x41, 0xf9, 0xbf, 0x41, 0x00, 0xaf, 0x42,
+ 0x03, 0xf9, 0xae, 0xee, 0x00, 0xda, 0x14, 0xf6, 0x06, 0x03, 0xc7, 0x0c,
+ 0xed, 0xeb, 0xea, 0xd5, 0xdb, 0x06, 0x26, 0xe7, 0xc5, 0x07, 0x10, 0x44,
+ 0x9c, 0x0a, 0x28, 0xba, 0xec, 0x4a, 0xe5, 0x7f, 0xdc, 0xf9, 0xf8, 0xc2,
+ 0xe7, 0x24, 0xff, 0x0a, 0x2b, 0xfb, 0x25, 0xcd, 0x15, 0xb6, 0xe3, 0xca,
+ 0x0f, 0x14, 0xce, 0x3c, 0x23, 0x0d, 0x10, 0xe7, 0xed, 0xe4, 0xe5, 0xd1,
+ 0x0e, 0xf2, 0x4d, 0xf7, 0x04, 0x3f, 0xe3, 0x02, 0xf0, 0x2c, 0xd6, 0x2d,
+ 0x3c, 0x0f, 0xab, 0xed, 0xd4, 0xcf, 0xec, 0x1c, 0x12, 0xd7, 0xdd, 0xec,
+ 0x8b, 0xde, 0x0a, 0xf9, 0x22, 0x51, 0x07, 0xf0, 0x49, 0xef, 0xe8, 0xf6,
+ 0x53, 0xeb, 0xde, 0x03, 0xe6, 0x26, 0xd0, 0x3b, 0x00, 0x0d, 0xed, 0xf0,
+ 0x17, 0x0d, 0xcc, 0xc9, 0x24, 0xfa, 0xdf, 0xf3, 0xf1, 0x01, 0x09, 0x42,
+ 0x28, 0x2c, 0x13, 0xb3, 0xcd, 0x22, 0xe1, 0x3f, 0xc7, 0x99, 0x3b, 0x24,
+ 0x0b, 0xc4, 0x21, 0x4a, 0xed, 0x4c, 0xdc, 0xfb, 0xac, 0xeb, 0x08, 0x0e,
+ 0x32, 0xc4, 0x0b, 0xd9, 0xf7, 0x28, 0xd2, 0xd5, 0x39, 0x45, 0x13, 0x20,
+ 0x06, 0x66, 0xfe, 0xfd, 0xfd, 0x04, 0x25, 0xca, 0xf7, 0xf5, 0x00, 0x2e,
+ 0x40, 0xd9, 0x0a, 0x0f, 0x1a, 0x13, 0xfc, 0xd6, 0x55, 0xd6, 0x3a, 0xaa,
+ 0x9d, 0xe6, 0xdc, 0xfa, 0x11, 0x49, 0xac, 0x16, 0x32, 0xd4, 0x37, 0xe9,
+ 0x56, 0x0d, 0xd8, 0xe9, 0xcf, 0x2c, 0x1b, 0x30, 0xdf, 0xe1, 0xd5, 0x05,
+ 0x00, 0x0a, 0xca, 0xdc, 0xb6, 0xbc, 0xd6, 0x24, 0xe3, 0x06, 0xca, 0x3f,
+ 0xe1, 0x2e, 0xe2, 0xec, 0xe5, 0x0d, 0x39, 0x17, 0x20, 0xa0, 0xbb, 0x52,
+ 0xd3, 0x18, 0x14, 0xd4, 0x25, 0xf7, 0x4f, 0xc5, 0xc8, 0xa5, 0x09, 0xb9,
+ 0xf3, 0xe9, 0x1d, 0x70, 0x0f, 0xf0, 0xf9, 0x0e, 0x14, 0x15, 0x19, 0xa0,
+ 0xe5, 0x48, 0xe5, 0xdf, 0xb4, 0xd9, 0xfc, 0x22, 0xf7, 0xf7, 0x2b, 0x15,
+ 0x06, 0x04, 0x2c, 0x46, 0x2c, 0x16, 0xf8, 0x33, 0x02, 0x18, 0x03, 0x25,
+ 0x08, 0x44, 0x21, 0xff, 0xc5, 0x08, 0xd2, 0x9a, 0x00, 0xbf, 0x3b, 0x0d,
+ 0xf4, 0xfd, 0x0f, 0x6b, 0x2d, 0xd0, 0x07, 0xbe, 0x62, 0x45, 0x23, 0x20,
+ 0xbc, 0x1c, 0x38, 0xb8, 0x08, 0xe5, 0x9a, 0x41, 0x17, 0x4f, 0x34, 0x4d,
+ 0x09, 0xe8, 0xd1, 0xa6, 0x1f, 0xfc, 0x5e, 0x00, 0x43, 0xcb, 0x1d, 0x1d,
+ 0xee, 0xc6, 0xd5, 0x2a, 0x31, 0x07, 0x03, 0x16, 0x01, 0xef, 0xd9, 0xfd,
+ 0x43, 0xf4, 0xa8, 0x06, 0xd7, 0xe8, 0x38, 0xfc, 0xfa, 0xb5, 0x0f, 0x03,
+ 0x3d, 0x1e, 0x67, 0xcd, 0x0b, 0x11, 0x40, 0xd6, 0x18, 0xd8, 0x35, 0x63,
+ 0x35, 0x0e, 0x45, 0xeb, 0xeb, 0x08, 0x04, 0xed, 0x29, 0xed, 0xc6, 0x10,
+ 0x3a, 0x3a, 0x39, 0xe3, 0xc5, 0x10, 0x0d, 0xc6, 0xe1, 0x09, 0x10, 0x7f,
+ 0x09, 0x06, 0xea, 0x14, 0xf8, 0xfc, 0x1b, 0xbb, 0x52, 0xdd, 0xae, 0xed,
+ 0xa4, 0xfd, 0x0a, 0x00, 0x07, 0xa9, 0x9e, 0x02, 0x2f, 0xee, 0xed, 0x68,
+ 0xec, 0xdd, 0x25, 0xe0, 0xec, 0xc6, 0x12, 0x0b, 0x2a, 0xf8, 0xed, 0x46,
+ 0xec, 0x23, 0x2e, 0xf9, 0x37, 0x01, 0x0e, 0xbd, 0xb5, 0xd3, 0xde, 0x49,
+ 0xf9, 0x11, 0xf0, 0x31, 0x13, 0xdc, 0x3f, 0x60, 0xc2, 0xe9, 0x15, 0x34,
+ 0x2d, 0xd4, 0xfe, 0xed, 0xbf, 0x36, 0x24, 0xf4, 0xfa, 0xdc, 0x02, 0x1c,
+ 0x1e, 0x2b, 0x40, 0xd7, 0x03, 0x17, 0x04, 0x34, 0x24, 0xbc, 0xf2, 0xed,
+ 0xdc, 0xee, 0x46, 0xf7, 0x1e, 0x03, 0xfc, 0xc2, 0xe7, 0x08, 0x3c, 0x49,
+ 0xeb, 0x04, 0xda, 0x0c, 0x27, 0x22, 0xfd, 0xca, 0xeb, 0xf2, 0x1d, 0x3a,
+ 0xdd, 0x1a, 0xfd, 0xf3, 0xe0, 0xd4, 0x91, 0xfb, 0xdb, 0xe0, 0x0f, 0x52,
+ 0x20, 0x1f, 0xf1, 0xcc, 0x19, 0x38, 0x29, 0x5a, 0x24, 0xfc, 0xec, 0xd6,
+ 0x03, 0x07, 0x1c, 0x3c, 0x3c, 0xfc, 0x02, 0x05, 0xc6, 0x1e, 0x0d, 0x3c,
+ 0xf5, 0xbc, 0xdc, 0x56, 0xb9, 0xda, 0x37, 0x35, 0x25, 0xd5, 0x23, 0xfe,
+ 0xef, 0x20, 0x54, 0x1d, 0xc1, 0x03, 0xfa, 0xca, 0x07, 0x00, 0x29, 0x28,
+ 0x1f, 0x42, 0x6d, 0xbd, 0xfe, 0xf4, 0x9b, 0x38, 0x40, 0x08, 0x2f, 0x08,
+ 0x09, 0xa5, 0x5e, 0x39, 0x2a, 0xfa, 0xba, 0x32, 0x1a, 0xe3, 0xd4, 0xa1,
+ 0x04, 0x0a, 0xd6, 0x56, 0x37, 0x16, 0x3f, 0x24, 0x00, 0xb7, 0x1b, 0x2d,
+ 0x27, 0x45, 0xc2, 0x36, 0x33, 0x20, 0xd3, 0x11, 0x20, 0x45, 0x14, 0x41,
+ 0x17, 0x0b, 0xe4, 0x3c, 0xf6, 0x4e, 0xc9, 0xde, 0x18, 0xd5, 0xd5, 0x22,
+ 0xfa, 0xdb, 0xc1, 0x19, 0x23, 0x23, 0xd8, 0x3c, 0x32, 0x19, 0xfa, 0xdd,
+ 0xd8, 0x04, 0xef, 0x2a, 0xf7, 0x0b, 0x40, 0xf3, 0xb6, 0x32, 0xf5, 0xcb,
+ 0xb5, 0xd9, 0x97, 0x0a, 0xb6, 0xd0, 0xbe, 0xb5, 0x2a, 0xf6, 0x14, 0x5d,
+ 0x23, 0xbe, 0x8c, 0xd4, 0x2c, 0x22, 0x99, 0x30, 0xeb, 0x3f, 0xf9, 0x92,
+ 0xd1, 0xec, 0x4b, 0x1f, 0x18, 0x23, 0x09, 0x0d, 0x23, 0xe4, 0xef, 0xdb,
+ 0xea, 0x1f, 0x0f, 0x0b, 0x22, 0x0b, 0x33, 0x18, 0x04, 0x0f, 0x27, 0x15,
+ 0xe8, 0x54, 0x12, 0x38, 0xe9, 0x1a, 0xf4, 0x34, 0xab, 0x52, 0x5f, 0x0e,
+ 0xc5, 0xdc, 0x26, 0x12, 0xac, 0x0b, 0x0e, 0x13, 0xd8, 0x07, 0xfd, 0xe7,
+ 0xf3, 0xf4, 0x06, 0x40, 0xfe, 0x3f, 0xb0, 0x24, 0x15, 0xb4, 0x0a, 0x92,
+ 0xda, 0x00, 0xf7, 0x17, 0xec, 0x24, 0x2a, 0x3e, 0xdb, 0x14, 0xd2, 0x2d,
+ 0xf7, 0x03, 0xb7, 0xd2, 0x0a, 0x04, 0x96, 0xbe, 0x05, 0x2d, 0x1a, 0xf6,
+ 0x37, 0x1b, 0x81, 0xf5, 0xc9, 0x04, 0xa3, 0xd1, 0x27, 0x0b, 0xdf, 0xa8,
+ 0xbd, 0xc2, 0x62, 0xe8, 0x31, 0xee, 0x0a, 0xcc, 0xba, 0xc7, 0xa8, 0xf9,
+ 0x17, 0x22, 0x00, 0xdd, 0x55, 0x03, 0x4b, 0xfa, 0xda, 0x16, 0x41, 0xce,
+ 0x3c, 0x79, 0xee, 0x28, 0xd2, 0x22, 0x21, 0x2b, 0xbd, 0xf0, 0x43, 0x28,
+ 0xb0, 0xe8, 0x1a, 0x41, 0x0f, 0x14, 0xdf, 0xe5, 0x40, 0xf5, 0xfd, 0xe6,
+ 0x4c, 0xe2, 0xf9, 0x0c, 0xcf, 0x4c, 0xec, 0x3b, 0x13, 0xc2, 0x35, 0xfc,
+ 0x32, 0x31, 0xf5, 0xdc, 0xf9, 0x1b, 0x49, 0x3c, 0x1d, 0x3a, 0x2d, 0x3d,
+ 0xcc, 0x24, 0xda, 0xd1, 0xc9, 0x0c, 0xaf, 0xc6, 0x29, 0x43, 0x5b, 0x49,
+ 0xfa, 0x17, 0xbe, 0x1e, 0x3d, 0x44, 0xd7, 0x03, 0xd8, 0xd6, 0x0a, 0xa2,
+ 0x0e, 0x0e, 0x0a, 0xe6, 0x20, 0xed, 0x01, 0x0e, 0xfe, 0xd0, 0xde, 0x1e,
+ 0xd9, 0x9f, 0xdc, 0x44, 0xd6, 0xeb, 0x36, 0xa1, 0xe5, 0xe2, 0x2d, 0x1f,
+ 0x32, 0x2a, 0xeb, 0xf7, 0xf9, 0xeb, 0xad, 0xf3, 0x2d, 0x25, 0xd5, 0x10,
+ 0x0b, 0xfd, 0xdf, 0x22, 0x08, 0xf1, 0x0d, 0x08, 0x02, 0xfe, 0x17, 0x18,
+ 0x23, 0xf7, 0xd3, 0x09, 0x32, 0x0c, 0x22, 0xff, 0xaf, 0x2b, 0x31, 0x1f,
+ 0x13, 0xc0, 0xb1, 0xff, 0x2e, 0x26, 0x17, 0x3f, 0x13, 0x4e, 0x11, 0xf9,
+ 0xf0, 0x16, 0x0c, 0xdf, 0xd4, 0xc0, 0x13, 0xe8, 0x07, 0xe2, 0x1e, 0x34,
+ 0xf2, 0xe1, 0xe4, 0xb3, 0xef, 0xdd, 0xcd, 0x00, 0x21, 0x1f, 0xf9, 0x46,
+ 0x03, 0xf1, 0xc2, 0x9c, 0xd8, 0x0a, 0xe2, 0x38, 0x2f, 0x9a, 0xcf, 0xf6,
+ 0x17, 0xaf, 0xea, 0x54, 0xee, 0xfa, 0x22, 0x81, 0xf0, 0xfa, 0xfb, 0x01,
+ 0x01, 0x45, 0x13, 0x58, 0xd3, 0x07, 0x06, 0xe0, 0x34, 0x23, 0xf5, 0xf7,
+ 0x2d, 0x13, 0xd7, 0x49, 0x0d, 0x00, 0xf0, 0x60, 0xea, 0xd9, 0x2c, 0x02,
+ 0xf8, 0xd1, 0x3d, 0x0c, 0x20, 0xde, 0x27, 0xc9, 0xc9, 0xe6, 0x23, 0xf3,
+ 0x1c, 0xf9, 0xc7, 0x17, 0x0f, 0x01, 0xde, 0x4f, 0x13, 0x1c, 0xe5, 0xc4,
+ 0x1f, 0x49, 0x27, 0xca, 0xf8, 0xdb, 0x51, 0xd3, 0xf6, 0xb6, 0xe6, 0x37,
+ 0xb3, 0x39, 0xe3, 0x08, 0x03, 0xf8, 0xb7, 0xe4, 0xeb, 0xd2, 0x09, 0x1f,
+ 0x02, 0x26, 0x13, 0xcf, 0x24, 0x00, 0xf3, 0x1c, 0x30, 0xf1, 0x34, 0xfa,
+ 0x41, 0xe3, 0xce, 0x2d, 0xde, 0x04, 0x0a, 0xaf, 0xfd, 0xea, 0x26, 0x2f,
+ 0x0f, 0x56, 0x12, 0x33, 0xb5, 0x0e, 0xb2, 0x0c, 0x12, 0xf2, 0x31, 0xf1,
+ 0x05, 0x05, 0x27, 0xf4, 0x12, 0x26, 0xf2, 0x16, 0x0f, 0xc7, 0xec, 0x50,
+ 0xe6, 0xcb, 0x46, 0x00, 0x2b, 0xe9, 0x3d, 0xac, 0xba, 0x33, 0x36, 0x25,
+ 0x10, 0x1f, 0x2d, 0xfd, 0xeb, 0xef, 0x09, 0x05, 0xdd, 0x24, 0x0c, 0x04,
+ 0x29, 0x79, 0x55, 0x15, 0x13, 0xa8, 0x45, 0x00, 0xd1, 0xf1, 0x03, 0x45,
+ 0xcd, 0x44, 0x1c, 0x04, 0x09, 0x41, 0x13, 0x36, 0x15, 0x3f, 0x2b, 0x1f,
+ 0xd4, 0xb9, 0x2d, 0x02, 0xff, 0x03, 0x12, 0xc5, 0x43, 0xee, 0x05, 0xf5,
+ 0x05, 0xa5, 0x14, 0x33, 0x03, 0x38, 0x63, 0xcf, 0x12, 0xeb, 0x9e, 0x05,
+ 0x03, 0x1e, 0xde, 0x13, 0xf3, 0x44, 0xe0, 0x51, 0xf1, 0xc3, 0xc9, 0xe1,
+ 0xf2, 0xee, 0xd1, 0xba, 0xe2, 0x3f, 0x08, 0xb6, 0xd0, 0x81, 0x3c, 0xe5,
+ 0xe2, 0xc9, 0x1c, 0xe4, 0xff, 0xc3, 0xd8, 0xee, 0xf3, 0xc7, 0x10, 0xae,
+ 0x07, 0x3a, 0xda, 0xb0, 0x05, 0x2f, 0xa4, 0x37, 0x06, 0xb2, 0xcc, 0x57,
+ 0x13, 0xe9, 0x30, 0x03, 0x4a, 0x08, 0x0b, 0xde, 0xa7, 0xff, 0xcc, 0x36,
+ 0xd4, 0x06, 0x3a, 0x18, 0x14, 0xd3, 0x34, 0xe0, 0xd0, 0x49, 0xd6, 0x0f,
+ 0xdf, 0xb2, 0xdf, 0xa2, 0x25, 0xe0, 0x4c, 0xbc, 0x12, 0x1a, 0x2e, 0xfd,
+ 0xde, 0xb4, 0xf6, 0x39, 0xd3, 0x14, 0x10, 0xc5, 0xff, 0xd1, 0xec, 0xf2,
+ 0xb9, 0x0a, 0x49, 0x5b, 0x4a, 0xbd, 0xe3, 0x12, 0x0e, 0xae, 0xbf, 0xa7,
+ 0xea, 0xc9, 0xd5, 0x1b, 0xf5, 0x03, 0x21, 0x2c, 0xbb, 0xd2, 0xd2, 0x18,
+ 0xdb, 0x17, 0xd0, 0x11, 0x04, 0xf6, 0xf2, 0x35, 0x1c, 0x22, 0x4a, 0x02,
+ 0x10, 0xe4, 0x29, 0x03, 0x07, 0x48, 0xcc, 0x60, 0xf4, 0xd6, 0x01, 0x53,
+ 0xee, 0x27, 0x31, 0xcf, 0x40, 0xdb, 0x09, 0xd8, 0xc3, 0x90, 0xa1, 0xf2,
+ 0xcf, 0x33, 0x20, 0xe8, 0x4a, 0xfc, 0xda, 0x22, 0x47, 0xe6, 0xcd, 0x03,
+ 0x0b, 0xc0, 0xe8, 0xbc, 0x3b, 0x2a, 0x3f, 0x25, 0x56, 0x31, 0xc1, 0x34,
+ 0x20, 0xca, 0xfd, 0xc0, 0xfc, 0x1f, 0x4e, 0xea, 0xfb, 0xfc, 0xfb, 0xfd,
+ 0xcf, 0x25, 0x30, 0x36, 0xbc, 0xd3, 0xc2, 0xdd, 0xed, 0xb7, 0xde, 0xa7,
+ 0x06, 0xb8, 0xbb, 0x1d, 0x10, 0x2f, 0x46, 0xbc, 0xc9, 0xb4, 0xc4, 0x32,
+ 0xe1, 0xc6, 0xf9, 0xa9, 0x04, 0x0e, 0x09, 0xb6, 0xb8, 0x2e, 0x21, 0xae,
+ 0x22, 0xe3, 0x28, 0x9c, 0x12, 0x06, 0xa1, 0x02, 0xd7, 0x8e, 0xbd, 0xec,
+ 0xf4, 0x02, 0x3b, 0xb6, 0x20, 0x18, 0x02, 0x21, 0x81, 0x9f, 0xd5, 0xd7,
+ 0xe6, 0xc9, 0x53, 0xc9, 0x04, 0xdc, 0x09, 0x08, 0xde, 0x1d, 0x26, 0xe9,
+ 0x81, 0x38, 0x13, 0xdd, 0xd1, 0x3e, 0xff, 0xb7, 0x51, 0x61, 0x1b, 0x28,
+ 0x01, 0xf1, 0xdb, 0xc3, 0x6c, 0x0e, 0xd6, 0xfe, 0x22, 0x06, 0xe1, 0x57,
+ 0xe2, 0x20, 0xf9, 0x02, 0x4b, 0xa0, 0x0b, 0x9c, 0x15, 0xae, 0x1e, 0x1b,
+ 0xe6, 0xd7, 0x4f, 0xde, 0x33, 0x01, 0x16, 0xea, 0x0e, 0x02, 0x39, 0x20,
+ 0x15, 0xee, 0xdc, 0xd3, 0xc6, 0x15, 0x25, 0xe7, 0x02, 0xa4, 0xd5, 0x11,
+ 0xe4, 0xbc, 0xfc, 0xdf, 0x40, 0x18, 0xb2, 0xbf, 0x13, 0xd3, 0xc1, 0x1d,
+ 0x0b, 0xad, 0xf8, 0xc3, 0x21, 0xf4, 0xdb, 0xf6, 0x91, 0xf3, 0xa7, 0xda,
+ 0x0e, 0xdc, 0xd3, 0xc1, 0xd1, 0xda, 0x3a, 0xbf, 0xea, 0xc7, 0x0a, 0x0c,
+ 0xf0, 0x1b, 0x63, 0x18, 0xc7, 0x2d, 0x2e, 0xa0, 0x16, 0x05, 0xb2, 0x53,
+ 0xf7, 0x9e, 0xcb, 0xc5, 0x41, 0x45, 0xe7, 0xd3, 0x22, 0x52, 0x0c, 0x3d,
+ 0xce, 0x47, 0x0b, 0x2e, 0x2a, 0xee, 0xc3, 0xfd, 0x16, 0x2b, 0x4d, 0x35,
+ 0x5a, 0x0e, 0xdf, 0xa2, 0x3d, 0x4f, 0x56, 0xf7, 0x38, 0x4b, 0x77, 0xeb,
+ 0x46, 0x0b, 0x0c, 0xd7, 0x33, 0xe5, 0x0e, 0x0e, 0x19, 0xe5, 0xaa, 0xe9,
+ 0x9d, 0xea, 0x42, 0x11, 0xfb, 0xf3, 0xbf, 0xde, 0xc2, 0x82, 0xe8, 0xf1,
+ 0xd9, 0xa8, 0xe9, 0xa6, 0xb6, 0xf0, 0x2a, 0xff, 0xc5, 0xda, 0x25, 0xec,
+ 0xe5, 0xc1, 0xcc, 0xf1, 0xc3, 0xda, 0x34, 0xaf, 0xac, 0xe7, 0xe0, 0x55,
+ 0xab, 0xfe, 0xd2, 0xed, 0x44, 0x1c, 0x0e, 0xc5, 0xd9, 0x0b, 0xc0, 0x12,
+ 0x1c, 0x12, 0xcb, 0xfc, 0x3b, 0x66, 0xec, 0x0b, 0x03, 0x1d, 0xe2, 0x1f,
+ 0x2c, 0x6b, 0x1d, 0x2e, 0x2a, 0xc3, 0xfe, 0x16, 0x11, 0xce, 0x2d, 0x34,
+ 0x6e, 0xeb, 0x41, 0xee, 0x39, 0xf0, 0x0c, 0x02, 0x3d, 0x30, 0x25, 0xd4,
+ 0x39, 0xa1, 0x07, 0x18, 0x0c, 0x28, 0x41, 0x12, 0x2f, 0x03, 0xca, 0xc3,
+ 0x13, 0xff, 0x45, 0x58, 0x01, 0xe0, 0xfe, 0x9b, 0x09, 0xb0, 0xe0, 0x08,
+ 0x16, 0xe8, 0x1b, 0xd9, 0xf1, 0x22, 0x44, 0x04, 0xfb, 0xb0, 0x07, 0xa0,
+ 0xc7, 0xe0, 0x98, 0xaa, 0x15, 0xc0, 0xce, 0x11, 0xca, 0x08, 0xff, 0xd6,
+ 0x95, 0x04, 0x4d, 0x38, 0xac, 0xed, 0x15, 0x14, 0xb5, 0x40, 0xe8, 0xbc,
+ 0xe1, 0x05, 0x1d, 0x47, 0xd6, 0xbe, 0x12, 0xf6, 0xc6, 0x2b, 0x3a, 0xdf,
+ 0xe5, 0x2a, 0x61, 0xc7, 0x08, 0xdf, 0x4c, 0x09, 0xd5, 0xbf, 0x46, 0x6b,
+ 0xdf, 0x41, 0x3b, 0xfa, 0xd6, 0x12, 0xb1, 0xa4, 0xb7, 0xce, 0x28, 0x3b,
+ 0x5b, 0xab, 0xd8, 0x39, 0x54, 0xb8, 0x66, 0xfa, 0xd0, 0x2d, 0xef, 0xd2,
+ 0x28, 0xd9, 0x3a, 0x1d, 0x11, 0x30, 0x52, 0x1c, 0x25, 0xe1, 0xd3, 0x4c,
+ 0x24, 0x33, 0x8f, 0xa8, 0x0f, 0xc5, 0xd5, 0x04, 0x15, 0x25, 0x01, 0xfe,
+ 0xe0, 0xfc, 0x37, 0xf0, 0x21, 0x6e, 0x09, 0x10, 0x0a, 0x6a, 0xff, 0x6a,
+ 0x8d, 0x0f, 0x49, 0x71, 0x23, 0x5b, 0x0c, 0xb7, 0xcd, 0xea, 0xaf, 0xb9,
+ 0xe2, 0xff, 0x38, 0x0d, 0xc8, 0x9a, 0x2b, 0x52, 0x38, 0x01, 0xe2, 0xe7,
+ 0xf9, 0x23, 0x15, 0xf1, 0x25, 0xcd, 0x05, 0xb9, 0xb2, 0x49, 0xe9, 0x24,
+ 0x37, 0x4a, 0xc0, 0x31, 0x3c, 0x74, 0x0f, 0x22, 0xf2, 0x3e, 0xf9, 0xc9,
+ 0x15, 0xea, 0x42, 0x55, 0x3c, 0x30, 0x5e, 0xcf, 0xf7, 0x19, 0xd0, 0xf3,
+ 0xe6, 0xd9, 0xfb, 0x13, 0xf7, 0x58, 0xe5, 0x31, 0x11, 0x11, 0xcb, 0x21,
+ 0xdb, 0x53, 0x17, 0xeb, 0x28, 0x26, 0xd2, 0x35, 0x20, 0xaa, 0xd1, 0x0a,
+ 0x21, 0xf5, 0x2e, 0xfb, 0x13, 0x24, 0xea, 0xe4, 0xde, 0x11, 0xd1, 0x0c,
+ 0x90, 0xea, 0xeb, 0xed, 0xef, 0x51, 0x31, 0xc1, 0xa3, 0x0a, 0x91, 0x99,
+ 0xbf, 0xd4, 0x1f, 0xd7, 0xdc, 0x01, 0x16, 0x36, 0x4c, 0xcf, 0x23, 0x81,
+ 0xe8, 0x07, 0x06, 0x14, 0xaf, 0xc0, 0xf3, 0xc6, 0x97, 0x2e, 0x60, 0x4e,
+ 0xbc, 0x6f, 0x2c, 0x1d, 0xe0, 0x3f, 0x05, 0xd3, 0xf0, 0x36, 0xc7, 0xe5,
+ 0x7d, 0x05, 0x0a, 0x1d, 0x38, 0x19, 0x1c, 0xbc, 0xd9, 0x22, 0x16, 0xdf,
+ 0xfb, 0xea, 0x6b, 0x2b, 0xfb, 0x4e, 0x0f, 0x1c, 0x04, 0x04, 0x2d, 0x44,
+ 0x0c, 0x41, 0xef, 0x05, 0xc1, 0x20, 0xfb, 0x48, 0x4d, 0xf0, 0x82, 0xee,
+ 0xcf, 0x43, 0x19, 0x2d, 0x16, 0xed, 0x40, 0xfb, 0x29, 0x5b, 0x5b, 0xf0,
+ 0xeb, 0xfb, 0x0d, 0xf9, 0xf1, 0x48, 0xda, 0xdd, 0x19, 0xe7, 0x3d, 0x3f,
+ 0xf1, 0x22, 0x06, 0x11, 0x07, 0x14, 0xe5, 0xd6, 0x2c, 0xfb, 0xcd, 0x15,
+ 0x02, 0x0d, 0x14, 0x04, 0xd8, 0xdf, 0x37, 0x05, 0xe3, 0x01, 0x2d, 0xb1,
+ 0x59, 0xcc, 0x0e, 0x2a, 0x37, 0xd6, 0x35, 0xf1, 0x3f, 0x1d, 0x11, 0xd9,
+ 0x25, 0xb9, 0x3b, 0x04, 0xed, 0xd7, 0x23, 0xdc, 0x0e, 0x00, 0xef, 0x28,
+ 0xb3, 0xe0, 0xe4, 0x62, 0x14, 0x2e, 0x16, 0x12, 0xf8, 0x0c, 0x24, 0xdb,
+ 0xdd, 0x18, 0xe5, 0x55, 0xaa, 0xc3, 0xfe, 0x0d, 0xf5, 0x39, 0xb9, 0x32,
+ 0x30, 0xd7, 0x9f, 0x11, 0xaa, 0x82, 0x02, 0xe9, 0x03, 0xc1, 0x3b, 0xb5,
+ 0xca, 0xcb, 0xe5, 0x05, 0x10, 0x0b, 0xcb, 0xd1, 0x12, 0x03, 0x25, 0x26,
+ 0x40, 0xd8, 0x0a, 0xfe, 0x21, 0x16, 0xd4, 0xee, 0x2f, 0xcc, 0x1a, 0xfa,
+ 0xcf, 0x36, 0xae, 0x46, 0x15, 0xf2, 0x27, 0x03, 0xf8, 0xd3, 0xcd, 0xb6,
+ 0x55, 0xea, 0xfd, 0x01, 0xf6, 0xf2, 0x27, 0x36, 0x53, 0x2b, 0x35, 0x22,
+ 0x21, 0xc0, 0xcc, 0xde, 0xd5, 0xf5, 0x57, 0x1a, 0xde, 0x23, 0xe3, 0xe0,
+ 0x07, 0xcb, 0xe2, 0x51, 0x08, 0xec, 0xfd, 0x43, 0xc4, 0xee, 0xdd, 0xee,
+ 0x1c, 0xd7, 0xed, 0x1f, 0xa2, 0x07, 0xee, 0xe6, 0x8f, 0xfe, 0xfd, 0xca,
+ 0x02, 0x18, 0xa8, 0xd8, 0xa6, 0xdb, 0x58, 0x07, 0xd7, 0x0b, 0x11, 0x9d,
+ 0x1a, 0xa3, 0xc0, 0xe9, 0xfc, 0x38, 0x3a, 0xa8, 0xfa, 0xeb, 0xf7, 0xf1,
+ 0x2e, 0xcd, 0xb2, 0xbf, 0x1d, 0x4a, 0x0b, 0xdc, 0x1c, 0x27, 0xd7, 0x3d,
+ 0x16, 0x5a, 0xec, 0x20, 0x2e, 0xe9, 0x03, 0x1e, 0x3c, 0xda, 0xed, 0xc5,
+ 0x46, 0xfd, 0x40, 0x10, 0xca, 0x01, 0x50, 0x3e, 0x0d, 0xfd, 0xe4, 0xd9,
+ 0xa6, 0xc5, 0x1d, 0xf6, 0xda, 0x48, 0x10, 0x01, 0xfc, 0xc1, 0xef, 0xfd,
+ 0xfd, 0x21, 0xde, 0x30, 0x40, 0xe6, 0x10, 0x44, 0xd0, 0x26, 0x15, 0x0b,
+ 0x0b, 0x04, 0x02, 0x0b, 0xda, 0xe3, 0xd4, 0xdf, 0x81, 0xcd, 0xf9, 0x1c,
+ 0x2c, 0x4c, 0x8b, 0xce, 0x0a, 0xb0, 0x47, 0xd5, 0x04, 0xdf, 0x45, 0xb7,
+ 0x06, 0x00, 0x32, 0x2f, 0x33, 0xc0, 0x1e, 0xc3, 0x02, 0x47, 0xf7, 0x07,
+ 0xf9, 0xd7, 0xe6, 0xf9, 0x5f, 0x00, 0x23, 0x04, 0x08, 0x22, 0xbc, 0x56,
+ 0x1a, 0xad, 0x00, 0xdc, 0x06, 0xf1, 0xb8, 0xa9, 0xef, 0xf4, 0x19, 0x05,
+ 0x3d, 0xef, 0x24, 0x09, 0x26, 0x03, 0x2b, 0xf6, 0xe4, 0xee, 0x26, 0xf1,
+ 0x08, 0x38, 0x03, 0x30, 0xbe, 0x23, 0x34, 0xce, 0xde, 0xb7, 0x02, 0xd6,
+ 0x33, 0x9c, 0xfb, 0xb7, 0x88, 0x55, 0xee, 0x1e, 0x5e, 0x9e, 0xa8, 0xf6,
+ 0x12, 0x0d, 0x19, 0x0d, 0x12, 0xea, 0x65, 0xf8, 0x29, 0x35, 0xe4, 0xb4,
+ 0xfa, 0xdb, 0x88, 0xd9, 0xf3, 0x0b, 0x81, 0x0e, 0xe8, 0xe2, 0xf9, 0x2c,
+ 0x24, 0x30, 0x09, 0x31, 0xe4, 0xb0, 0x31, 0x3c, 0x17, 0x03, 0x20, 0xdf,
+ 0x05, 0xdd, 0xb9, 0xfe, 0x54, 0x21, 0xcc, 0xf3, 0x11, 0x03, 0xdb, 0x4a,
+ 0xfe, 0xf6, 0x96, 0xbd, 0x47, 0xbe, 0x26, 0xcf, 0xb7, 0xe6, 0xe0, 0xfc,
+ 0xd8, 0xbc, 0x33, 0xba, 0xda, 0xee, 0x48, 0xd3, 0xc7, 0x31, 0x35, 0xc4,
+ 0xdb, 0xe1, 0xfc, 0x46, 0xd7, 0x06, 0xf8, 0x01, 0x03, 0x00, 0x9d, 0x1b,
+ 0x23, 0xaf, 0xee, 0x14, 0xf2, 0xf6, 0xd4, 0xbb, 0x7a, 0x9f, 0x2f, 0xfa,
+ 0x0d, 0x18, 0xe5, 0x1f, 0x18, 0xe3, 0x57, 0xc8, 0x4f, 0xff, 0xce, 0xe9,
+ 0xf6, 0xf9, 0xcc, 0x0e, 0x10, 0x13, 0xf6, 0x4b, 0xe1, 0x09, 0x14, 0x2c,
+ 0xb3, 0x2d, 0x38, 0xdb, 0x0c, 0xcb, 0x0a, 0x11, 0x0b, 0x1f, 0x49, 0xef,
+ 0xd7, 0x48, 0xe5, 0xb6, 0x63, 0x2a, 0x18, 0x46, 0x25, 0x50, 0x2c, 0x05,
+ 0xef, 0xb7, 0xba, 0x01, 0x30, 0x0b, 0x9c, 0xb5, 0x15, 0x14, 0xf4, 0x06,
+ 0x0c, 0xaf, 0x11, 0x9e, 0x01, 0xe4, 0x36, 0x0f, 0x14, 0x1e, 0x05, 0xc9,
+ 0xe4, 0x68, 0x2b, 0x37, 0xe3, 0x1f, 0x05, 0x56, 0xbb, 0xe5, 0x9c, 0xe5,
+ 0xf8, 0x02, 0xfe, 0x17, 0xed, 0x34, 0xee, 0xcc, 0x21, 0x13, 0xff, 0xc5,
+ 0xc0, 0xd0, 0x15, 0x3e, 0x4a, 0xee, 0x28, 0xe9, 0xff, 0x36, 0x00, 0x1a,
+ 0xb9, 0xb2, 0x0d, 0xf6, 0x1b, 0x1d, 0x99, 0x1b, 0x46, 0xf6, 0xf5, 0x08,
+ 0x2e, 0x00, 0x46, 0xa6, 0xca, 0x0b, 0xe6, 0x46, 0x0d, 0xb7, 0x96, 0xba,
+ 0xf4, 0x44, 0xc2, 0x0f, 0x1d, 0x2d, 0x16, 0xe4, 0x47, 0xdb, 0xfc, 0x59,
+ 0xc1, 0x22, 0x21, 0x55, 0xb0, 0x46, 0x20, 0xc9, 0xf9, 0x39, 0xd3, 0x2d,
+ 0xca, 0x42, 0x22, 0xc6, 0x1c, 0x0e, 0x1d, 0x55, 0xba, 0xc8, 0x01, 0x44,
+ 0x25, 0xc8, 0xcf, 0x9f, 0x1c, 0x03, 0xd8, 0xed, 0xd7, 0xa4, 0xfd, 0xc5,
+ 0x17, 0xd7, 0x1f, 0xb5, 0x61, 0xe5, 0x28, 0xe9, 0xf1, 0xc8, 0xe8, 0x47,
+ 0x40, 0x30, 0x4d, 0x06, 0xbd, 0x40, 0x05, 0xb3, 0x23, 0xe4, 0xf1, 0x03,
+ 0x17, 0x24, 0xe8, 0xf3, 0x2b, 0x1c, 0xf7, 0x21, 0xcb, 0x23, 0x69, 0xfb,
+ 0xd9, 0x34, 0xfa, 0xcd, 0xcc, 0xfd, 0x13, 0x3b, 0xb7, 0xba, 0xb2, 0x05,
+ 0xe6, 0x3f, 0x4e, 0xf1, 0x2d, 0xd6, 0xcf, 0x05, 0xd3, 0xc4, 0xfd, 0x35,
+ 0xc1, 0x34, 0xfd, 0x08, 0xe9, 0xb6, 0x61, 0x81, 0x06, 0xfc, 0x2c, 0x3d,
+ 0xdc, 0x27, 0x36, 0x23, 0x13, 0x4d, 0x35, 0x19, 0x04, 0x17, 0x08, 0x44,
+ 0xf4, 0xb0, 0xab, 0xf9, 0x0a, 0x47, 0x30, 0x48, 0x15, 0xce, 0x3f, 0xc1,
+ 0xcb, 0x08, 0x12, 0xfd, 0x5f, 0x2a, 0x13, 0xde, 0xdc, 0xfc, 0xe7, 0xfd,
+ 0xdb, 0x10, 0x13, 0x00, 0x17, 0x1e, 0x1d, 0xb0, 0x19, 0xd0, 0xec, 0x0f,
+ 0xfb, 0x2e, 0xd2, 0xd8, 0x0c, 0x4b, 0xe7, 0xf2, 0xcb, 0x44, 0xfa, 0xfd,
+ 0x2b, 0x34, 0x45, 0xc6, 0xe3, 0x00, 0xfb, 0x4f, 0xd3, 0xf9, 0xfe, 0xc7,
+ 0x1b, 0x3a, 0x2c, 0x3d, 0xdf, 0xc8, 0xff, 0xb2, 0x08, 0xd5, 0xfa, 0x41,
+ 0x41, 0x07, 0xaf, 0xfa, 0xb9, 0xdd, 0xd7, 0x9d, 0x47, 0xd2, 0xf0, 0xdb,
+ 0xaa, 0xe0, 0x39, 0xd5, 0xee, 0xd2, 0x2a, 0x06, 0x22, 0x2b, 0xf8, 0x47,
+ 0x09, 0xc3, 0xdc, 0xc4, 0xbd, 0xe4, 0xef, 0xee, 0xe3, 0xc5, 0x0a, 0xb3,
+ 0xc6, 0x9e, 0x19, 0x3e, 0x2a, 0x13, 0x51, 0xed, 0xe7, 0x14, 0x27, 0xb5,
+ 0x41, 0x47, 0x02, 0xb3, 0xfe, 0x4e, 0xdf, 0xb9, 0xfe, 0xc8, 0x55, 0xe4,
+ 0x67, 0x1f, 0xc3, 0xfe, 0x13, 0x59, 0x06, 0x32, 0xd0, 0x00, 0xe9, 0x25,
+ 0x38, 0xdf, 0x09, 0xf8, 0xd1, 0xf6, 0x02, 0x28, 0xff, 0xce, 0x0c, 0xd4,
+ 0xf5, 0x20, 0x38, 0x1e, 0xc2, 0xce, 0xf3, 0xa4, 0xb1, 0xeb, 0xff, 0x99,
+ 0xcb, 0x08, 0x37, 0x06, 0xe3, 0xbe, 0x11, 0x28, 0x0e, 0x2c, 0x0b, 0xf6,
+ 0xd6, 0x56, 0xfd, 0xca, 0xcf, 0x08, 0x3c, 0xe8, 0xdd, 0x06, 0x4b, 0x00,
+ 0x0b, 0x09, 0xf0, 0xdb, 0xbe, 0x1d, 0xb8, 0xfa, 0xf0, 0xa0, 0x51, 0x0a,
+ 0xe1, 0x9f, 0x15, 0x17, 0xfb, 0x39, 0x37, 0xda, 0xe1, 0xc3, 0xd4, 0x25,
+ 0xf0, 0xff, 0x0e, 0x13, 0xcb, 0x79, 0x77, 0x10, 0x9c, 0xf5, 0x12, 0xad,
+ 0xe2, 0xce, 0x98, 0xd3, 0x0d, 0x21, 0x4d, 0x42, 0xac, 0xb5, 0x20, 0xf4,
+ 0xea, 0x46, 0x9b, 0xbd, 0x0d, 0x3d, 0x28, 0x39, 0x35, 0xdd, 0xd2, 0x44,
+ 0xde, 0x34, 0x55, 0x4c, 0x03, 0xc8, 0xf9, 0xba, 0xd0, 0xcf, 0x12, 0xa6,
+ 0xeb, 0x95, 0x3d, 0xa6, 0xf0, 0xf4, 0x24, 0xf4, 0xe3, 0x16, 0xc3, 0xec,
+ 0x3b, 0x2f, 0x12, 0xf2, 0xed, 0xe8, 0xc2, 0xd4, 0xed, 0x13, 0x45, 0x59,
+ 0xe9, 0xef, 0xe8, 0xe9, 0xe9, 0xea, 0xb1, 0xc4, 0x20, 0xdd, 0x0b, 0x2e,
+ 0xb3, 0x29, 0xe2, 0x4c, 0xd5, 0x1c, 0xfc, 0xbb, 0x07, 0xe3, 0xf6, 0xc5,
+ 0x26, 0x4f, 0xf4, 0x15, 0xb0, 0x4e, 0x49, 0xd7, 0xe2, 0xb8, 0x2a, 0xe6,
+ 0xfe, 0xd4, 0xf7, 0x18, 0xb1, 0xf1, 0x7b, 0xfb, 0xa7, 0xcb, 0x2f, 0xf9,
+ 0x47, 0x16, 0xb7, 0xe9, 0xee, 0x06, 0xfb, 0x04, 0x51, 0xd8, 0x11, 0xfc,
+ 0x00, 0x04, 0x37, 0x0f, 0xf1, 0x9e, 0xe8, 0xd0, 0x1c, 0x07, 0x1c, 0xf4,
+ 0xd7, 0x16, 0x49, 0xe0, 0xd9, 0xf4, 0xd3, 0x12, 0x4b, 0xd8, 0xa7, 0xce,
+ 0x10, 0x5a, 0x20, 0x0b, 0x4a, 0x22, 0xad, 0x33, 0x51, 0x10, 0x37, 0x49,
+ 0xbd, 0xec, 0x2c, 0x89, 0x39, 0xdd, 0xf3, 0xfb, 0xfa, 0xa5, 0x5b, 0x15,
+ 0x09, 0xf2, 0x01, 0x05, 0x14, 0x32, 0xf0, 0xe2, 0xc3, 0xdf, 0xa6, 0x1f,
+ 0x4f, 0xed, 0x13, 0xe0, 0x1e, 0x4d, 0x1f, 0x27, 0x27, 0xed, 0x3b, 0x9b,
+ 0xea, 0xa8, 0xe9, 0xf2, 0xe4, 0xb9, 0x7f, 0xc2, 0x0c, 0xf4, 0x38, 0x8c,
+ 0x1b, 0x56, 0xcc, 0x28, 0x14, 0x3e, 0xc9, 0x02, 0x3b, 0x0e, 0xea, 0x16,
+ 0x18, 0xd2, 0xfb, 0x19, 0x19, 0x1a, 0x72, 0x92, 0x6e, 0x07, 0xd0, 0xcc,
+ 0xf1, 0x18, 0xcf, 0x65, 0xc2, 0xcc, 0xd9, 0xf8, 0xc1, 0xbd, 0x08, 0x2c,
+ 0x1d, 0x1d, 0xb6, 0xef, 0xde, 0xe3, 0xc5, 0xda, 0x0d, 0x07, 0xee, 0x18,
+ 0x0c, 0x0c, 0x49, 0xe7, 0x1b, 0x1b, 0x1c, 0xd4, 0xa7, 0x22, 0xe4, 0xdb,
+ 0xcd, 0xf0, 0xe4, 0x2c, 0x41, 0x12, 0x03, 0xe1, 0xf7, 0xc0, 0x19, 0x2e,
+ 0xde, 0x05, 0x44, 0xfc, 0x1a, 0xf8, 0x00, 0xb3, 0xf4, 0xfc, 0xd6, 0x17,
+ 0xd4, 0xea, 0xfd, 0x47, 0xb6, 0xd7, 0xc3, 0x0e, 0xf1, 0xc9, 0xeb, 0x12,
+ 0xe9, 0x1f, 0x2b, 0x06, 0xee, 0x31, 0xdd, 0x0b, 0x2e, 0xff, 0x2d, 0xe7,
+ 0x64, 0x34, 0x1e, 0x2e, 0x05, 0xda, 0x4c, 0x05, 0x0e, 0x3d, 0xeb, 0x25,
+ 0xb4, 0x43, 0xd1, 0x66, 0xf2, 0x52, 0xcb, 0x21, 0xf9, 0xec, 0xf6, 0x0b,
+ 0xe1, 0x01, 0xe4, 0x2d, 0x03, 0x15, 0xc1, 0xd2, 0x23, 0x20, 0xfc, 0xd6,
+ 0x06, 0xe6, 0x4e, 0x35, 0x13, 0xd3, 0x2c, 0xcc, 0x9f, 0x3d, 0x25, 0xf2,
+ 0xe1, 0x2c, 0x06, 0x04, 0x19, 0xba, 0xd7, 0xe6, 0x17, 0xc1, 0x16, 0xd8,
+ 0xe8, 0x06, 0x27, 0x1d, 0x41, 0x41, 0xd4, 0xef, 0xd4, 0xf7, 0x35, 0x35,
+ 0x4b, 0x3f, 0x32, 0x18, 0xce, 0xe8, 0xe4, 0x17, 0xc7, 0x0d, 0xe0, 0x51,
+ 0xd8, 0x1c, 0xf3, 0x24, 0x19, 0xe9, 0x19, 0x28, 0x32, 0x01, 0x08, 0x03,
+ 0x37, 0xd7, 0xc7, 0x3e, 0x16, 0x02, 0x7f, 0xfa, 0x37, 0x06, 0xa4, 0xd4,
+ 0xda, 0x65, 0x24, 0x57, 0xe0, 0xf7, 0x21, 0x2d, 0x0e, 0xc4, 0xfb, 0x1d,
+ 0xe5, 0x41, 0xdf, 0x01, 0x0a, 0xe2, 0x10, 0xf1, 0xcf, 0xd6, 0xe6, 0x1f,
+ 0xdf, 0x27, 0x4d, 0x3c, 0x26, 0x3b, 0x22, 0x08, 0x0d, 0x0b, 0xe2, 0xde,
+ 0xd2, 0xe5, 0xff, 0x03, 0xf4, 0xde, 0x1a, 0xb5, 0xed, 0xd5, 0xf2, 0xfb,
+ 0x0f, 0xf5, 0xf0, 0xee, 0xf3, 0x14, 0x0b, 0xea, 0x21, 0xd8, 0xfe, 0x1f,
+ 0x4b, 0x51, 0xf5, 0x3d, 0xf5, 0x2c, 0x1f, 0x06, 0xe2, 0x04, 0x27, 0x30,
+ 0xed, 0xf3, 0xec, 0x28, 0x2c, 0x16, 0xed, 0xc8, 0x25, 0xe1, 0xb7, 0x0b,
+ 0xeb, 0x34, 0xca, 0x4c, 0x2d, 0x4e, 0x60, 0xc9, 0x63, 0xf8, 0x0f, 0x19,
+ 0xe1, 0x34, 0xd8, 0x2a, 0x2d, 0xc6, 0x03, 0xf4, 0xf9, 0xf4, 0x0f, 0x17,
+ 0x13, 0xb3, 0xc1, 0x23, 0xd7, 0xc9, 0xec, 0x12, 0x02, 0x3e, 0x15, 0x45,
+ 0x31, 0x42, 0x77, 0xec, 0x34, 0xdf, 0xbd, 0x13, 0x1c, 0xdd, 0xb9, 0x20,
+ 0x29, 0xd9, 0xb3, 0xac, 0x27, 0xd4, 0x23, 0xbb, 0x2a, 0x23, 0xea, 0xcd,
+ 0x47, 0x7f, 0x64, 0xfd, 0xd9, 0xf0, 0x15, 0x27, 0xff, 0xf5, 0xb4, 0x4b,
+ 0x0d, 0x33, 0x74, 0x24, 0x18, 0xae, 0x3c, 0x81, 0x6d, 0xdd, 0xac, 0x37,
+ 0x2c, 0x0f, 0x18, 0x2e, 0xdf, 0xae, 0x0f, 0x44, 0x32, 0xc9, 0x2a, 0x0e,
+ 0x1f, 0x06, 0xfa, 0x4e, 0xf8, 0x09, 0x3e, 0x0c, 0xfb, 0xeb, 0x29, 0x3b,
+ 0x03, 0x4f, 0xff, 0x43, 0xf1, 0x04, 0xce, 0xb8, 0x40, 0x38, 0x2b, 0x2e,
+ 0xfe, 0x25, 0xb4, 0xfc, 0xf3, 0x02, 0xce, 0x3c, 0x32, 0x24, 0x55, 0xf4,
+ 0x0f, 0x34, 0x0c, 0x3d, 0x4e, 0xd2, 0xd2, 0x1f, 0x26, 0x44, 0x0b, 0xec,
+ 0xeb, 0xd0, 0xd9, 0xa9, 0x0a, 0xd4, 0x2f, 0xe2, 0xe8, 0xe2, 0xed, 0x34,
+ 0xe1, 0x78, 0x06, 0xb1, 0x46, 0xb1, 0xf9, 0x0a, 0x20, 0xfa, 0xf6, 0x02,
+ 0x0b, 0xf4, 0x60, 0x1a, 0x03, 0xbf, 0xeb, 0xe2, 0x58, 0xb6, 0xab, 0x5d,
+ 0x16, 0xe5, 0x1d, 0xce, 0xf4, 0xf9, 0xe7, 0xc0, 0x46, 0xc7, 0xc8, 0x02,
+ 0x00, 0x3c, 0x1f, 0x54, 0xe4, 0x3e, 0x02, 0xfc, 0x55, 0x24, 0x30, 0x5f,
+ 0xc4, 0x4e, 0xab, 0x3d, 0xe9, 0xb8, 0xd4, 0x1c, 0x3d, 0xf8, 0xdd, 0xce,
+ 0x07, 0xd1, 0xa6, 0xef, 0xd4, 0xf0, 0xf7, 0xd8, 0xe5, 0xff, 0x43, 0xe6,
+ 0x36, 0x2e, 0x40, 0xf2, 0x41, 0x2f, 0xf6, 0xe6, 0x10, 0xee, 0xf5, 0x3f,
+ 0x18, 0x34, 0xba, 0x02, 0x00, 0xee, 0xd8, 0x0b, 0xd3, 0xff, 0x1c, 0x29,
+ 0x56, 0x63, 0x66, 0xb7, 0x13, 0xe1, 0x74, 0xe3, 0x09, 0xc6, 0xe2, 0x50,
+ 0xd8, 0x2c, 0x43, 0xdc, 0x1d, 0x1c, 0x2b, 0x9d, 0x10, 0x0a, 0xc4, 0x2f,
+ 0xe2, 0x45, 0x1e, 0xeb, 0x12, 0x04, 0xcd, 0xb4, 0xb8, 0xc5, 0xb7, 0xcf,
+ 0xea, 0xcd, 0x95, 0xf8, 0x28, 0xd8, 0xf7, 0x2b, 0xaf, 0xe9, 0x1e, 0xe3,
+ 0xe1, 0xec, 0xd4, 0x28, 0x20, 0x0d, 0xff, 0x18, 0xe8, 0xc9, 0x58, 0xf0,
+ 0x22, 0x2b, 0xea, 0x31, 0xe2, 0x0a, 0xf2, 0xd0, 0xfd, 0x42, 0xe1, 0xff,
+ 0x17, 0x08, 0x3a, 0x25, 0x05, 0xc8, 0xf5, 0x26, 0xcd, 0xd6, 0xd9, 0x3c,
+ 0x0f, 0x2e, 0x17, 0x15, 0x30, 0x2a, 0x26, 0xf9, 0xd2, 0x4c, 0xcd, 0xca,
+ 0xec, 0xfc, 0xc4, 0x27, 0xc6, 0xaa, 0xb6, 0xc6, 0x1e, 0xe4, 0xbb, 0x60,
+ 0xf5, 0xa4, 0xe3, 0x70, 0x03, 0xe4, 0x01, 0xed, 0x17, 0x01, 0x18, 0xc0,
+ 0xc0, 0x28, 0xf7, 0xea, 0xdc, 0xf3, 0xfc, 0x11, 0xdd, 0x19, 0x11, 0xc6,
+ 0x12, 0xe2, 0xa0, 0x0d, 0xf2, 0xd8, 0x05, 0x12, 0xde, 0xda, 0x22, 0x44,
+ 0xdc, 0x27, 0xe0, 0xf2, 0x11, 0x28, 0x2b, 0x09, 0x01, 0xb7, 0x2b, 0xba,
+ 0x2c, 0x11, 0x0b, 0x43, 0xe8, 0xc3, 0xb1, 0x94, 0xd6, 0x30, 0x09, 0x26,
+ 0x4f, 0x0e, 0xea, 0x0e, 0x16, 0xa5, 0x47, 0x1e, 0xdc, 0x2b, 0xd8, 0x33,
+ 0x2c, 0xfb, 0xdf, 0xf9, 0x07, 0xfe, 0x1a, 0x02, 0xa8, 0x06, 0x0d, 0x4b,
+ 0x07, 0x4d, 0xf2, 0xbb, 0x13, 0xb3, 0x06, 0xff, 0x15, 0xf8, 0x21, 0x62,
+ 0xf6, 0xf7, 0x1e, 0x31, 0x1e, 0xee, 0x14, 0xf2, 0x57, 0x2a, 0x24, 0xc0,
+ 0x2f, 0x37, 0x26, 0xe8, 0x1b, 0xcd, 0x06, 0xda, 0xe8, 0x20, 0xe4, 0xe9,
+ 0xd4, 0xf8, 0xd4, 0xe8, 0x27, 0xd1, 0x31, 0xda, 0xf6, 0xfb, 0xee, 0x4c,
+ 0x23, 0xe4, 0xfa, 0xf1, 0xec, 0xf5, 0xce, 0xda, 0xbb, 0xc7, 0x7f, 0xcf,
+ 0x3a, 0xec, 0xed, 0xfa, 0x13, 0x0b, 0xb6, 0xd3, 0xe5, 0x2c, 0xb5, 0xf4,
+ 0x3d, 0x0a, 0x50, 0x41, 0xdd, 0xf6, 0x3c, 0x43, 0xcb, 0x02, 0x1e, 0x33,
+ 0x35, 0xdf, 0x32, 0x03, 0x1d, 0x39, 0x60, 0x26, 0xb4, 0x4d, 0xf8, 0xcb,
+ 0xe4, 0x0d, 0xa4, 0xf7, 0xbd, 0xc7, 0xf9, 0xeb, 0x07, 0x1a, 0x24, 0x69,
+ 0x98, 0xd7, 0x20, 0x05, 0x17, 0xc1, 0x3b, 0xe1, 0x74, 0x1d, 0xdf, 0xec,
+ 0x1f, 0x53, 0xd2, 0x50, 0xbe, 0xeb, 0x15, 0x32, 0x1c, 0xeb, 0x55, 0x53,
+ 0x1f, 0xf4, 0xcd, 0x32, 0x17, 0x8e, 0xf1, 0x30, 0x36, 0x54, 0x10, 0xf8,
+ 0xfe, 0xf6, 0x2d, 0xf6, 0xfb, 0x04, 0x25, 0xff, 0x24, 0x1f, 0x36, 0xef,
+ 0x06, 0xd9, 0xbc, 0x06, 0xff, 0xc8, 0xc8, 0x36, 0x52, 0x29, 0x14, 0x13,
+ 0x2b, 0x19, 0xd0, 0x0f, 0x46, 0x17, 0xfe, 0xe2, 0xe8, 0x10, 0x07, 0x1c,
+ 0x28, 0x15, 0xe4, 0xe1, 0x14, 0xa2, 0x4d, 0x07, 0x9a, 0x15, 0x3a, 0xac,
+ 0xbf, 0x0e, 0x2e, 0x53, 0xad, 0xdc, 0x49, 0x27, 0x34, 0xe7, 0x2a, 0x3f,
+ 0xae, 0x18, 0x2a, 0xe1, 0xe6, 0xb2, 0x2f, 0xe2, 0xe0, 0xf5, 0x21, 0xe8,
+ 0x16, 0x77, 0x32, 0x0d, 0x02, 0x4e, 0x46, 0x44, 0x39, 0x4e, 0x70, 0x30,
+ 0xf6, 0xed, 0xb0, 0xd7, 0x4b, 0x0a, 0xdd, 0x00, 0x36, 0x74, 0x32, 0xff,
+ 0x5a, 0x19, 0xc6, 0x09, 0xf6, 0x2a, 0xf7, 0x63, 0x30, 0x19, 0x0d, 0xe0,
+ 0xf8, 0x25, 0xf7, 0x34, 0xe9, 0xe3, 0xe5, 0xfe, 0xee, 0x08, 0xec, 0x1a,
+ 0x09, 0x0a, 0xec, 0xf6, 0x13, 0x5c, 0x46, 0x06, 0x21, 0xfe, 0xbd, 0x19,
+ 0xcb, 0xf6, 0xdc, 0xd5, 0x6f, 0xcf, 0x52, 0x07, 0xc8, 0x18, 0x4a, 0xa2,
+ 0xdf, 0x0b, 0x10, 0x34, 0xbf, 0x6e, 0x5b, 0xe1, 0x09, 0x1e, 0x05, 0x4f,
+ 0x15, 0xff, 0x35, 0xfb, 0x04, 0xb3, 0xea, 0xb2, 0x59, 0x0c, 0xf3, 0xc8,
+ 0x11, 0x62, 0x16, 0x39, 0xca, 0xe9, 0x6a, 0x50, 0x3f, 0xc6, 0x63, 0x4f,
+ 0x0a, 0xfb, 0xb1, 0x11, 0x1e, 0x21, 0xa3, 0x21, 0x59, 0x10, 0x55, 0x39,
+ 0x53, 0xfa, 0x2d, 0x07, 0xea, 0xd5, 0xf9, 0x47, 0x3f, 0xe5, 0xef, 0xa9,
+ 0x8e, 0xe3, 0xea, 0xce, 0xf4, 0xbe, 0xc0, 0xe3, 0xd1, 0xf3, 0xd3, 0x0e,
+ 0x04, 0x03, 0x0e, 0x30, 0x36, 0xf6, 0x15, 0x15, 0x12, 0x12, 0xd7, 0xe7,
+ 0xd4, 0xcf, 0xe3, 0xb6, 0x42, 0x81, 0x3e, 0xea, 0xf5, 0x59, 0xe4, 0x88,
+ 0xbb, 0x5a, 0xcf, 0x01, 0xdd, 0x37, 0x5a, 0xfa, 0x1e, 0x3d, 0xf6, 0x08,
+ 0xe6, 0x51, 0x26, 0x30, 0x14, 0xd0, 0x1a, 0x21, 0xfc, 0xea, 0x13, 0xbd,
+ 0xef, 0xf2, 0xb5, 0x01, 0x06, 0xcf, 0x11, 0xd1, 0xf1, 0x00, 0xa2, 0xb7,
+ 0xf4, 0xe6, 0x25, 0xe1, 0x0b, 0x02, 0x21, 0xdc, 0x08, 0x0c, 0xc6, 0xe6,
+ 0x0f, 0x10, 0xf3, 0xc3, 0xae, 0xa0, 0xc3, 0xdc, 0xfb, 0x2d, 0xf9, 0x2f,
+ 0x3a, 0x0f, 0x08, 0xe9, 0xf5, 0xe1, 0x3b, 0xf5, 0x3d, 0x56, 0xf7, 0xe2,
+ 0xfa, 0xf6, 0x35, 0x3e, 0x2d, 0xf1, 0xfd, 0x27, 0x3b, 0xec, 0xfa, 0xd2,
+ 0xe9, 0x00, 0x33, 0xfa, 0xc6, 0x58, 0xec, 0x37, 0xd8, 0x3a, 0xf9, 0x00,
+ 0x03, 0xf9, 0xe7, 0x11, 0x29, 0x39, 0xe2, 0xd0, 0xfc, 0x35, 0xe0, 0xdf,
+ 0xfb, 0x39, 0x2c, 0x24, 0x12, 0x4d, 0xca, 0xf9, 0x27, 0x0a, 0x15, 0xdc,
+ 0x11, 0x0c, 0xb2, 0xf6, 0x37, 0xba, 0xf0, 0x13, 0xfb, 0xc4, 0xbd, 0xd2,
+ 0x2c, 0x0f, 0xfb, 0xcc, 0xde, 0xde, 0x37, 0x05, 0xf1, 0xe3, 0xec, 0x20,
+ 0xc3, 0x09, 0x13, 0xf8, 0x81, 0xc1, 0xc2, 0xf8, 0x14, 0x17, 0xcc, 0x23,
+ 0x05, 0x2d, 0xfd, 0xeb, 0x1d, 0x1c, 0xc8, 0xd3, 0x28, 0x45, 0x40, 0x07,
+ 0x54, 0xd8, 0x36, 0x35, 0x2a, 0x07, 0xb6, 0x0a, 0x07, 0x44, 0x2d, 0xfb,
+ 0xeb, 0xf7, 0x24, 0x62, 0x11, 0x05, 0xd9, 0x33, 0xd0, 0xf3, 0xe0, 0x13,
+ 0x13, 0x0f, 0x08, 0xc7, 0x07, 0xe8, 0xd3, 0x04, 0x10, 0x12, 0x1e, 0x11,
+ 0x41, 0x40, 0x1a, 0x22, 0xe5, 0x35, 0xdd, 0xee, 0x15, 0xec, 0xea, 0xfe,
+ 0xd8, 0xf9, 0xf6, 0xd0, 0xfe, 0xb7, 0xcd, 0xd2, 0xfc, 0x11, 0xfa, 0xe3,
+ 0x11, 0xc9, 0xee, 0xe5, 0xdf, 0x90, 0xfe, 0x18, 0x06, 0x3b, 0xc9, 0xe5,
+ 0xea, 0xd4, 0xf9, 0xaa, 0xd5, 0xf1, 0x25, 0xfa, 0x10, 0x23, 0xeb, 0xf4,
+ 0x38, 0xe8, 0x1f, 0x0e, 0x26, 0x14, 0x0d, 0xe5, 0x08, 0x2c, 0xfa, 0xce,
+ 0xf9, 0xa1, 0x48, 0x38, 0x54, 0x3a, 0x2a, 0xd3, 0xf1, 0xe2, 0x21, 0x18,
+ 0xda, 0xc8, 0x03, 0x27, 0xdb, 0x41, 0xb6, 0x1b, 0x05, 0xe2, 0xe4, 0x21,
+ 0xf8, 0x07, 0xba, 0xd0, 0xdc, 0xe9, 0x0b, 0xfa, 0x2f, 0xfb, 0xf0, 0x03,
+ 0xfc, 0x26, 0xf6, 0x20, 0x13, 0x0f, 0xd5, 0x01, 0xfa, 0x0c, 0xd1, 0xdf,
+ 0xe5, 0x29, 0x31, 0x1f, 0xe0, 0xe9, 0xa0, 0xcc, 0xbb, 0x54, 0xd6, 0x4b,
+ 0xba, 0xd7, 0xd2, 0x4e, 0x59, 0xaa, 0xbf, 0xe2, 0xbe, 0xbf, 0x21, 0xff,
+ 0xe8, 0xcd, 0x3b, 0xb3, 0xf9, 0xe4, 0x0e, 0xf0, 0x39, 0x44, 0xe8, 0x4c,
+ 0x9e, 0x44, 0xfb, 0xf0, 0xc0, 0x61, 0x27, 0x48, 0x29, 0xe5, 0x30, 0xe8,
+ 0xf1, 0xe7, 0xb0, 0xd8, 0x3a, 0x75, 0x16, 0x00, 0xb7, 0xeb, 0xfb, 0xba,
+ 0xe8, 0xee, 0xcc, 0x43, 0xef, 0x3b, 0x29, 0x74, 0xd8, 0xe2, 0xc1, 0x5a,
+ 0xc4, 0x30, 0x6b, 0xe3, 0xee, 0xc3, 0xf3, 0x11, 0x01, 0xe3, 0xba, 0xe4,
+ 0x5a, 0x23, 0x27, 0x06, 0x31, 0xf9, 0xf9, 0x8f, 0xed, 0xfa, 0x4d, 0x02,
+ 0x40, 0xfa, 0x59, 0xf2, 0x10, 0x0f, 0x0f, 0xd6, 0x34, 0x1b, 0x1c, 0x05,
+ 0xff, 0x0b, 0x56, 0xd3, 0x0d, 0xd6, 0xde, 0x0f, 0xae, 0xdc, 0x1b, 0xcf,
+ 0xa1, 0xea, 0xdb, 0x90, 0xda, 0xce, 0xeb, 0xfc, 0x3c, 0x47, 0xb4, 0x41,
+ 0xbe, 0x55, 0x08, 0xe4, 0x2c, 0x56, 0x17, 0x33, 0x31, 0xb2, 0x0b, 0xeb,
+ 0xd0, 0xbd, 0xc6, 0x5d, 0xef, 0x6d, 0xc5, 0x3b, 0xf1, 0xaa, 0x3a, 0xf6,
+ 0x4d, 0x45, 0x6f, 0xff, 0xce, 0x0f, 0xbd, 0x5b, 0x19, 0x49, 0x24, 0x1b,
+ 0x16, 0xd3, 0x53, 0x05, 0xdd, 0xae, 0x56, 0x23, 0x0a, 0xc4, 0xc8, 0xfe,
+ 0x10, 0xe7, 0x15, 0x2d, 0xfb, 0x17, 0xb5, 0x32, 0xf0, 0xf5, 0x33, 0xeb,
+ 0x08, 0x5d, 0x09, 0xe1, 0xee, 0x20, 0x92, 0xe6, 0xc9, 0x1d, 0x22, 0xe0,
+ 0xa8, 0x18, 0x2f, 0x3d, 0xed, 0xb8, 0x8f, 0xc5, 0x14, 0xfa, 0x37, 0x81,
+ 0xc7, 0xbc, 0xec, 0xe6, 0x11, 0x03, 0x46, 0x43, 0x3e, 0x49, 0xd4, 0x00,
+ 0xad, 0x5b, 0x3e, 0xa8, 0xb4, 0x70, 0x79, 0x69, 0xd7, 0xd0, 0x47, 0x4c,
+ 0x1a, 0x04, 0xcd, 0x22, 0x00, 0x74, 0xa9, 0xeb, 0x35, 0xef, 0x38, 0xe6,
+ 0xdf, 0x36, 0xdf, 0x73, 0xda, 0x1c, 0x27, 0x54, 0xfd, 0xcc, 0xd1, 0xe4,
+ 0xd2, 0xca, 0x68, 0xd3, 0xf0, 0xc9, 0x30, 0xc0, 0x03, 0xa6, 0x14, 0xdc,
+ 0x40, 0x33, 0xf6, 0xe5, 0x2f, 0xd2, 0xd0, 0xeb, 0x26, 0xa0, 0x20, 0x2b,
+ 0xfb, 0xc8, 0x15, 0x47, 0x01, 0x5a, 0x0d, 0xe7, 0xf3, 0x23, 0xf8, 0x32,
+ 0x2a, 0xdd, 0x15, 0x2e, 0x04, 0xfe, 0x35, 0xd6, 0xd1, 0xff, 0xe2, 0xf8,
+ 0xda, 0x0d, 0x60, 0x4a, 0x5b, 0xee, 0xf9, 0x26, 0xd9, 0xf3, 0x13, 0xe0,
+ 0x18, 0x32, 0x0e, 0xdd, 0x20, 0x18, 0xde, 0xca, 0x1f, 0x0a, 0x29, 0xf9,
+ 0xd3, 0xe1, 0x39, 0xf6, 0x35, 0x0d, 0xe4, 0xee, 0xfd, 0x3d, 0x4e, 0xfa,
+ 0xa3, 0x0f, 0xef, 0x11, 0xf2, 0x23, 0xc0, 0xe6, 0xe1, 0xf0, 0xf9, 0x17,
+ 0xe6, 0x40, 0xc0, 0xf3, 0x38, 0x0f, 0x44, 0xf8, 0xe1, 0xb2, 0xd6, 0xd1,
+ 0xd9, 0xdb, 0x32, 0x04, 0x07, 0xf6, 0x18, 0xc4, 0xd2, 0x00, 0xcd, 0xf9,
+ 0xc1, 0xb5, 0xe7, 0xf8, 0xff, 0x14, 0x3e, 0xe6, 0xcd, 0x22, 0xfb, 0x2c,
+ 0x09, 0xc5, 0xe7, 0x37, 0x44, 0xd7, 0xe8, 0xfd, 0x34, 0xce, 0x10, 0xd7,
+ 0xf2, 0x40, 0x47, 0x03, 0x27, 0xdd, 0x0a, 0x0e, 0xc1, 0xf3, 0xe4, 0xc1,
+ 0x33, 0x50, 0x1b, 0x18, 0xde, 0x33, 0xee, 0x03, 0x01, 0x0d, 0xce, 0x17,
+ 0x07, 0xcc, 0x23, 0xaa, 0x1e, 0x0c, 0x25, 0xee, 0xf1, 0x0a, 0xfc, 0xf7,
+ 0xb2, 0x14, 0xd6, 0xf4, 0xd7, 0xd5, 0xb0, 0x0c, 0x48, 0x09, 0xe1, 0xc3,
+ 0xcc, 0x0f, 0x07, 0xf0, 0x15, 0x27, 0x2e, 0x1e, 0xf4, 0xc2, 0xe9, 0xf2,
+ 0xfc, 0xe2, 0x1f, 0xf2, 0xcd, 0xc4, 0x0e, 0xcc, 0xf5, 0xfb, 0x10, 0xe3,
+ 0x3e, 0x18, 0x14, 0x15, 0x2a, 0x26, 0x01, 0x06, 0x31, 0xf6, 0x18, 0x35,
+ 0xf4, 0x08, 0xc4, 0x5a, 0x2b, 0xd9, 0xee, 0xf4, 0x11, 0x0a, 0x2f, 0xe9,
+ 0x1b, 0x1f, 0x02, 0x0b, 0xef, 0x06, 0xe1, 0x14, 0x14, 0xed, 0x1e, 0xd2,
+ 0x44, 0x17, 0x51, 0xfe, 0x21, 0x1f, 0xfc, 0x17, 0xee, 0x49, 0x12, 0x41,
+ 0xeb, 0xce, 0x41, 0xeb, 0x2b, 0xeb, 0x24, 0x03, 0xd7, 0x2f, 0x37, 0x11,
+ 0xbd, 0xd8, 0xdb, 0xcf, 0xdb, 0xfe, 0x81, 0x1d, 0x40, 0xfa, 0x0b, 0xf6,
+ 0xea, 0x5c, 0xeb, 0xce, 0xe8, 0x0e, 0x0b, 0x02, 0x01, 0xb9, 0x0e, 0xed,
+ 0xfd, 0xce, 0x54, 0xc9, 0xe1, 0xc5, 0x53, 0x0b, 0xc2, 0xda, 0xc5, 0x15,
+ 0xc2, 0x60, 0x12, 0xed, 0x2c, 0x23, 0x87, 0x03, 0x40, 0x30, 0x16, 0xc8,
+ 0x38, 0x28, 0xff, 0x24, 0x2a, 0xd1, 0xce, 0xe8, 0x5e, 0x2b, 0xd0, 0x3f,
+ 0x1a, 0xd2, 0xdb, 0xf5, 0xc0, 0xf1, 0xdd, 0xc6, 0x0f, 0x59, 0xdf, 0xea,
+ 0xf8, 0x1a, 0xf9, 0x51, 0x11, 0x04, 0xe2, 0xd8, 0x3f, 0x3b, 0xd3, 0x37,
+ 0x47, 0xe1, 0xf1, 0xe7, 0x0b, 0x09, 0x11, 0xcf, 0xd0, 0xc1, 0x25, 0xe4,
+ 0xd5, 0x10, 0xce, 0xf1, 0x25, 0xc7, 0xf9, 0xfb, 0x07, 0xcd, 0xa7, 0xd5,
+ 0xe3, 0xc5, 0xd5, 0x33, 0xc0, 0xfd, 0xb9, 0x4c, 0x0a, 0x1c, 0x10, 0x0e,
+ 0xd7, 0x2b, 0x33, 0xd6, 0xf0, 0xc9, 0x10, 0x05, 0x1d, 0xa7, 0x11, 0xe4,
+ 0x24, 0x4c, 0x0a, 0xf1, 0xed, 0x1a, 0x9b, 0xf7, 0xe6, 0x0c, 0xe7, 0x07,
+ 0x2c, 0x21, 0xc8, 0x21, 0x2c, 0xed, 0x2a, 0xb6, 0x2c, 0x3f, 0x18, 0xfc,
+ 0x0e, 0x27, 0x26, 0x01, 0x16, 0xd2, 0x12, 0xce, 0x47, 0xfa, 0xcc, 0xfc,
+ 0x1b, 0xf6, 0xf6, 0xf8, 0xfb, 0x16, 0x39, 0x0c, 0x07, 0x4a, 0xf7, 0x4c,
+ 0x52, 0x11, 0x40, 0x26, 0x12, 0x2e, 0x1d, 0x31, 0xd7, 0x07, 0xcf, 0xe1,
+ 0xe9, 0xf8, 0xfa, 0xff, 0x24, 0xe4, 0x4b, 0x47, 0xa0, 0xfb, 0xd3, 0xfc,
+ 0x34, 0xcd, 0xe9, 0x36, 0xd1, 0xfe, 0xb3, 0x18, 0xeb, 0xfb, 0x23, 0x2b,
+ 0x1d, 0x25, 0x23, 0x4a, 0xa3, 0xb9, 0x27, 0x11, 0x06, 0xb1, 0xd4, 0xce,
+ 0x25, 0xeb, 0xfd, 0x26, 0x0d, 0xdd, 0xec, 0xea, 0xf1, 0x13, 0xcf, 0xe8,
+ 0x51, 0xd7, 0xc1, 0xc2, 0xde, 0x08, 0x47, 0xe8, 0x4d, 0x37, 0x11, 0x03,
+ 0x27, 0x4b, 0x03, 0x04, 0xfa, 0xd8, 0x0d, 0x44, 0xd7, 0x40, 0x1e, 0xf4,
+ 0x23, 0xe4, 0x0f, 0x08, 0xe7, 0xdc, 0xf8, 0x15, 0x27, 0x22, 0x05, 0xde,
+ 0x28, 0xea, 0x26, 0xff, 0x2b, 0x7f, 0xf8, 0x15, 0x1c, 0xe3, 0xd1, 0xd0,
+ 0x13, 0xe8, 0xcd, 0x2c, 0xc6, 0x3c, 0xfa, 0x23, 0xa1, 0x23, 0x22, 0x06,
+ 0x3b, 0xe1, 0x21, 0x18, 0xc6, 0xe8, 0xc7, 0xd7, 0x3e, 0x2c, 0xef, 0x1b,
+ 0xf2, 0x2c, 0x06, 0x54, 0x0d, 0xd8, 0xe2, 0x13, 0xe0, 0xb9, 0x1e, 0x06,
+ 0xe6, 0x43, 0x00, 0x39, 0xe0, 0x28, 0xc4, 0x5a, 0xf6, 0x30, 0x18, 0x0b,
+ 0x34, 0x2f, 0x44, 0x1b, 0xff, 0x83, 0xe4, 0x03, 0xf6, 0x06, 0xfa, 0xd3,
+ 0x1b, 0x1c, 0x1f, 0x24, 0xfe, 0x17, 0x48, 0x47, 0xce, 0x0e, 0xf6, 0x3a,
+ 0xfb, 0x16, 0x17, 0x3e, 0x0f, 0x5f, 0xbf, 0x95, 0x00, 0x2f, 0xe0, 0xf5,
+ 0x3e, 0x0a, 0xf9, 0xe1, 0x3b, 0xe5, 0xb5, 0x3d, 0xfd, 0xd6, 0x3f, 0xd2,
+ 0x33, 0xee, 0xfc, 0xd2, 0x3e, 0x0b, 0x56, 0x3a, 0xf1, 0x34, 0xce, 0x0b,
+ 0xc7, 0x16, 0x31, 0x11, 0xf7, 0x19, 0x15, 0xea, 0x34, 0x08, 0x59, 0x4b,
+ 0xd9, 0xfc, 0xc7, 0x7f, 0x03, 0x02, 0xc2, 0xd5, 0xff, 0xd2, 0x45, 0xda,
+ 0x06, 0x31, 0x38, 0x2f, 0x10, 0xd8, 0xd7, 0x2f, 0xe8, 0xfd, 0xc3, 0xc0,
+ 0x1b, 0x2f, 0x30, 0x2a, 0x13, 0xda, 0x48, 0x09, 0x53, 0x37, 0x27, 0xe2,
+ 0xf1, 0x3b, 0xff, 0xfb, 0x0a, 0x03, 0x06, 0x31, 0x21, 0x02, 0x45, 0x13,
+ 0xd2, 0xf2, 0x15, 0xe3, 0x39, 0x5d, 0xe2, 0xb4, 0x38, 0xc2, 0x17, 0x19,
+ 0xe2, 0x00, 0x32, 0x16, 0x16, 0x12, 0xff, 0x0e, 0xee, 0x28, 0x4b, 0xbc,
+ 0x21, 0xb8, 0xcf, 0xe1, 0xed, 0xeb, 0x60, 0xf3, 0x1f, 0xec, 0x0f, 0x12,
+ 0x0c, 0x07, 0x3e, 0x13, 0x15, 0x16, 0x0b, 0x3c, 0x27, 0xff, 0x41, 0xf0,
+ 0xe7, 0xfe, 0xd3, 0x0f, 0x1e, 0x57, 0x13, 0x17, 0xe5, 0x01, 0xce, 0x89,
+ 0xdd, 0x24, 0x51, 0xda, 0x42, 0xeb, 0x42, 0x2d, 0x22, 0x69, 0x1f, 0xbb,
+ 0xe4, 0xe1, 0x32, 0xf3, 0xed, 0xaa, 0xfe, 0xe4, 0x51, 0x2d, 0xdd, 0xda,
+ 0xd3, 0xb9, 0xee, 0xec, 0xb8, 0xed, 0x12, 0x0d, 0xba, 0x3a, 0xdd, 0x3d,
+ 0x0b, 0x0e, 0x14, 0xe3, 0x36, 0x3d, 0xed, 0xdc, 0xed, 0xea, 0x0a, 0x0c,
+ 0x13, 0xd2, 0xd5, 0xe3, 0xfc, 0xcd, 0xac, 0x12, 0x2a, 0x25, 0x3d, 0xc8,
+ 0x34, 0xf4, 0xea, 0xaf, 0xdc, 0x32, 0x21, 0xe4, 0x17, 0xff, 0xd6, 0xf5,
+ 0x2a, 0x3e, 0x3e, 0xfd, 0x05, 0x1c, 0xd6, 0xe8, 0x41, 0xff, 0x3d, 0x38,
+ 0x24, 0x1a, 0xa3, 0x45, 0xd6, 0x34, 0xcf, 0x06, 0xf1, 0x39, 0xed, 0xb3,
+ 0x19, 0x3d, 0xf1, 0x04, 0x15, 0xe6, 0xdc, 0xea, 0xf9, 0xe7, 0xd4, 0xec,
+ 0xc5, 0x4f, 0x11, 0x1b, 0x32, 0x94, 0xe7, 0x11, 0x39, 0x05, 0xf6, 0xbe,
+ 0xf2, 0x0a, 0xdd, 0xf5, 0x89, 0xd4, 0x27, 0xe8, 0x0b, 0x2e, 0xeb, 0xed,
+ 0x0a, 0x08, 0xb7, 0x46, 0x11, 0xec, 0xe6, 0xdf, 0xb2, 0x68, 0xf7, 0xba,
+ 0x5a, 0xc1, 0x22, 0x21, 0x1b, 0x02, 0xf6, 0x26, 0x0b, 0x1d, 0xbc, 0x2d,
+ 0x1f, 0x0d, 0x2c, 0x09, 0xbe, 0xed, 0xed, 0x6a, 0xb4, 0x15, 0xcf, 0x42,
+ 0x0d, 0xb7, 0x38, 0x08, 0x2a, 0xe9, 0xf3, 0xe8, 0xe2, 0x03, 0x12, 0x1b,
+ 0x12, 0x31, 0x01, 0x3e, 0xe9, 0x50, 0xd2, 0xdd, 0x12, 0xf5, 0x38, 0x48,
+ 0xf9, 0x41, 0xfe, 0xbf, 0xf4, 0xba, 0xcc, 0xdd, 0x0a, 0x11, 0x9d, 0xd7,
+ 0x33, 0x47, 0x21, 0xfb, 0xde, 0xd8, 0x3c, 0xdc, 0xf6, 0x20, 0x85, 0xff,
+ 0x37, 0x30, 0x9e, 0xd4, 0x81, 0x94, 0xf2, 0xf0, 0x30, 0x15, 0x04, 0x1a,
+ 0xff, 0xf6, 0x10, 0x1d, 0x07, 0xc5, 0x0f, 0xfe, 0x16, 0x6f, 0xfc, 0x2b,
+ 0x11, 0xb3, 0x34, 0x43, 0x46, 0xec, 0x1d, 0xe6, 0x13, 0xd3, 0xae, 0x0a,
+ 0xfb, 0xc2, 0x1e, 0x1b, 0xf8, 0xdd, 0x23, 0x6a, 0xbb, 0x47, 0xcf, 0x30,
+ 0x35, 0xc2, 0xe3, 0x00, 0x3c, 0xde, 0xf1, 0xf6, 0x2f, 0xde, 0xe8, 0xf2,
+ 0x1e, 0x05, 0x55, 0x2f, 0x07, 0x1d, 0x10, 0xec, 0x39, 0xb2, 0x0e, 0x3c,
+ 0xb5, 0x24, 0xe1, 0x08, 0xbf, 0xc9, 0x48, 0xe9, 0xe4, 0xf3, 0xd8, 0x01,
+ 0x04, 0x10, 0x29, 0x1c, 0xec, 0xdb, 0x49, 0x0a, 0x05, 0x15, 0x95, 0xd1,
+ 0x15, 0x17, 0x02, 0xbc, 0x92, 0xb8, 0x4d, 0xfc, 0xd2, 0x4c, 0xd1, 0x29,
+ 0xe7, 0xe6, 0xf9, 0x3d, 0xd4, 0xe4, 0xbd, 0xc0, 0xe1, 0xf5, 0x14, 0xca,
+ 0x07, 0xb8, 0xee, 0xdb, 0x26, 0xe6, 0x24, 0x0c, 0xe8, 0xfd, 0x1a, 0x0f,
+ 0xb6, 0xd1, 0x02, 0x2e, 0xb0, 0x2e, 0x28, 0x6e, 0xa1, 0xdd, 0x09, 0x56,
+ 0x02, 0xed, 0x29, 0xd5, 0x23, 0xc4, 0xbb, 0xdb, 0x22, 0x0f, 0xef, 0x3f,
+ 0xe9, 0x34, 0x62, 0xef, 0x04, 0x51, 0xf0, 0x15, 0x33, 0x28, 0xeb, 0x18,
+ 0xaf, 0xe8, 0xbe, 0x0e, 0xf5, 0x2f, 0x15, 0xb6, 0x09, 0x8e, 0x9f, 0x21,
+ 0xa5, 0x33, 0x4b, 0x22, 0x9a, 0x25, 0x26, 0xf8, 0xc6, 0x40, 0x02, 0xde,
+ 0x47, 0x0e, 0x0a, 0x45, 0x15, 0x1f, 0xf0, 0xff, 0xe2, 0xf7, 0xfd, 0xd9,
+ 0xa9, 0xe5, 0xc6, 0x09, 0x08, 0x1b, 0xf2, 0xef, 0xa4, 0xcc, 0x0e, 0xb4,
+ 0xde, 0xf6, 0xf8, 0xf6, 0xf9, 0x4c, 0x17, 0x07, 0xbd, 0x3d, 0x12, 0x02,
+ 0x37, 0x4a, 0x03, 0xd1, 0x02, 0xf3, 0xd8, 0xa2, 0xc9, 0xe2, 0x13, 0x02,
+ 0x27, 0x2b, 0x10, 0x1f, 0x9b, 0x42, 0x11, 0xcb, 0xa1, 0xf5, 0xc7, 0x10,
+ 0x24, 0x3c, 0x04, 0xa7, 0x12, 0xe2, 0x35, 0x28, 0xf5, 0xbb, 0x52, 0xac,
+ 0x12, 0xd6, 0xd7, 0xfe, 0xb2, 0xed, 0xff, 0x1c, 0x08, 0xbe, 0x04, 0x1e,
+ 0xad, 0x68, 0x43, 0xf2, 0xf2, 0xf1, 0xbf, 0xec, 0xe9, 0x07, 0xe4, 0x15,
+ 0xcb, 0xc0, 0x0f, 0xf2, 0x2e, 0xb6, 0x5b, 0x50, 0x0f, 0xff, 0xf8, 0x29,
+ 0x10, 0x49, 0xc7, 0x25, 0xbc, 0xbc, 0x38, 0xf6, 0xb9, 0x10, 0x30, 0xb5,
+ 0x81, 0xeb, 0x09, 0xb7, 0xd2, 0x38, 0x23, 0xda, 0xcf, 0xef, 0xbb, 0x95,
+ 0x04, 0x0c, 0x4e, 0xe2, 0xaa, 0xb0, 0x00, 0x16, 0x18, 0xc3, 0xf6, 0x0c,
+ 0xa1, 0xb0, 0x11, 0xcb, 0x05, 0x5c, 0xfe, 0x18, 0xe6, 0xc6, 0x11, 0xbe,
+ 0x16, 0xcf, 0xd1, 0xd8, 0xcd, 0xfc, 0xf0, 0xba, 0xfd, 0xed, 0xe4, 0x1b,
+ 0xa2, 0xbd, 0xc8, 0xc9, 0xa7, 0xf9, 0xa3, 0xe4, 0xcd, 0xc5, 0xee, 0xee,
+ 0x08, 0x06, 0xbc, 0xbe, 0xbe, 0xdc, 0x2a, 0x2b, 0x08, 0xee, 0x95, 0x33,
+ 0x15, 0x08, 0x05, 0xdd, 0x2d, 0x22, 0xff, 0x03, 0xb5, 0xc8, 0xaa, 0xe5,
+ 0x9c, 0xf5, 0xe2, 0x40, 0x00, 0xbd, 0xeb, 0x14, 0xca, 0x0a, 0xfe, 0x10,
+ 0x02, 0xc2, 0x2e, 0xdd, 0x1c, 0x36, 0xf8, 0x30, 0x25, 0xd2, 0xee, 0xd7,
+ 0xd8, 0xbf, 0x25, 0x60, 0x21, 0xa4, 0xb3, 0xa8, 0x9f, 0xd1, 0x07, 0xd7,
+ 0xba, 0xb7, 0xc6, 0xd3, 0x93, 0x46, 0x3f, 0x29, 0xe6, 0xa7, 0xd1, 0xf7,
+ 0xf1, 0xaf, 0xf8, 0x93, 0x28, 0xbf, 0xb8, 0xb7, 0xd2, 0xfe, 0x3b, 0x04,
+ 0x24, 0x83, 0xf2, 0xbc, 0xb6, 0xf2, 0x10, 0xd2, 0xc0, 0x1a, 0xd1, 0xd5,
+ 0x34, 0x06, 0xd9, 0xdf, 0xc1, 0x2c, 0xd9, 0xd8, 0xe0, 0x08, 0xbc, 0x1f,
+ 0xbf, 0x43, 0xa5, 0xa3, 0x2b, 0xe9, 0x0c, 0x12, 0xf4, 0xc7, 0xd0, 0x81,
+ 0xc0, 0xd1, 0xc6, 0x26, 0xf3, 0xc0, 0xd0, 0xf0, 0x22, 0x61, 0x49, 0xfc,
+ 0xb0, 0xea, 0xf5, 0x24, 0x08, 0xe4, 0xbe, 0x2c, 0xd0, 0x04, 0x38, 0xea,
+ 0x05, 0xfd, 0x48, 0x56, 0xf2, 0x54, 0x04, 0x3b, 0xf4, 0x0b, 0xb7, 0x23,
+ 0x13, 0x33, 0xe2, 0x62, 0x24, 0x1a, 0x47, 0xc3, 0x56, 0x1f, 0x48, 0xf0,
+ 0xe1, 0x6c, 0xf0, 0x04, 0xb5, 0x57, 0xf9, 0xfe, 0x22, 0xd8, 0x23, 0x5c,
+ 0xf6, 0xcf, 0xe8, 0xae, 0xcc, 0x01, 0xaf, 0xdc, 0x18, 0xf4, 0xeb, 0x09,
+ 0xf2, 0x10, 0x08, 0x0b, 0xe7, 0xf9, 0xb4, 0xb9, 0x06, 0xf1, 0xf4, 0xf4,
+ 0x1d, 0x0c, 0xe7, 0xbb, 0x2c, 0x07, 0x05, 0xc0, 0x27, 0x31, 0xd9, 0xa8,
+ 0xf5, 0xfa, 0xf2, 0xd4, 0xfd, 0xe8, 0x93, 0x36, 0x22, 0x10, 0x02, 0x3b,
+ 0x04, 0xe6, 0xbf, 0xfe, 0x12, 0x03, 0xe9, 0xfc, 0x24, 0xde, 0xdc, 0x0a,
+ 0xc1, 0xf2, 0x5c, 0x41, 0x2b, 0x51, 0x07, 0xdd, 0xd4, 0x18, 0xd5, 0xe2,
+ 0x22, 0xf6, 0x07, 0x1a, 0x31, 0x2f, 0x41, 0xab, 0xfd, 0x1b, 0x2d, 0x24,
+ 0xe7, 0x6f, 0xc8, 0x2a, 0x23, 0x46, 0xde, 0x0b, 0xca, 0x42, 0x32, 0xff,
+ 0xb7, 0x87, 0xcd, 0xe0, 0xc9, 0x56, 0xe9, 0x0a, 0xcf, 0xca, 0xf7, 0xe6,
+ 0xab, 0xc9, 0xef, 0x9d, 0xca, 0xdc, 0xd6, 0xfe, 0xf8, 0x4e, 0x92, 0x2f,
+ 0x9d, 0x1a, 0xb7, 0xb2, 0x32, 0xac, 0xf1, 0xcc, 0x22, 0x4e, 0x15, 0xce,
+ 0x0a, 0x22, 0xb9, 0x24, 0x13, 0xa6, 0xb4, 0xbe, 0xff, 0xf9, 0x0a, 0x28,
+ 0xd4, 0x20, 0x1e, 0x2b, 0xd0, 0xcc, 0xc8, 0x30, 0x03, 0xdc, 0x01, 0xad,
+ 0xef, 0xe9, 0xea, 0x33, 0x28, 0xee, 0xe3, 0xfb, 0x2c, 0x2e, 0xbc, 0x3c,
+ 0xbe, 0xc7, 0x15, 0x79, 0xfe, 0xff, 0xf8, 0xf8, 0x68, 0x30, 0x54, 0x06,
+ 0x0e, 0x64, 0xd2, 0xca, 0xf2, 0x49, 0x11, 0xf8, 0xfd, 0x2a, 0x52, 0x29,
+ 0xfc, 0xd6, 0xdc, 0xde, 0xb1, 0xe4, 0x58, 0x35, 0xe3, 0x36, 0x05, 0x1d,
+ 0x35, 0xb5, 0x66, 0x4f, 0xd1, 0x27, 0x06, 0xc5, 0x74, 0x67, 0xde, 0xef,
+ 0xb4, 0x2c, 0x1f, 0xd2, 0x2d, 0x1e, 0x4f, 0x26, 0x3a, 0xbf, 0x1e, 0xc1,
+ 0xc7, 0x1b, 0x5b, 0xb2, 0x2f, 0x25, 0x3c, 0xd6, 0xbb, 0x2c, 0x2c, 0x24,
+ 0xf2, 0xd8, 0xf7, 0xdf, 0xf7, 0x10, 0xdf, 0x3b, 0x00, 0x2f, 0x33, 0x3d,
+ 0xd9, 0x20, 0xf2, 0xe5, 0x13, 0xca, 0x3c, 0xec, 0xf8, 0xdc, 0x03, 0xe2,
+ 0x5f, 0xd8, 0x6d, 0x39, 0x1b, 0xbc, 0x3c, 0xf3, 0xbb, 0x64, 0x19, 0x48,
+ 0x54, 0x22, 0xe0, 0x47, 0x0f, 0x4b, 0xc6, 0xf0, 0x16, 0xf1, 0x21, 0x81,
+ 0x26, 0xc6, 0xea, 0x10, 0x46, 0x69, 0x58, 0x18, 0xe5, 0x1d, 0x3f, 0x68,
+ 0x61, 0x2d, 0x01, 0x46, 0x4d, 0xfd, 0xd6, 0x28, 0x15, 0x1a, 0xb5, 0x50,
+ 0xd6, 0x05, 0xfa, 0x47, 0x25, 0xce, 0x34, 0x53, 0xb5, 0x09, 0x33, 0x22,
+ 0x20, 0x21, 0xff, 0xc6, 0xc7, 0xf0, 0x2e, 0xba, 0x2a, 0x15, 0xdd, 0xbe,
+ 0xd9, 0xd4, 0x01, 0x20, 0xea, 0x5b, 0xa3, 0xfc, 0x3e, 0x00, 0x1e, 0x36,
+ 0x0a, 0xe7, 0xed, 0xb4, 0x1d, 0xbe, 0x49, 0x06, 0x0f, 0xcf, 0xf7, 0xc2,
+ 0xca, 0x2d, 0xf6, 0x1d, 0x3b, 0xd7, 0xff, 0xf4, 0xe1, 0x76, 0x14, 0xd3,
+ 0xf8, 0x50, 0x12, 0x4c, 0x25, 0x08, 0x12, 0xcf, 0xb3, 0xc9, 0x0a, 0x8d,
+ 0xd7, 0xd4, 0x59, 0xd9, 0xf6, 0x56, 0x39, 0x59, 0xbc, 0x16, 0x11, 0x2d,
+ 0x35, 0xf8, 0x71, 0xf9, 0x35, 0xe3, 0x04, 0x46, 0x6b, 0xda, 0xc0, 0x2e,
+ 0xb4, 0xd0, 0xec, 0xfe, 0xfe, 0xf4, 0xe5, 0x65, 0x12, 0x4a, 0x3d, 0x21,
+ 0x22, 0xc7, 0x5d, 0x16, 0xfb, 0xd1, 0x3b, 0x0c, 0xc6, 0x06, 0x4e, 0xeb,
+ 0x44, 0x54, 0x45, 0x1b, 0xd7, 0x09, 0xd7, 0xf6, 0x52, 0x45, 0x0d, 0xb6,
+ 0x1d, 0xb5, 0x4e, 0xd4, 0x1b, 0xc0, 0x03, 0xc2, 0x86, 0x0c, 0xf7, 0x1e,
+ 0xfd, 0xba, 0x36, 0xaa, 0x29, 0xd8, 0xe2, 0xb7, 0x0e, 0xf8, 0xc8, 0xd1,
+ 0x47, 0xf9, 0x0b, 0xf6, 0xe2, 0x6f, 0x22, 0xc5, 0x32, 0xd4, 0xd4, 0xd2,
+ 0xd0, 0x0f, 0xcb, 0x22, 0x20, 0xe8, 0xc1, 0xde, 0x27, 0xf1, 0x01, 0xb4,
+ 0x1d, 0x7f, 0x48, 0xeb, 0x3e, 0xea, 0x08, 0x3d, 0x39, 0x30, 0xe0, 0x1a,
+ 0xc8, 0xe4, 0x12, 0xfb, 0x09, 0x06, 0x1c, 0x02, 0xbb, 0xce, 0x01, 0x2a,
+ 0xf4, 0xbd, 0x05, 0xdf, 0xe1, 0x02, 0x19, 0xa9, 0x23, 0xe9, 0xfb, 0xea,
+ 0xdf, 0xce, 0x45, 0x31, 0x3a, 0x36, 0xfc, 0xde, 0xd8, 0x23, 0x31, 0x14,
+ 0x00, 0x21, 0x16, 0xc1, 0xf9, 0xfe, 0xcd, 0x30, 0xca, 0xbd, 0xca, 0xdf,
+ 0x1e, 0xef, 0xf3, 0xd9, 0x35, 0xd0, 0x20, 0x47, 0x22, 0xf4, 0x2b, 0xb0,
+ 0x44, 0x1d, 0xd2, 0xf4, 0xd6, 0xf1, 0x06, 0xd0, 0xc2, 0xcb, 0x08, 0x3d,
+ 0xb8, 0xed, 0x2d, 0x47, 0x24, 0x22, 0x2b, 0x2b, 0xeb, 0x12, 0x37, 0xe3,
+ 0x35, 0x63, 0x34, 0xd2, 0x2a, 0x15, 0x42, 0x1f, 0xf3, 0x46, 0x4d, 0xe3,
+ 0xfa, 0xce, 0x1a, 0xe1, 0xd8, 0xf8, 0x0b, 0xf4, 0x16, 0x12, 0xd4, 0x22,
+ 0x10, 0xcc, 0xc1, 0xf0, 0x31, 0x01, 0xe1, 0xb7, 0x0d, 0x4a, 0x3b, 0x24,
+ 0xef, 0x28, 0x1c, 0x43, 0x45, 0xd0, 0x5c, 0x29, 0x14, 0xf6, 0x26, 0xe2,
+ 0x33, 0xe8, 0xc7, 0xea, 0xfd, 0x19, 0xcf, 0xda, 0x24, 0xb6, 0xc1, 0xec,
+ 0x15, 0xed, 0x30, 0x99, 0x0e, 0xcf, 0xe6, 0x27, 0xe2, 0xc7, 0x42, 0xbb,
+ 0x4e, 0xf3, 0x40, 0x0d, 0x2b, 0xc4, 0x0b, 0xcd, 0x04, 0xe1, 0xfe, 0xe2,
+ 0xaf, 0xff, 0xdc, 0x54, 0x0b, 0xaf, 0xdd, 0xe2, 0x37, 0x22, 0x4e, 0xb2,
+ 0x36, 0x31, 0x6a, 0xd0, 0x17, 0xf0, 0xfb, 0xda, 0x0b, 0xef, 0x3c, 0x2d,
+ 0xb4, 0x2b, 0x19, 0x48, 0xee, 0xe7, 0x11, 0xfd, 0xe1, 0xff, 0xaf, 0xf6,
+ 0x08, 0x22, 0xfa, 0xfd, 0xf6, 0x45, 0x24, 0xa2, 0xed, 0x4c, 0x0b, 0x09,
+ 0x3d, 0x06, 0x52, 0x41, 0x1b, 0x47, 0x07, 0xe9, 0xce, 0x12, 0x22, 0xdf,
+ 0xe8, 0x25, 0xce, 0xb7, 0xdb, 0xc8, 0xd4, 0x19, 0x12, 0xb6, 0xcd, 0xdc,
+ 0x1f, 0xc0, 0x36, 0xca, 0x18, 0x0b, 0x05, 0xe2, 0x2c, 0xa4, 0x1b, 0xe8,
+ 0x10, 0xe8, 0x24, 0x2b, 0xb4, 0xc7, 0xe5, 0xea, 0xc8, 0xee, 0xe6, 0xd8,
+ 0xb0, 0x3d, 0x05, 0xdd, 0x19, 0x54, 0xfb, 0xf5, 0x2f, 0x1f, 0x13, 0x1a,
+ 0xec, 0xe9, 0xe1, 0xd6, 0x17, 0x39, 0xbe, 0xf0, 0x4a, 0xe7, 0x0c, 0xf7,
+ 0x19, 0x4e, 0x44, 0x29, 0x1e, 0xab, 0x2d, 0x0d, 0x1e, 0x45, 0x2b, 0xe4,
+ 0x05, 0x2e, 0xe7, 0x3e, 0x32, 0x22, 0x17, 0x08, 0xf4, 0x3f, 0xe4, 0x20,
+ 0x2b, 0xbd, 0xd0, 0xf0, 0x3e, 0x2a, 0x1f, 0xe8, 0xf0, 0x37, 0x01, 0xbc,
+ 0x30, 0x09, 0x31, 0xee, 0x15, 0x14, 0x09, 0x1c, 0xaa, 0x1f, 0xd3, 0xce,
+ 0xe7, 0xd3, 0x1e, 0xf5, 0xc7, 0xdb, 0x09, 0x14, 0x03, 0x42, 0xa3, 0xe7,
+ 0x0d, 0x14, 0x14, 0xe9, 0xf6, 0xf5, 0x3d, 0xd6, 0x3a, 0xa3, 0x3e, 0xbb,
+ 0xf1, 0xe4, 0xf3, 0x17, 0xf9, 0xf1, 0x07, 0x65, 0xe8, 0x38, 0x4c, 0x3b,
+ 0xe1, 0xc1, 0x04, 0x1e, 0x1a, 0x34, 0xbb, 0xe8, 0x1d, 0xf4, 0xe6, 0x65,
+ 0x1e, 0x41, 0xe5, 0x13, 0xf6, 0xdd, 0x1b, 0x19, 0x50, 0x51, 0xe2, 0x00,
+ 0x06, 0xe9, 0x31, 0x3a, 0xf9, 0xba, 0x45, 0x55, 0x2d, 0x1d, 0x07, 0x15,
+ 0xfd, 0x0f, 0xfb, 0x0a, 0xf0, 0x3f, 0x2a, 0x2e, 0x19, 0xd6, 0xe3, 0xe9,
+ 0x56, 0xc4, 0xf3, 0x3f, 0x24, 0xdf, 0xf1, 0x1a, 0xd7, 0x2e, 0x3b, 0xcf,
+ 0x18, 0xc2, 0xdb, 0x40, 0x11, 0x3b, 0xbf, 0xc9, 0xad, 0x4b, 0xb0, 0x30,
+ 0xb4, 0x11, 0x39, 0x07, 0x16, 0xcb, 0x37, 0xbf, 0xf9, 0x18, 0x02, 0xbe,
+ 0x29, 0x34, 0xfd, 0x0d, 0x16, 0x19, 0xed, 0x11, 0x07, 0xd4, 0x05, 0xde,
+ 0xe0, 0xe9, 0x87, 0x00, 0xad, 0x35, 0x25, 0xfd, 0x4f, 0x31, 0xe9, 0xfc,
+ 0x24, 0x4c, 0xec, 0x21, 0x23, 0xb7, 0xc3, 0xd3, 0x17, 0x3b, 0x3f, 0x1c,
+ 0xa2, 0xc5, 0x50, 0x2c, 0xfc, 0xb7, 0x2b, 0xed, 0xcd, 0x40, 0xf1, 0xff,
+ 0xcc, 0x16, 0x20, 0x35, 0x27, 0x28, 0x1c, 0x27, 0x39, 0x1f, 0xee, 0xaf,
+ 0xf8, 0xf4, 0xeb, 0x3c, 0x02, 0x19, 0x05, 0x00, 0x81, 0x17, 0x34, 0xe1,
+ 0x11, 0xb9, 0x00, 0x35, 0xcc, 0x26, 0x9c, 0x0c, 0xde, 0x44, 0xaf, 0xcb,
+ 0xba, 0x24, 0xfd, 0x10, 0xc1, 0x9d, 0x35, 0xea, 0xeb, 0xdc, 0x0a, 0xec,
+ 0x1e, 0xc6, 0x03, 0x06, 0x21, 0x45, 0xf1, 0x16, 0x0a, 0xbb, 0x08, 0x2a,
+ 0x11, 0xde, 0x39, 0xf2, 0x12, 0x06, 0x43, 0xb6, 0x0d, 0xc0, 0xd6, 0xe2,
+ 0xf7, 0x1a, 0x2c, 0x0f, 0xec, 0xf5, 0xcd, 0x89, 0x2d, 0xa7, 0x20, 0x3c,
+ 0x27, 0xc9, 0xb4, 0x16, 0x56, 0x25, 0x3e, 0xb9, 0x02, 0xdb, 0xf7, 0x42,
+ 0x32, 0x07, 0xf4, 0xde, 0x48, 0x18, 0x3d, 0xea, 0x97, 0x1e, 0xe5, 0x9b,
+ 0xef, 0xea, 0xae, 0x0b, 0x50, 0xfb, 0x36, 0x1c, 0x21, 0xda, 0xfc, 0x32,
+ 0x15, 0x34, 0x5f, 0xff, 0xfb, 0x4e, 0x0e, 0xe9, 0x13, 0xe3, 0x54, 0xaf,
+ 0x56, 0xe4, 0x12, 0x28, 0x0b, 0xf2, 0xae, 0xde, 0x0d, 0xea, 0xe6, 0xdf,
+ 0xd5, 0xf7, 0x00, 0x50, 0xec, 0x0f, 0xc6, 0xdb, 0x45, 0xdd, 0x73, 0x4e,
+ 0x23, 0x1d, 0xe6, 0x29, 0x14, 0x11, 0x0f, 0xb6, 0xfd, 0xd4, 0x2d, 0x22,
+ 0xad, 0xe1, 0x25, 0x54, 0xf9, 0x34, 0xe3, 0x9d, 0xda, 0xed, 0xfa, 0x19,
+ 0x19, 0x15, 0x18, 0x1b, 0x06, 0x52, 0x4a, 0xc2, 0x59, 0xcb, 0xfd, 0x22,
+ 0xba, 0xe5, 0x03, 0xca, 0x3e, 0x23, 0xdc, 0x13, 0xb9, 0xc8, 0xdb, 0xbc,
+ 0x3a, 0x1c, 0xdd, 0xd0, 0x72, 0xdb, 0x0b, 0xce, 0x04, 0xf5, 0x19, 0x47,
+ 0x17, 0x45, 0x67, 0xf6, 0xf8, 0x08, 0x2c, 0x66, 0x62, 0xc5, 0x26, 0xe2,
+ 0x24, 0x42, 0x17, 0x50, 0x0a, 0xff, 0xe2, 0x5f, 0x26, 0x19, 0x20, 0x0c,
+ 0x2c, 0x2c, 0x16, 0x04, 0xc2, 0x1c, 0x13, 0x09, 0x45, 0xba, 0x22, 0x1f,
+ 0xb0, 0x22, 0xc9, 0x59, 0xb4, 0x1f, 0x38, 0xb9, 0x3b, 0xd3, 0xf8, 0x3a,
+ 0xe4, 0xf4, 0xdc, 0x27, 0x17, 0x11, 0xe2, 0xf4, 0x16, 0xd2, 0x41, 0x0a,
+ 0xdd, 0x27, 0x04, 0x19, 0x3b, 0x04, 0x18, 0x0e, 0xe5, 0xe0, 0x5b, 0x19,
+ 0xbe, 0x06, 0x21, 0xc7, 0x12, 0x51, 0xe8, 0xef, 0xb8, 0x06, 0x1b, 0x13,
+ 0x1f, 0xba, 0xd6, 0x43, 0xf1, 0x17, 0xfa, 0xd7, 0xe2, 0xd2, 0xf6, 0xeb,
+ 0xe5, 0x03, 0x3d, 0xe6, 0xf5, 0x1d, 0xfb, 0xfc, 0x14, 0x13, 0x7f, 0x1f,
+ 0x61, 0x66, 0xb9, 0xf0, 0x31, 0xd1, 0x0f, 0x4e, 0x2e, 0x18, 0x04, 0x14,
+ 0x1a, 0xcd, 0x05, 0xe1, 0xd0, 0x54, 0x14, 0xdf, 0x34, 0x41, 0x48, 0x4d,
+ 0x2e, 0xe9, 0xd6, 0x3c, 0xef, 0x50, 0x3d, 0x35, 0x46, 0xfd, 0xf3, 0x6a,
+ 0x1e, 0x34, 0xad, 0xf0, 0x32, 0x18, 0xd8, 0x14, 0x3c, 0xc7, 0x1f, 0xf1,
+ 0x1e, 0xe6, 0x5f, 0x1d, 0x29, 0xc1, 0x3c, 0xe4, 0x71, 0x35, 0x28, 0xf4,
+ 0xa7, 0x28, 0x5a, 0xe5, 0x0e, 0x1f, 0xb9, 0x3c, 0x20, 0xf5, 0xf9, 0xea,
+ 0xaf, 0x30, 0x10, 0x18, 0xac, 0xf7, 0xef, 0xd9, 0x26, 0xbe, 0x33, 0x1a,
+ 0xdb, 0x93, 0xb4, 0xe7, 0xd5, 0x28, 0xb5, 0x4a, 0xfc, 0x22, 0xd5, 0xff,
+ 0x3f, 0xf5, 0xb0, 0x34, 0xe4, 0x8b, 0xc8, 0xe9, 0xbf, 0xa7, 0x0b, 0x46,
+ 0x2f, 0x81, 0x0f, 0xd4, 0x92, 0x4f, 0x07, 0xf3, 0x4a, 0x41, 0x47, 0xdb,
+ 0x36, 0xd5, 0x9b, 0x00, 0xd4, 0x63, 0xcd, 0x1f, 0x0a, 0xdd, 0x3a, 0x4f,
+ 0x0a, 0xc7, 0xc9, 0x50, 0x75, 0xed, 0x8c, 0x11, 0xfd, 0xfe, 0x17, 0x0f,
+ 0xb6, 0xcc, 0x39, 0xd4, 0x1c, 0xdd, 0xec, 0xc2, 0x57, 0x18, 0x24, 0xf6,
+ 0xeb, 0x20, 0x06, 0xfe, 0x11, 0xea, 0xdb, 0xe2, 0x41, 0xc9, 0x0b, 0xdf,
+ 0x2b, 0x3e, 0x3f, 0x5c, 0xfb, 0xde, 0xc4, 0x0f, 0x15, 0xc1, 0xf8, 0xd2,
+ 0xe0, 0xa9, 0xe7, 0xcc, 0xee, 0xe1, 0xb4, 0x45, 0xc6, 0xb4, 0x22, 0x09,
+ 0x10, 0xc5, 0xea, 0x06, 0xd2, 0x82, 0x17, 0xe2, 0xb1, 0xef, 0xf1, 0xca,
+ 0x17, 0x8f, 0x1c, 0x15, 0x09, 0x52, 0x22, 0x05, 0xe2, 0xe4, 0x51, 0xdf,
+ 0x0b, 0x0a, 0xb7, 0xdd, 0xce, 0x4f, 0x40, 0xea, 0x44, 0xb7, 0x16, 0xe6,
+ 0x26, 0xf4, 0x26, 0x2c, 0x15, 0x26, 0xa1, 0x17, 0xeb, 0xf0, 0x34, 0xaf,
+ 0x36, 0x3d, 0x60, 0xec, 0x10, 0x08, 0x20, 0x10, 0x2e, 0x39, 0xee, 0x1b,
+ 0x08, 0xbc, 0x48, 0xc6, 0xf5, 0x31, 0x98, 0x08, 0xe6, 0xd2, 0xda, 0x3f,
+ 0xbc, 0x0f, 0x12, 0x64, 0x13, 0x0c, 0xc5, 0xf4, 0xd6, 0xdf, 0xb6, 0xbd,
+ 0x3e, 0xc9, 0xa6, 0xd7, 0x2c, 0x0e, 0x21, 0x27, 0x1d, 0xb8, 0x2f, 0xa9,
+ 0x2f, 0x04, 0xad, 0xaf, 0xa8, 0xbf, 0x48, 0xdb, 0x10, 0xc6, 0x1e, 0x1a,
+ 0x15, 0xcb, 0x01, 0xdd, 0x18, 0xfd, 0xde, 0xdc, 0xf4, 0xf9, 0x36, 0x23,
+ 0x99, 0xe2, 0x06, 0x1a, 0xeb, 0xef, 0x3a, 0x02, 0xff, 0xba, 0x2a, 0xfb,
+ 0x19, 0xf9, 0xd7, 0x9d, 0xe1, 0x0e, 0x0d, 0xc3, 0x16, 0x45, 0xce, 0x0a,
+ 0x3e, 0xeb, 0x4e, 0xc6, 0xc0, 0xe0, 0x35, 0x44, 0x12, 0xb4, 0xfe, 0x0b,
+ 0xc7, 0x12, 0x1d, 0xf4, 0xdf, 0x3f, 0xe8, 0x27, 0x05, 0x11, 0x40, 0xd2,
+ 0xea, 0xc7, 0xff, 0x46, 0x26, 0x25, 0xfa, 0x29, 0x36, 0x12, 0xc0, 0xd3,
+ 0x15, 0x3e, 0x67, 0x01, 0xe3, 0x12, 0x1e, 0x16, 0x67, 0xbe, 0x49, 0x1c,
+ 0x1e, 0x4e, 0xf3, 0x22, 0xef, 0x54, 0xa8, 0x46, 0x4d, 0xf1, 0xc3, 0x43,
+ 0xef, 0xed, 0x08, 0xeb, 0x07, 0xd1, 0xe1, 0x10, 0xd3, 0xd8, 0xca, 0xeb,
+ 0x8a, 0xe3, 0xde, 0x24, 0x41, 0x2a, 0x02, 0x14, 0xfa, 0xa0, 0x06, 0xea,
+ 0xc4, 0xd7, 0xfb, 0x11, 0xea, 0xd0, 0x06, 0xab, 0xf9, 0x23, 0x22, 0x2e,
+ 0xfa, 0xe6, 0x57, 0xf6, 0xd8, 0xcc, 0xf8, 0x15, 0x15, 0x1a, 0x49, 0xfb,
+ 0xc0, 0xc5, 0xc1, 0x1c, 0x0a, 0x57, 0x94, 0x3f, 0x29, 0xd7, 0xfc, 0x32,
+ 0xf2, 0xed, 0xde, 0x42, 0x15, 0x09, 0x03, 0x49, 0xd8, 0x22, 0x07, 0xac,
+ 0x13, 0x3a, 0x28, 0xd2, 0xe9, 0xbc, 0xfe, 0x05, 0x7f, 0xc0, 0x26, 0xed,
+ 0xdf, 0xee, 0x12, 0x40, 0xfd, 0x36, 0xbe, 0x05, 0x41, 0x36, 0x2e, 0x34,
+ 0x35, 0xbd, 0xe4, 0xb5, 0x34, 0x01, 0x20, 0x11, 0x38, 0x10, 0xfd, 0x2e,
+ 0xed, 0xe0, 0xeb, 0xc6, 0x19, 0xed, 0x21, 0x14, 0x00, 0xc3, 0x41, 0x0a,
+ 0xfa, 0x29, 0xc4, 0x08, 0x4b, 0x03, 0xfc, 0xac, 0x20, 0x46, 0x13, 0xbf,
+ 0x13, 0xe7, 0x0d, 0xcf, 0x01, 0x0e, 0xf8, 0x63, 0xe4, 0xf0, 0x52, 0x33,
+ 0x0b, 0xd4, 0x34, 0xd4, 0xeb, 0x03, 0xd5, 0xf1, 0x54, 0x0f, 0x27, 0x35,
+ 0x03, 0x1d, 0x14, 0x31, 0xdb, 0xe1, 0x21, 0xfe, 0x55, 0xce, 0x2a, 0xa3,
+ 0xc0, 0x37, 0x49, 0x00, 0xb3, 0xf0, 0xd3, 0xea, 0x33, 0xff, 0x1d, 0x12,
+ 0xe2, 0x23, 0x4e, 0x2c, 0xfb, 0x17, 0xcf, 0x49, 0x62, 0xc5, 0x2b, 0x1f,
+ 0xb7, 0xce, 0x04, 0x0f, 0x37, 0xd6, 0xd7, 0x1e, 0x00, 0x04, 0xd7, 0x31,
+ 0xfb, 0xf8, 0xc6, 0xd0, 0xfa, 0x8e, 0x0c, 0xfe, 0xe3, 0xea, 0x23, 0xb5,
+ 0xd4, 0xe9, 0xde, 0xae, 0xea, 0xc1, 0x30, 0x46, 0x2a, 0xd2, 0xe9, 0xeb,
+ 0xac, 0x39, 0xde, 0xea, 0xf2, 0x47, 0xb6, 0x1e, 0x12, 0xdd, 0xe4, 0xc8,
+ 0x33, 0xca, 0xb2, 0xd9, 0x00, 0xfa, 0x1f, 0xee, 0x00, 0xc3, 0x27, 0xf5,
+ 0x12, 0xbc, 0xfb, 0x28, 0xfb, 0xef, 0xd7, 0xd9, 0xbe, 0xf1, 0xb1, 0xc9,
+ 0x2b, 0xe3, 0xc4, 0xc5, 0xa4, 0x64, 0x3e, 0x0e, 0xce, 0x0a, 0xcd, 0x12,
+ 0xed, 0xd3, 0xcb, 0xd1, 0x02, 0xb6, 0x55, 0x1a, 0xe9, 0x33, 0x17, 0xa6,
+ 0x2e, 0x23, 0x10, 0x18, 0x3c, 0xfa, 0x1e, 0xf0, 0xd6, 0x2d, 0xf0, 0xb3,
+ 0xb9, 0xd1, 0x19, 0x43, 0x31, 0xcd, 0xc8, 0x96, 0x10, 0xda, 0x38, 0xcf,
+ 0xfa, 0xb5, 0x36, 0xd7, 0xa5, 0x0e, 0x0d, 0x3a, 0xbe, 0x08, 0xdc, 0xfa,
+ 0xb9, 0x07, 0xf1, 0xda, 0xbc, 0x0d, 0xe5, 0x47, 0xc7, 0x01, 0xf0, 0x33,
+ 0xc6, 0x87, 0xdf, 0xf5, 0x38, 0xea, 0xca, 0xc9, 0xd9, 0x12, 0x41, 0xdd,
+ 0x35, 0xb6, 0xd7, 0x61, 0x23, 0x24, 0x20, 0x13, 0x19, 0x14, 0xf5, 0xad,
+ 0xc5, 0xe5, 0x32, 0xf3, 0xdd, 0xff, 0x6d, 0x0e, 0xbd, 0xf2, 0x25, 0xe8,
+ 0x02, 0xb9, 0x3c, 0x2e, 0x16, 0x0d, 0x62, 0xa0, 0x28, 0x24, 0x36, 0xcc,
+ 0x1e, 0xf6, 0xed, 0xe0, 0xc1, 0x02, 0xf2, 0x23, 0xd7, 0x17, 0x39, 0x3e,
+ 0x05, 0xf7, 0xed, 0x24, 0xf1, 0x81, 0xcb, 0xf8, 0xea, 0x1e, 0xb8, 0xc5,
+ 0x0f, 0xe1, 0x59, 0x2e, 0x8c, 0xe0, 0x40, 0x4c, 0x44, 0xba, 0xb2, 0x53,
+ 0xba, 0x29, 0x41, 0x05, 0xb2, 0x1e, 0xed, 0x00, 0xd9, 0x40, 0xe3, 0x00,
+ 0xd2, 0xa1, 0x31, 0xb4, 0x47, 0x49, 0xfb, 0xbf, 0xee, 0xdb, 0xfb, 0x0e,
+ 0xee, 0xfa, 0xf9, 0x54, 0x32, 0x63, 0xf4, 0xd5, 0xce, 0xbb, 0xf6, 0xd9,
+ 0xbc, 0x23, 0xf0, 0xab, 0x09, 0x75, 0x56, 0x27, 0xc7, 0xdd, 0xb5, 0xe0,
+ 0xf6, 0x1a, 0xf6, 0xf6, 0x15, 0xb6, 0xed, 0xa8, 0xac, 0xcc, 0x46, 0xcc,
+ 0x34, 0x18, 0x31, 0xea, 0xf9, 0x24, 0x1c, 0xd7, 0x07, 0x08, 0xe5, 0x1a,
+ 0x27, 0xfe, 0xeb, 0x3c, 0x03, 0xd0, 0xe1, 0x05, 0x40, 0x1f, 0x10, 0xdc,
+ 0x2d, 0xff, 0xea, 0xf5, 0xcb, 0x04, 0xfc, 0x1c, 0x1f, 0x1b, 0x21, 0x21,
+ 0xd1, 0xd4, 0x0e, 0x01, 0xdf, 0x2b, 0x34, 0xeb, 0x14, 0x31, 0x22, 0xfb,
+ 0x0c, 0xfe, 0xc8, 0xf5, 0x44, 0x13, 0xe6, 0x1e, 0x39, 0xe8, 0xe8, 0x10,
+ 0x18, 0x05, 0x30, 0x05, 0x1a, 0xc7, 0x13, 0xff, 0xbf, 0xed, 0x26, 0x28,
+ 0x0b, 0xfc, 0x31, 0xf5, 0xec, 0x1b, 0xfd, 0xc8, 0xeb, 0x34, 0x25, 0xed,
+ 0xeb, 0x1f, 0xac, 0x03, 0x11, 0xe9, 0xb6, 0xe3, 0x16, 0xe6, 0x24, 0xa4,
+ 0x2e, 0xd0, 0x1d, 0x30, 0x06, 0x02, 0x23, 0xc8, 0xbe, 0x0b, 0xf8, 0xf0,
+ 0x24, 0x12, 0xf7, 0xdf, 0x11, 0x17, 0x03, 0x23, 0x50, 0x07, 0x13, 0xf2,
+ 0xd2, 0x33, 0x3f, 0x0f, 0xe6, 0x36, 0xea, 0x10, 0x0c, 0xde, 0x35, 0x22,
+ 0xe0, 0x0c, 0x42, 0x15, 0xe4, 0xff, 0x2c, 0xe1, 0xd6, 0xd0, 0x2f, 0x03,
+ 0x00, 0xee, 0x13, 0x1d, 0x3d, 0x48, 0xfc, 0x1d, 0x08, 0x04, 0xe9, 0x07,
+ 0x2c, 0x15, 0x1b, 0xfd, 0x2a, 0xf9, 0xf4, 0xd3, 0xed, 0xe1, 0x48, 0xd9,
+ 0xcb, 0xfc, 0xe4, 0x20, 0xaf, 0xe2, 0x12, 0xe8, 0xeb, 0xd3, 0xfe, 0x31,
+ 0xef, 0xfc, 0xd7, 0x2d, 0xe5, 0xef, 0xd4, 0x0a, 0xf2, 0xf3, 0xe2, 0x81,
+ 0x2a, 0x13, 0x18, 0x29, 0xe8, 0xe9, 0xe1, 0x0a, 0xd0, 0x22, 0x0d, 0x05,
+ 0x19, 0x0d, 0xf6, 0x35, 0x13, 0xb5, 0xde, 0xe2, 0x1c, 0x26, 0xf3, 0xff,
+ 0xed, 0xfc, 0x1d, 0x0f, 0xe0, 0x09, 0x2b, 0xc1, 0xeb, 0x0a, 0xed, 0x09,
+ 0xcf, 0x1d, 0x23, 0x0f, 0xf3, 0x18, 0xf2, 0xd5, 0xd1, 0xbf, 0xd8, 0xf9,
+ 0x1c, 0x17, 0xda, 0xfb, 0x2a, 0xf4, 0xcf, 0xee, 0xf6, 0xea, 0xe7, 0xc4,
+ 0xf6, 0xfb, 0xe9, 0xb0, 0xed, 0x18, 0xfc, 0x06, 0xa2, 0xc9, 0xfa, 0xef,
+ 0xd9, 0xe6, 0xd4, 0xeb, 0xcc, 0xef, 0x08, 0xbf, 0x33, 0x08, 0xe3, 0xe9,
+ 0x3d, 0x07, 0xc2, 0x03, 0x22, 0xef, 0xbe, 0xce, 0xe8, 0x22, 0xe8, 0xdd,
+ 0xc3, 0x05, 0x2d, 0xf7, 0x47, 0xe8, 0x0a, 0xe8, 0xc7, 0x38, 0xf2, 0xb4,
+ 0xdc, 0x3e, 0x15, 0xdd, 0x64, 0x35, 0xd6, 0x2f, 0x21, 0xcd, 0xdc, 0x23,
+ 0xf7, 0x21, 0xc3, 0x4e, 0x40, 0x45, 0xdd, 0x49, 0x24, 0xd8, 0xe5, 0x10,
+ 0x0a, 0x22, 0x13, 0xd6, 0x19, 0x0a, 0xde, 0xf8, 0x00, 0xed, 0xee, 0xdb,
+ 0x45, 0x1c, 0x1e, 0xfc, 0x08, 0xf0, 0x04, 0x1b, 0x3a, 0x11, 0x39, 0xce,
+ 0x23, 0x15, 0x35, 0x28, 0xe9, 0x00, 0xf5, 0x0b, 0xf4, 0x12, 0x11, 0xfc,
+ 0xeb, 0xc8, 0x86, 0x99, 0xd2, 0x16, 0xe0, 0x04, 0xee, 0x36, 0x19, 0x4b,
+ 0x31, 0xe5, 0x1e, 0xde, 0xde, 0xe9, 0xc2, 0x0b, 0x0b, 0x24, 0xe9, 0xf7,
+ 0x15, 0x13, 0x1d, 0x51, 0x3f, 0x2f, 0x0e, 0x13, 0x28, 0x4c, 0xe7, 0xd5,
+ 0xe9, 0x59, 0x1c, 0x10, 0x7f, 0x4b, 0x01, 0x0a, 0x19, 0xfd, 0x2f, 0xd9,
+ 0x5c, 0x47, 0xec, 0x7f, 0x5b, 0x40, 0x08, 0x2a, 0xc1, 0xc3, 0x26, 0x02,
+ 0x21, 0x25, 0x14, 0xda, 0xef, 0x3e, 0xe7, 0xc4, 0xd3, 0x2a, 0xb5, 0x0c,
+ 0xed, 0x26, 0xc9, 0xf6, 0xe4, 0xe5, 0xc1, 0x20, 0x0c, 0x0f, 0x0d, 0xc5,
+ 0x38, 0xd6, 0xed, 0xcd, 0xe0, 0x3d, 0xe9, 0xff, 0xf4, 0xd9, 0x35, 0x3f,
+ 0x11, 0x18, 0x9d, 0xa3, 0x22, 0x0c, 0x10, 0x13, 0xc8, 0xce, 0xfd, 0xf8,
+ 0x09, 0x09, 0xf4, 0xec, 0xdc, 0x20, 0x2b, 0xd6, 0x04, 0x12, 0xc5, 0xf9,
+ 0xbc, 0xe6, 0x45, 0x14, 0x25, 0xe1, 0x30, 0x3a, 0xe7, 0xfe, 0xb4, 0xf8,
+ 0x1b, 0x2c, 0xee, 0xdc, 0x56, 0xfa, 0xf5, 0x41, 0xfe, 0xff, 0xde, 0x27,
+ 0x23, 0x34, 0x00, 0x51, 0x42, 0x31, 0x32, 0x14, 0xd7, 0x39, 0x19, 0x60,
+ 0xc1, 0xe1, 0xe5, 0xdb, 0xe2, 0x28, 0xde, 0xc5, 0xdd, 0xfa, 0xce, 0x0e,
+ 0x4f, 0xde, 0x06, 0x55, 0xc4, 0x2f, 0x1e, 0xec, 0xe2, 0x20, 0x21, 0x27,
+ 0x58, 0xe3, 0x1f, 0xd1, 0xd4, 0xe1, 0x02, 0x32, 0x0f, 0xd7, 0x23, 0x00,
+ 0x27, 0x34, 0xb8, 0x83, 0x0d, 0x06, 0x00, 0xe0, 0xd0, 0xff, 0x15, 0xfa,
+ 0xcf, 0x06, 0x0b, 0xee, 0x26, 0x24, 0x08, 0xf1, 0xd5, 0xc6, 0xf3, 0x03,
+ 0x2e, 0xd4, 0xe0, 0xe7, 0xc6, 0x1c, 0xc2, 0x1e, 0xee, 0xb9, 0x55, 0x6e,
+ 0xe7, 0xd0, 0xb7, 0x0f, 0x17, 0x5c, 0xdd, 0xeb, 0x2b, 0xeb, 0xbd, 0x17,
+ 0x1b, 0x2c, 0xf4, 0xfe, 0x20, 0xe4, 0xe8, 0x57, 0x47, 0x24, 0x38, 0x4a,
+ 0xc8, 0x3f, 0x41, 0x05, 0x1e, 0x06, 0x30, 0x7f, 0xee, 0xc6, 0xc1, 0x35,
+ 0xfb, 0x0f, 0xea, 0x52, 0x2b, 0xfb, 0xda, 0xe4, 0x3b, 0x09, 0x31, 0x4b,
+ 0x47, 0xe4, 0xca, 0xd1, 0xe9, 0x48, 0x05, 0xf5, 0x28, 0xfc, 0x0a, 0xf5,
+ 0x09, 0xdc, 0xbf, 0x25, 0x3f, 0x31, 0xc2, 0x1b, 0x0e, 0x09, 0xe5, 0x18,
+ 0x00, 0x1c, 0x1f, 0xbc, 0x71, 0x0d, 0xfe, 0x2b, 0xdb, 0xef, 0xf4, 0x1e,
+ 0x19, 0x03, 0x28, 0x33, 0x04, 0x1e, 0xed, 0x51, 0xf7, 0xd6, 0xfd, 0x37,
+ 0x56, 0xea, 0xcf, 0x3d, 0xb4, 0x3d, 0x31, 0xd0, 0xe4, 0xf1, 0xc4, 0x31,
+ 0xbe, 0x38, 0xda, 0x11, 0xd4, 0xca, 0x06, 0xf6, 0x0b, 0x00, 0x54, 0x04,
+ 0xcf, 0xfa, 0x2e, 0x18, 0x2c, 0x0c, 0xf2, 0x31, 0x36, 0xf8, 0xda, 0xe4,
+ 0x4c, 0xfa, 0x22, 0x4e, 0xb9, 0x07, 0xf5, 0xd0, 0x27, 0x26, 0xf4, 0x01,
+ 0xea, 0xce, 0xd9, 0xd3, 0x01, 0x63, 0xec, 0xf2, 0x23, 0x19, 0xac, 0x6a,
+ 0xe0, 0x2a, 0xd2, 0xf4, 0x06, 0x3f, 0x31, 0xb8, 0x26, 0x41, 0xdd, 0x0a,
+ 0x09, 0xe5, 0x1c, 0xe0, 0x27, 0x03, 0x23, 0x36, 0xbf, 0x47, 0xef, 0x1c,
+ 0xf4, 0x26, 0x2d, 0xdc, 0x10, 0xc0, 0x0d, 0x18, 0x14, 0x17, 0x49, 0x2b,
+ 0xe2, 0x0e, 0xcd, 0x20, 0xc5, 0x1e, 0xee, 0xdd, 0x0f, 0xfd, 0x2d, 0x34,
+ 0x0d, 0x7f, 0xc3, 0x71, 0xd7, 0xde, 0xf5, 0x4d, 0xc5, 0x14, 0xe5, 0x38,
+ 0xef, 0xef, 0x32, 0xdb, 0xc2, 0xc6, 0x17, 0x1a, 0x21, 0xe1, 0x10, 0xe6,
+ 0xdb, 0xf2, 0xe8, 0xfe, 0xfc, 0x30, 0x16, 0x01, 0x0d, 0x61, 0x03, 0x07,
+ 0x1e, 0x4a, 0x10, 0x33, 0xed, 0x67, 0xd4, 0xb7, 0xe8, 0x28, 0xff, 0x47,
+ 0x0b, 0x30, 0x4c, 0x12, 0x64, 0xd9, 0xd0, 0x13, 0xd2, 0x3d, 0x4f, 0x0c,
+ 0x25, 0xd6, 0x1d, 0xe8, 0x55, 0x37, 0x3f, 0x22, 0xbd, 0x13, 0xf4, 0x3d,
+ 0xf4, 0x0e, 0xf3, 0xe4, 0xe3, 0xdd, 0x13, 0xcd, 0x0a, 0x32, 0xce, 0x9c,
+ 0xf8, 0xed, 0x35, 0xd7, 0xb8, 0xf3, 0x26, 0x0d, 0x22, 0xc2, 0x3a, 0x56,
+ 0xbf, 0x87, 0x05, 0xab, 0x2d, 0xd5, 0xf2, 0xfa, 0xcc, 0x61, 0x3c, 0xcf,
+ 0xa4, 0xe5, 0xdd, 0x13, 0xd5, 0x5b, 0xe4, 0xb5, 0x04, 0x9f, 0xad, 0x34,
+ 0xff, 0xee, 0x0e, 0xfd, 0x27, 0x3f, 0x0a, 0x7b, 0xc8, 0xec, 0xfd, 0xb2,
+ 0xe8, 0x0b, 0xcb, 0xec, 0xc7, 0x9e, 0xec, 0xf3, 0xb9, 0xff, 0x0d, 0xf2,
+ 0x30, 0x2b, 0xc2, 0xdf, 0x41, 0xf5, 0x10, 0xe3, 0xb3, 0x9d, 0xff, 0xf2,
+ 0x3e, 0xf2, 0x49, 0x26, 0xe0, 0xff, 0xc6, 0x0b, 0xe6, 0xfe, 0xfa, 0xb7,
+ 0xfe, 0xd1, 0x1c, 0x0b, 0x3e, 0xf7, 0x18, 0xf1, 0x3c, 0x41, 0xec, 0xa7,
+ 0xfc, 0xd8, 0x3d, 0xdf, 0xba, 0x16, 0xf1, 0xe9, 0xdd, 0x99, 0x61, 0x15,
+ 0xe0, 0xd1, 0x1f, 0xa2, 0xd4, 0x19, 0x0a, 0x2a, 0x4a, 0x02, 0xf1, 0xd4,
+ 0x16, 0xc2, 0x2c, 0xcb, 0x21, 0x30, 0xce, 0xa0, 0x35, 0xdc, 0xad, 0x34,
+ 0xf5, 0x36, 0x0c, 0xa9, 0x21, 0xea, 0x36, 0x61, 0x2f, 0x23, 0xe6, 0xea,
+ 0xd5, 0x1b, 0xc7, 0xc0, 0x2e, 0xa8, 0x01, 0x09, 0xfb, 0xff, 0xe0, 0xef,
+ 0x2a, 0x51, 0xb1, 0x57, 0x06, 0xee, 0xac, 0x44, 0xcd, 0xc6, 0x03, 0xd3,
+ 0xe1, 0xc2, 0x12, 0x10, 0x00, 0x81, 0xac, 0xc5, 0x06, 0x0e, 0xb5, 0xa9,
+ 0xe2, 0xf8, 0x63, 0xf4, 0x19, 0x4a, 0x5b, 0xf5, 0x09, 0x3b, 0x0c, 0x1e,
+ 0x0a, 0xd9, 0x4b, 0x19, 0xc1, 0xc8, 0xd1, 0x42, 0x2d, 0xbe, 0xec, 0xed,
+ 0xee, 0xe4, 0xc2, 0xa7, 0x26, 0x2b, 0xb8, 0xe9, 0x1e, 0x36, 0x0c, 0xab,
+ 0x18, 0x1f, 0x18, 0x3b, 0xc9, 0x3b, 0x29, 0xa4, 0xf9, 0xaf, 0xc4, 0x3d,
+ 0xd9, 0x02, 0x0a, 0x0d, 0x37, 0xda, 0x10, 0x74, 0x45, 0x9f, 0xb7, 0x27,
+ 0x4d, 0x0e, 0xe0, 0xc2, 0xca, 0xcf, 0xe8, 0x9e, 0xea, 0xf2, 0xdb, 0xfd,
+ 0xf8, 0xde, 0xf4, 0xeb, 0x50, 0x28, 0xe8, 0x33, 0xe4, 0x11, 0xcf, 0xd4,
+ 0xdd, 0xac, 0x39, 0x19, 0xe3, 0xc5, 0xac, 0xb0, 0xfb, 0xbe, 0x0b, 0xba,
+ 0x33, 0xee, 0x10, 0xee, 0x03, 0x54, 0x23, 0x04, 0x19, 0x0a, 0x1c, 0x37,
+ 0xf9, 0x81, 0x16, 0x11, 0xe7, 0xd0, 0x9d, 0x19, 0x34, 0xaa, 0x10, 0xeb,
+ 0xb5, 0xd1, 0x49, 0xad, 0x08, 0xc5, 0x3d, 0xc8, 0x4a, 0xe2, 0xd7, 0x19,
+ 0x0e, 0xfc, 0xe5, 0x08, 0xfd, 0x29, 0xfc, 0x4e, 0xd7, 0x13, 0x07, 0x0e,
+ 0x42, 0xff, 0x16, 0x33, 0xc9, 0xe9, 0xa4, 0x2c, 0xfa, 0x01, 0xc1, 0x09,
+ 0x1f, 0x41, 0xcb, 0xaa, 0xe7, 0xfc, 0xd2, 0xfe, 0xd0, 0xf0, 0x0b, 0x36,
+ 0x2d, 0xcc, 0xbf, 0x1e, 0x2a, 0x1c, 0xf7, 0x11, 0x0e, 0x41, 0x06, 0x11,
+ 0xf3, 0xf8, 0xac, 0xe1, 0x07, 0xe8, 0x0e, 0xd5, 0x14, 0xd3, 0x4e, 0xef,
+ 0x0e, 0x25, 0xed, 0x33, 0x08, 0x3f, 0x0a, 0x01, 0x40, 0x3b, 0x61, 0xf3,
+ 0xee, 0xa6, 0x08, 0x47, 0xd8, 0xf0, 0xbe, 0x11, 0xf2, 0x0e, 0x5a, 0xe4,
+ 0x21, 0x0c, 0x52, 0xd3, 0xb8, 0xaf, 0xdc, 0x03, 0xd9, 0xd4, 0x13, 0xe5,
+ 0x08, 0x0c, 0x38, 0xc9, 0xd7, 0x24, 0xe0, 0x27, 0x23, 0xfb, 0xd4, 0xfd,
+ 0x10, 0x38, 0xf2, 0x38, 0xda, 0x31, 0xba, 0xe1, 0x1e, 0xfb, 0x10, 0xdc,
+ 0xd9, 0x31, 0x04, 0x0d, 0xff, 0x2c, 0x14, 0xe5, 0xf0, 0x6c, 0x44, 0x15,
+ 0xf3, 0x17, 0xd1, 0xea, 0x24, 0x25, 0x28, 0x1b, 0x14, 0xf9, 0x0c, 0x0c,
+ 0xe9, 0xe5, 0x0c, 0x1d, 0x0e, 0xdd, 0x0e, 0x27, 0xd0, 0xc6, 0xfc, 0x0f,
+ 0xcd, 0xc2, 0xe7, 0x40, 0xe5, 0x3f, 0x17, 0xb4, 0x38, 0x24, 0x08, 0x05,
+ 0x3e, 0x92, 0xbb, 0x46, 0xde, 0x26, 0xc7, 0xee, 0x09, 0xe2, 0x12, 0xf4,
+ 0x2c, 0x54, 0x5d, 0xb6, 0x1b, 0xbc, 0x18, 0x35, 0xda, 0xde, 0x10, 0xcd,
+ 0x2c, 0x26, 0xff, 0x08, 0xd7, 0xc1, 0x08, 0x42, 0xc8, 0xc8, 0xc2, 0xfe,
+ 0x57, 0x2e, 0x15, 0x00, 0x2a, 0x2c, 0xb1, 0xf6, 0xf8, 0xd4, 0x42, 0x43,
+ 0x4b, 0x01, 0xf4, 0xd2, 0xfd, 0x25, 0xe7, 0x28, 0x27, 0x1a, 0x46, 0xd1,
+ 0x2a, 0x29, 0xe6, 0x0b, 0x1f, 0x06, 0x10, 0xfc, 0xb9, 0x3e, 0xfd, 0x57,
+ 0x2c, 0x27, 0xcf, 0x35, 0x13, 0x00, 0x50, 0x15, 0x20, 0xcd, 0x42, 0x21,
+ 0xdc, 0x18, 0x10, 0x12, 0xd9, 0x00, 0xff, 0xc6, 0xd5, 0x2f, 0xf8, 0x35,
+ 0xab, 0xbc, 0x35, 0xfd, 0x05, 0xd3, 0xfa, 0x05, 0x4a, 0x34, 0x8a, 0xf1,
+ 0xd6, 0x89, 0x19, 0x0d, 0x16, 0xdd, 0x2e, 0xba, 0x17, 0xb1, 0x35, 0xd1,
+ 0xf1, 0x01, 0xfa, 0xd0, 0x08, 0x27, 0xbe, 0xbd, 0x5a, 0xb3, 0x02, 0xea,
+ 0x2a, 0xec, 0x75, 0xe5, 0x2d, 0xd8, 0xf0, 0xef, 0x12, 0x45, 0xec, 0x08,
+ 0xfd, 0x1f, 0x1b, 0xfe, 0x1d, 0xfb, 0x03, 0xda, 0x3e, 0x06, 0xf7, 0x02,
+ 0x0e, 0x17, 0x94, 0x9f, 0x11, 0x42, 0x61, 0xcd, 0xac, 0xcf, 0x16, 0x0c,
+ 0x04, 0xc5, 0x39, 0xfb, 0x4c, 0xb1, 0x34, 0x1a, 0xd8, 0x19, 0xd3, 0x69,
+ 0x05, 0x5c, 0x47, 0x47, 0xcc, 0xfc, 0x60, 0xd4, 0x46, 0x1e, 0xdd, 0x44,
+ 0x95, 0xec, 0x57, 0xf6, 0xe6, 0xcc, 0x11, 0x25, 0xe3, 0x1c, 0xd9, 0x05,
+ 0xbb, 0x81, 0xff, 0xaa, 0x12, 0x9c, 0xe0, 0xc7, 0xea, 0x0b, 0x02, 0xf0,
+ 0x56, 0x31, 0xc2, 0x9b, 0x27, 0xfa, 0xf1, 0x12, 0x1a, 0xf2, 0x3e, 0xd9,
+ 0x35, 0xdd, 0x43, 0x09, 0xc6, 0xf8, 0xab, 0x35, 0xea, 0x26, 0xa6, 0xd7,
+ 0xc6, 0xc5, 0x2d, 0x4d, 0x20, 0xfb, 0x18, 0xb3, 0x5c, 0xb6, 0x15, 0xc0,
+ 0x23, 0xc2, 0x93, 0x00, 0x58, 0x47, 0x54, 0x04, 0xc5, 0x95, 0x22, 0xcb,
+ 0x21, 0xd0, 0x42, 0xbf, 0x1d, 0xe5, 0x4e, 0xcd, 0x9d, 0x4c, 0x05, 0x4b,
+ 0xff, 0x0e, 0x71, 0x41, 0x2b, 0x6a, 0x3d, 0xe7, 0xf8, 0x16, 0xfa, 0x6b,
+ 0xd6, 0xcc, 0xec, 0x3d, 0x73, 0xe3, 0x0e, 0x69, 0xea, 0x38, 0x8f, 0x01,
+ 0x18, 0xee, 0x50, 0xc7, 0xe0, 0x93, 0x32, 0xa3, 0xbe, 0x0c, 0x0a, 0x28,
+ 0x50, 0xe7, 0xe3, 0xde, 0x11, 0x41, 0x04, 0x0c, 0xcb, 0x1f, 0x01, 0xa7,
+ 0xe8, 0x0b, 0x1a, 0x24, 0x39, 0xf3, 0x1b, 0x31, 0xc1, 0x19, 0xd9, 0xca,
+ 0xc5, 0xba, 0xf8, 0xec, 0x1b, 0x4f, 0x97, 0xdb, 0x69, 0xe6, 0xa2, 0xc5,
+ 0x1d, 0x18, 0xf7, 0xdf, 0x00, 0x0e, 0x4c, 0xd2, 0xf7, 0xa8, 0xdd, 0xa5,
+ 0xbf, 0xf1, 0x0d, 0x9e, 0xe9, 0xd0, 0xfa, 0x45, 0xab, 0xd9, 0xad, 0x53,
+ 0x40, 0xf7, 0x33, 0xc8, 0xca, 0x13, 0xdf, 0x10, 0xf4, 0x05, 0x24, 0xe7,
+ 0xc9, 0xff, 0xdc, 0x09, 0x1a, 0xe6, 0xc8, 0xc4, 0xbd, 0xfb, 0xf0, 0xf9,
+ 0x2a, 0xe5, 0x3f, 0x11, 0xe4, 0xe8, 0x62, 0xc7, 0x43, 0xeb, 0x42, 0xfb,
+ 0xa6, 0xdf, 0x24, 0x01, 0x01, 0x16, 0x11, 0xe5, 0xc9, 0x4b, 0x16, 0xa1,
+ 0x16, 0x14, 0xd4, 0x3e, 0xe8, 0x2a, 0x2e, 0xf8, 0x50, 0xeb, 0xfb, 0x00,
+ 0x16, 0xf0, 0x0f, 0xd8, 0x5f, 0x61, 0xfe, 0xb9, 0xf4, 0x25, 0xfc, 0x0a,
+ 0xe5, 0xfd, 0x56, 0x24, 0xf1, 0xf5, 0x44, 0xee, 0x47, 0x0f, 0x0e, 0xf5,
+ 0x24, 0x09, 0x07, 0xe2, 0x39, 0xd3, 0xd3, 0xdb, 0x31, 0x0e, 0x3e, 0xd0,
+ 0x2c, 0x0d, 0x43, 0xdd, 0xbd, 0x41, 0x3a, 0x3c, 0x25, 0xcd, 0x0f, 0x38,
+ 0xf9, 0xda, 0xe7, 0x1e, 0x1b, 0x2b, 0xfd, 0x13, 0x13, 0x00, 0x0e, 0x24,
+ 0xd2, 0x1a, 0x1f, 0x38, 0xff, 0xf9, 0x5c, 0xfd, 0x43, 0xe9, 0x0c, 0xe0,
+ 0xdb, 0xcd, 0x7f, 0xed, 0xbf, 0x4e, 0xed, 0x36, 0x2d, 0x3d, 0x0c, 0x14,
+ 0xf3, 0x27, 0x1e, 0x3c, 0xd1, 0x42, 0xd3, 0x2b, 0x1a, 0x1a, 0x28, 0x4a,
+ 0x35, 0x12, 0x3c, 0x04, 0xff, 0xf7, 0xe3, 0xd8, 0xfc, 0x0b, 0x2b, 0x6b,
+ 0x12, 0x22, 0x43, 0x17, 0x3a, 0xfa, 0x5b, 0x04, 0xe8, 0xf0, 0xc8, 0xf3,
+ 0xeb, 0x63, 0xc8, 0xd5, 0xe3, 0xf1, 0xc1, 0x39, 0xcb, 0xde, 0x01, 0xf4,
+ 0x39, 0xd2, 0xd7, 0xd3, 0x14, 0x4d, 0x2d, 0x57, 0xda, 0x06, 0xef, 0xcf,
+ 0x2d, 0xeb, 0x53, 0x06, 0xd9, 0xf1, 0xb5, 0x27, 0xe4, 0x00, 0xd6, 0xc6,
+ 0xbd, 0x21, 0xe5, 0xd7, 0x17, 0x42, 0x0c, 0x21, 0x11, 0x5a, 0x41, 0xe2,
+ 0x09, 0xe5, 0x50, 0x23, 0xbc, 0x26, 0x5e, 0x0b, 0xbe, 0xec, 0x11, 0xcf,
+ 0xd7, 0x33, 0xb4, 0x17, 0xc5, 0x1a, 0xf3, 0xea, 0x0e, 0xe4, 0xc6, 0x2e,
+ 0xf5, 0x3e, 0x4d, 0xe5, 0xf8, 0x5e, 0xe0, 0xca, 0xc2, 0x27, 0x2e, 0x49,
+ 0xf6, 0x55, 0x0d, 0xb0, 0x40, 0xf8, 0x77, 0xbf, 0xf3, 0xce, 0x23, 0xc1,
+ 0x0d, 0x09, 0xb1, 0xd9, 0xfe, 0xde, 0x01, 0x48, 0x19, 0x3c, 0x3f, 0x37,
+ 0x1e, 0x03, 0x18, 0x16, 0xf4, 0xf2, 0x0f, 0xc7, 0xe0, 0x24, 0xfc, 0x14,
+ 0xdf, 0x3b, 0xd6, 0xd4, 0x3e, 0x1d, 0xd9, 0x37, 0xd6, 0x0a, 0x0f, 0xfe,
+ 0xf8, 0x01, 0xd3, 0xdb, 0x30, 0x20, 0xf5, 0xd3, 0x32, 0x38, 0xd3, 0x08,
+ 0xc1, 0x30, 0xc0, 0x40, 0xc4, 0x14, 0xdf, 0xc9, 0xdc, 0x5d, 0x37, 0x1e,
+ 0xe5, 0x12, 0x0f, 0xca, 0x03, 0xd0, 0xde, 0xd3, 0xe9, 0x07, 0xcb, 0xfe,
+ 0xd5, 0x21, 0x59, 0x05, 0x26, 0x21, 0xdc, 0xe4, 0x34, 0x09, 0x9b, 0x34,
+ 0xe0, 0xbe, 0xe8, 0x43, 0xf8, 0x4f, 0xe2, 0xd2, 0x54, 0x0b, 0x4c, 0xc4,
+ 0x18, 0xef, 0xfc, 0xb2, 0xee, 0x0a, 0xf4, 0xee, 0x1c, 0x23, 0xfc, 0x1b,
+ 0xcc, 0xf3, 0x04, 0xcf, 0xc0, 0x1a, 0xc2, 0xd3, 0xa7, 0xd7, 0xef, 0x33,
+ 0x10, 0xea, 0x1f, 0xa1, 0x0f, 0x28, 0xa8, 0x2b, 0xcb, 0xcc, 0x2f, 0xcf,
+ 0x02, 0xed, 0xf2, 0x9c, 0x2f, 0x04, 0x53, 0x1a, 0xd3, 0x2d, 0x3d, 0xdd,
+ 0xc6, 0xf4, 0x1f, 0xd9, 0xa1, 0xab, 0xb8, 0x1f, 0xf3, 0x47, 0xcd, 0xe0,
+ 0xe5, 0xdd, 0xfa, 0xe5, 0xeb, 0x00, 0x26, 0xf3, 0xfa, 0x51, 0x3c, 0x30,
+ 0x03, 0x0d, 0x2e, 0x10, 0xe7, 0xd4, 0x10, 0x3c, 0x3b, 0x37, 0xff, 0xcb,
+ 0xb0, 0xbf, 0xc6, 0x51, 0x30, 0xe9, 0xa3, 0xf3, 0x3b, 0xb4, 0x14, 0xee,
+ 0xfd, 0x28, 0xf8, 0xcc, 0xf1, 0x41, 0x3b, 0x4b, 0x12, 0xf3, 0x27, 0x1b,
+ 0x56, 0xbd, 0xed, 0x37, 0x12, 0xea, 0xcd, 0xcc, 0xcd, 0xbe, 0xc1, 0xdb,
+ 0xbf, 0x1f, 0x00, 0x28, 0xc8, 0x0b, 0xcc, 0xec, 0x18, 0x25, 0xf5, 0xb7,
+ 0xcb, 0x1e, 0x13, 0xe1, 0xbf, 0x16, 0x1d, 0xce, 0x04, 0xfc, 0x00, 0x3c,
+ 0xe2, 0xb7, 0xdc, 0x03, 0x81, 0xd7, 0xbe, 0x30, 0xfd, 0x0f, 0xeb, 0xef,
+ 0x9e, 0x01, 0xd2, 0x2d, 0x1c, 0xf1, 0xd1, 0xd3, 0x22, 0xe2, 0x1c, 0xd4,
+ 0xdb, 0x15, 0x43, 0x1f, 0x60, 0xa4, 0xf6, 0x21, 0x18, 0xfd, 0xc8, 0xf6,
+ 0xa0, 0xb1, 0xf1, 0x08, 0x2d, 0x03, 0xf3, 0xdd, 0xc8, 0x0e, 0x1a, 0x17,
+ 0x37, 0xd4, 0xfa, 0xde, 0xe8, 0xda, 0xe3, 0xd3, 0xae, 0xe9, 0x22, 0x4c,
+ 0x19, 0xad, 0x3b, 0xff, 0xb7, 0xc9, 0xf4, 0xf3, 0xd8, 0xdd, 0xfb, 0x10,
+ 0x0a, 0xd6, 0xc8, 0xd9, 0x16, 0x5b, 0x30, 0xf6, 0xcc, 0xb3, 0xa3, 0xf9,
+ 0xe3, 0xe8, 0xe0, 0x4a, 0x40, 0xfe, 0x9d, 0x8f, 0xaa, 0x1a, 0xcb, 0xdd,
+ 0x44, 0xad, 0xba, 0x0e, 0xf5, 0xdf, 0x23, 0x40, 0x2f, 0x5d, 0xef, 0x2f,
+ 0xd0, 0xf3, 0xfa, 0xc1, 0xb7, 0xce, 0xca, 0xf7, 0x03, 0x43, 0xba, 0x3a,
+ 0xee, 0xf7, 0xef, 0xdc, 0xd5, 0xb3, 0x1f, 0x21, 0x0d, 0xac, 0xf6, 0xef,
+ 0xc4, 0x17, 0x08, 0x18, 0xb9, 0x03, 0x11, 0xf6, 0xc0, 0x07, 0xbd, 0xad,
+ 0x96, 0x04, 0x02, 0x01, 0xaf, 0x25, 0x1e, 0xf5, 0xab, 0x14, 0xf4, 0xb4,
+ 0x13, 0xad, 0xee, 0x1f, 0xd2, 0xcd, 0x4a, 0x20, 0x31, 0xb9, 0x14, 0x3c,
+ 0xe8, 0x12, 0x07, 0xf4, 0x3c, 0x69, 0xcb, 0xcb, 0xcf, 0x03, 0xbc, 0xef,
+ 0xf1, 0xfe, 0xfa, 0x56, 0x3d, 0xbf, 0xba, 0xea, 0xa2, 0xe5, 0xae, 0x32,
+ 0x64, 0xe1, 0xf3, 0x25, 0x16, 0xc0, 0x39, 0xd9, 0x24, 0xdf, 0xee, 0x0d,
+ 0xc6, 0x56, 0x4c, 0xe9, 0x35, 0xed, 0xf3, 0x06, 0x10, 0x52, 0x25, 0x29,
+ 0x3c, 0xd4, 0xec, 0xfd, 0xe5, 0xe1, 0xbb, 0xcd, 0xdf, 0xbc, 0xfa, 0xd3,
+ 0x21, 0xd8, 0x0c, 0xa9, 0xe0, 0xb7, 0xef, 0x16, 0x0b, 0x01, 0xaa, 0x15,
+ 0x04, 0xec, 0x54, 0x0f, 0x31, 0x0b, 0x58, 0xd0, 0x14, 0xef, 0x1a, 0xbb,
+ 0xd2, 0x9e, 0xd2, 0xb7, 0x9d, 0x14, 0x14, 0xdf, 0x32, 0x9c, 0xe6, 0x32,
+ 0xce, 0x1f, 0xa0, 0xfd, 0x22, 0x77, 0x20, 0xac, 0x0e, 0xf8, 0xb2, 0x56,
+ 0xbf, 0x18, 0xbd, 0x45, 0x1c, 0xfe, 0x02, 0xaa, 0xdd, 0x1d, 0xef, 0xdb,
+ 0xe3, 0x21, 0x2f, 0x75, 0x12, 0xb8, 0x44, 0x03, 0x44, 0xe0, 0xd3, 0xde,
+ 0xfd, 0x3d, 0x0b, 0x99, 0xf9, 0x00, 0xf8, 0x42, 0xdd, 0xe5, 0xb2, 0x68,
+ 0x3c, 0xc4, 0xea, 0x30, 0xd1, 0xfa, 0x18, 0x03, 0x37, 0xea, 0xf7, 0x05,
+ 0x07, 0x15, 0xfe, 0xaa, 0x29, 0xdd, 0x05, 0xdb, 0x81, 0x36, 0xa4, 0x15,
+ 0xbc, 0xfa, 0x1e, 0xd9, 0xdf, 0xc4, 0x27, 0x25, 0xd0, 0x22, 0xae, 0xfe,
+ 0x1b, 0x3d, 0x21, 0x2b, 0xfd, 0x18, 0xd8, 0x18, 0xbc, 0x2a, 0x0e, 0x35,
+ 0x2b, 0xe2, 0xe3, 0xfb, 0xe7, 0x0f, 0xd0, 0x0a, 0xb7, 0xf6, 0xbc, 0xb7,
+ 0x00, 0xf6, 0xf4, 0x24, 0x9d, 0xee, 0x16, 0x20, 0xf3, 0xd6, 0xfa, 0x1d,
+ 0xc4, 0x2e, 0x33, 0x0c, 0xc5, 0x47, 0x3c, 0x50, 0x12, 0xdf, 0xe0, 0xc8,
+ 0x0e, 0x24, 0x10, 0x1a, 0xd6, 0x7f, 0xc8, 0xc7, 0x00, 0xdc, 0xfc, 0xd4,
+ 0x1c, 0x25, 0x41, 0x3a, 0xff, 0x37, 0x07, 0xca, 0xee, 0xf9, 0x04, 0x6d,
+ 0x37, 0x1f, 0x42, 0xde, 0xcb, 0x38, 0x16, 0xbd, 0xda, 0x07, 0xeb, 0x0f,
+ 0x59, 0xc7, 0x11, 0x27, 0x31, 0xd7, 0xe6, 0x15, 0xfc, 0xc3, 0x10, 0xc5,
+ 0x24, 0x32, 0x14, 0x08, 0xdb, 0x40, 0xcb, 0x0e, 0xb5, 0xe0, 0xf4, 0x2a,
+ 0x30, 0xe6, 0x38, 0x0e, 0xe0, 0xfa, 0x00, 0x11, 0xf8, 0xe2, 0x06, 0x06,
+ 0xe8, 0xfd, 0x24, 0x16, 0xbc, 0x13, 0x64, 0x0b, 0xfc, 0x17, 0x11, 0x29,
+ 0xb3, 0x4d, 0x3d, 0x4d, 0xcd, 0x62, 0x33, 0x42, 0x16, 0xfc, 0xdd, 0xf5,
+ 0xe2, 0xce, 0xee, 0xf0, 0xea, 0x4e, 0xcf, 0xca, 0xf9, 0xbe, 0xe1, 0x30,
+ 0x1b, 0xff, 0x08, 0x06, 0x25, 0x3a, 0xdc, 0xe1, 0xaf, 0xf7, 0x10, 0x6d,
+ 0x49, 0x30, 0x0d, 0xc2, 0x2a, 0x2b, 0xf3, 0xef, 0xc0, 0xed, 0x37, 0xef,
+ 0x4a, 0x0f, 0x2e, 0xc4, 0xe3, 0xfa, 0xcc, 0xe3, 0xd3, 0x10, 0x51, 0x17,
+ 0x0f, 0xfa, 0x26, 0x0d, 0xd4, 0x46, 0xea, 0x01, 0xc4, 0x0e, 0xb3, 0x2f,
+ 0x26, 0x17, 0x31, 0xec, 0x0b, 0xec, 0xef, 0x0e, 0xba, 0x18, 0xf6, 0xae,
+ 0x25, 0xb5, 0xf5, 0xed, 0x8c, 0xc1, 0x0f, 0x2d, 0xea, 0xe8, 0xed, 0x27,
+ 0x92, 0x03, 0x20, 0xb1, 0xeb, 0xfd, 0x34, 0x5e, 0x18, 0xf9, 0xde, 0x01,
+ 0x14, 0x1d, 0xda, 0x32, 0xbc, 0x62, 0x18, 0x13, 0xe0, 0xee, 0x0a, 0xf6,
+ 0x02, 0x3f, 0x14, 0xf9, 0xe7, 0x22, 0x21, 0x0a, 0xda, 0xdf, 0x18, 0x06,
+ 0x37, 0x1f, 0xc0, 0xca, 0xd0, 0x1f, 0xde, 0xeb, 0xdc, 0x26, 0x51, 0x26,
+ 0x65, 0x1a, 0x45, 0x1f, 0xf0, 0x0a, 0xf6, 0xfa, 0xda, 0xcd, 0xdb, 0xd6,
+ 0x3f, 0xf4, 0xcc, 0x02, 0xce, 0x1e, 0x13, 0x4b, 0xfa, 0xcf, 0x2a, 0xd3,
+ 0x42, 0xe7, 0xef, 0xde, 0xc0, 0x47, 0xe0, 0x12, 0x10, 0xd7, 0x60, 0xee,
+ 0x73, 0x7f, 0x30, 0x33, 0xe2, 0xf4, 0x1f, 0x0f, 0x21, 0xbd, 0xe5, 0x58,
+ 0xb7, 0xe4, 0x08, 0x24, 0x0b, 0x37, 0x55, 0xe3, 0x4c, 0xf2, 0xf2, 0x42,
+ 0x24, 0x2d, 0x38, 0x28, 0x03, 0x47, 0x0e, 0x14, 0xed, 0x43, 0x46, 0x48,
+ 0xed, 0x18, 0xbf, 0x2c, 0xcb, 0x14, 0xd7, 0x23, 0x45, 0xd0, 0x02, 0xd4,
+ 0xc1, 0xfa, 0xc2, 0xed, 0xdd, 0x27, 0xe7, 0xd5, 0x44, 0x1f, 0x68, 0x35,
+ 0x11, 0xaa, 0x25, 0xab, 0x58, 0x09, 0xf6, 0x16, 0x08, 0xef, 0xf5, 0xf7,
+ 0xfc, 0xd9, 0x0a, 0x03, 0xeb, 0xd5, 0xf8, 0x3a, 0x00, 0xe6, 0x51, 0x2d,
+ 0x3c, 0x15, 0x21, 0xf0, 0xd6, 0x68, 0x04, 0x1f, 0x10, 0x48, 0xfe, 0xe2,
+ 0x5d, 0x23, 0xe9, 0x39, 0xf4, 0x2e, 0xca, 0x4b, 0xdc, 0x10, 0xca, 0x19,
+ 0x04, 0xe8, 0xfa, 0xec, 0x0d, 0x11, 0x03, 0xdd, 0x1f, 0x22, 0xef, 0x15,
+ 0x05, 0x5e, 0xc7, 0xbc, 0x0d, 0xd1, 0x32, 0x18, 0x19, 0xda, 0x01, 0x03,
+ 0x15, 0x27, 0xf5, 0x48, 0x20, 0xd8, 0x26, 0xbe, 0x1b, 0xf3, 0xc7, 0x4f,
+ 0x23, 0xdc, 0xc2, 0x10, 0x1a, 0x0a, 0x11, 0xf9, 0xf6, 0xf2, 0x23, 0xbf,
+ 0xe3, 0xf9, 0x01, 0x9b, 0x0b, 0x08, 0x41, 0xf8, 0xc5, 0x0a, 0xbd, 0xfc,
+ 0x22, 0xd3, 0x1e, 0x0b, 0xcf, 0xd8, 0x3a, 0x59, 0x48, 0xf2, 0x2f, 0x19,
+ 0x13, 0x3d, 0xaf, 0x18, 0xb2, 0x3e, 0x05, 0x1d, 0x2d, 0x02, 0x45, 0xe7,
+ 0xed, 0x6c, 0xdd, 0x4a, 0xdf, 0x28, 0x14, 0x35, 0xcf, 0xf2, 0x18, 0x64,
+ 0xcc, 0x25, 0xf6, 0x4a, 0xcf, 0xef, 0x5b, 0xe5, 0x43, 0x1e, 0x86, 0x37,
+ 0x21, 0x3d, 0x15, 0xeb, 0xda, 0x09, 0x42, 0x13, 0xf7, 0xf8, 0x07, 0x3f,
+ 0xf7, 0x2f, 0xa2, 0xff, 0xcf, 0x13, 0x0e, 0xf5, 0x1f, 0xdd, 0xc4, 0xf9,
+ 0x08, 0x02, 0xb4, 0xf7, 0x17, 0xd9, 0xde, 0xcf, 0x05, 0xb4, 0x6c, 0x07,
+ 0x03, 0xea, 0x24, 0xdc, 0xe8, 0xf5, 0x14, 0x10, 0xd9, 0x22, 0xe2, 0xf0,
+ 0xf5, 0xa8, 0xb0, 0xc8, 0x1e, 0x1f, 0xac, 0x69, 0xcd, 0x54, 0xf0, 0x1f,
+ 0xbe, 0xb8, 0xe5, 0x01, 0x26, 0xbb, 0xae, 0xf2, 0xb3, 0x82, 0x4a, 0xa4,
+ 0x06, 0xc6, 0xb2, 0x48, 0x2e, 0x50, 0x48, 0x91, 0xd4, 0x22, 0x2c, 0xed,
+ 0x1b, 0x3c, 0xaa, 0x5d, 0xf2, 0x01, 0xe7, 0x00, 0xa3, 0xc7, 0x51, 0x2d,
+ 0x18, 0x23, 0xd5, 0xe7, 0xc6, 0xab, 0xd6, 0xf6, 0xc5, 0x05, 0xc5, 0x20,
+ 0xee, 0x6f, 0x5b, 0x8c, 0x26, 0x5a, 0x1c, 0xf2, 0x0c, 0xe8, 0x2f, 0xe3,
+ 0xbf, 0x19, 0x5c, 0xa6, 0x19, 0x38, 0x36, 0x22, 0x3a, 0x2c, 0xd3, 0xaa,
+ 0xc6, 0x20, 0x47, 0xed, 0xe3, 0xa6, 0xed, 0x93, 0xa3, 0x42, 0x72, 0xb0,
+ 0x0b, 0x98, 0xb9, 0x38, 0x3a, 0xd5, 0x3e, 0x53, 0x2a, 0x04, 0x2f, 0x09,
+ 0xdd, 0x0c, 0xb1, 0xe0, 0x34, 0xe5, 0xd5, 0xa2, 0xb9, 0x41, 0x08, 0x05,
+ 0xff, 0xc9, 0x03, 0xf9, 0xc2, 0x10, 0x78, 0xa2, 0xde, 0xb2, 0xd1, 0xc2,
+ 0xbd, 0x70, 0x5c, 0x5c, 0x47, 0x07, 0x47, 0xfb, 0xb0, 0xb9, 0xf5, 0xcd,
+ 0x29, 0xcb, 0xb7, 0x4a, 0xc0, 0x16, 0x78, 0x9d, 0xfd, 0xf3, 0xba, 0x89,
+ 0xce, 0xce, 0x7f, 0xe8, 0x41, 0x23, 0xd4, 0x27, 0x99, 0x69, 0xcc, 0x0a,
+ 0x23, 0x71, 0x55, 0xfb, 0xcf, 0x26, 0x4d, 0x52, 0xf2, 0x1a, 0xdb, 0xc0,
+ 0x1f, 0x64, 0x4c, 0xb9, 0x61, 0x53, 0xdd, 0xaf, 0xd1, 0xfb, 0x60, 0x46,
+ 0x31, 0xe0, 0xe9, 0xf8, 0xea, 0x0c, 0xb8, 0xf8, 0x52, 0x2c, 0xca, 0x37,
+ 0x07, 0xc4, 0x45, 0x38, 0xc5, 0x42, 0xb6, 0x9e, 0xc1, 0xb2, 0x9a, 0xee,
+ 0xcf, 0xd8, 0x05, 0x23, 0xd2, 0x41, 0x2a, 0xc1, 0x30, 0x03, 0xdc, 0xf4,
+ 0x3a, 0x69, 0xb0, 0xe9, 0x34, 0xc1, 0xb1, 0xfe, 0xa7, 0x02, 0x19, 0x31,
+ 0x21, 0x38, 0xf7, 0x0d, 0xd6, 0x23, 0xc1, 0xb8, 0x2b, 0x9f, 0xa0, 0xa2,
+ 0xd0, 0xeb, 0x0f, 0x19, 0xbe, 0x56, 0xe6, 0x22, 0xcb, 0xc7, 0x13, 0x1c,
+ 0xde, 0xec, 0x7b, 0xcd, 0x2b, 0x37, 0x44, 0x22, 0xe4, 0x52, 0x2f, 0xad,
+ 0x2a, 0x42, 0xfa, 0xa9, 0x56, 0xe2, 0xba, 0xcc, 0xae, 0x4e, 0xf5, 0x16,
+ 0x1d, 0x18, 0x13, 0x45, 0x54, 0xec, 0xe6, 0xb8, 0xde, 0x3c, 0x2c, 0x3d,
+ 0x23, 0xc1, 0x40, 0x31, 0x15, 0xb0, 0xff, 0xeb, 0x20, 0xf8, 0x71, 0xc2,
+ 0xdb, 0x88, 0xed, 0xbe, 0xc2, 0x3d, 0xe0, 0xd3, 0xed, 0xdc, 0xd2, 0xef,
+ 0x58, 0xe7, 0x0b, 0x17, 0x28, 0x15, 0x05, 0xfa, 0x1d, 0x06, 0x17, 0x21,
+ 0xe9, 0x27, 0x26, 0xc4, 0x0d, 0xf7, 0xfd, 0xf1, 0x10, 0xea, 0xea, 0x07,
+ 0xf3, 0x1f, 0x19, 0xd7, 0x06, 0x09, 0xff, 0xd2, 0xdb, 0x1d, 0x0a, 0xe9,
+ 0xea, 0x16, 0x19, 0xbf, 0x55, 0xd1, 0xb4, 0x05, 0x99, 0x20, 0xba, 0x10,
+ 0xfd, 0xde, 0xd5, 0xf8, 0xff, 0xc1, 0xcb, 0xbe, 0x07, 0xc2, 0x1a, 0xcf,
+ 0x22, 0xf0, 0x2d, 0x1b, 0x3d, 0xcd, 0xbc, 0xc2, 0x5b, 0x28, 0x38, 0xe3,
+ 0x42, 0xaa, 0x6e, 0x24, 0x0d, 0xe1, 0xf7, 0x1b, 0x20, 0xb1, 0x52, 0xc1,
+ 0xfb, 0xd8, 0x14, 0xf7, 0xdb, 0xe6, 0xcf, 0xf5, 0x2e, 0x36, 0x0e, 0x3d,
+ 0x12, 0x04, 0x24, 0x06, 0x4e, 0xef, 0x0f, 0x12, 0xd4, 0xfa, 0xd8, 0x2d,
+ 0x0c, 0x2c, 0x27, 0x35, 0xc8, 0xe1, 0x1c, 0xbb, 0xc9, 0x29, 0xbc, 0x09,
+ 0x33, 0x29, 0x16, 0xf5, 0xe1, 0xdd, 0x1d, 0x3a, 0x4b, 0x28, 0x1c, 0x11,
+ 0x21, 0xd5, 0xf9, 0x19, 0x23, 0xee, 0x07, 0x08, 0xbb, 0x00, 0x9c, 0xe5,
+ 0xfa, 0xe7, 0xfd, 0x29, 0x0c, 0x07, 0xb7, 0x09, 0xf0, 0xc6, 0xcd, 0xd5,
+ 0x00, 0x1d, 0xd6, 0x38, 0x52, 0x0f, 0xfe, 0xe0, 0x3e, 0xe0, 0x5c, 0xde,
+ 0xf5, 0xb4, 0x22, 0x20, 0x10, 0x84, 0xcd, 0xef, 0x1d, 0xe5, 0x23, 0xf4,
+ 0xbd, 0x81, 0xe9, 0xe8, 0xf6, 0xf3, 0xde, 0x28, 0xc7, 0x2a, 0x07, 0x00,
+ 0x1a, 0xdc, 0xd2, 0xba, 0x09, 0x33, 0x4a, 0xcb, 0xd5, 0xf1, 0xc5, 0xce,
+ 0x03, 0xcd, 0x03, 0xe9, 0xb5, 0x0b, 0xc9, 0x17, 0x0c, 0xef, 0xdf, 0xcf,
+ 0x4c, 0x3b, 0x25, 0x0f, 0xb7, 0xe6, 0xf3, 0x33, 0xdf, 0x2d, 0x35, 0xbc,
+ 0x5c, 0x1e, 0x1f, 0xfa, 0x40, 0xde, 0xc8, 0x32, 0x0a, 0x1b, 0x00, 0xf0,
+ 0x29, 0xd2, 0xea, 0xcf, 0xd7, 0x9b, 0xb0, 0xfd, 0xd8, 0xe3, 0x2f, 0x2d,
+ 0x20, 0xff, 0x41, 0xeb, 0xbb, 0xec, 0x46, 0x74, 0xa6, 0x4a, 0xaa, 0xf2,
+ 0x24, 0xd3, 0xf9, 0xdd, 0xdf, 0xc5, 0x1e, 0x33, 0x19, 0x2c, 0xfa, 0x35,
+ 0xef, 0x2e, 0x24, 0xe8, 0xb8, 0xd4, 0xff, 0xf3, 0x2a, 0xfd, 0xfd, 0x3c,
+ 0x97, 0xe6, 0x15, 0xcf, 0x2f, 0x1f, 0xc7, 0xf2, 0x49, 0x54, 0x30, 0xc2,
+ 0x15, 0x09, 0x2e, 0xf3, 0xe4, 0x31, 0x1e, 0xdd, 0x13, 0x39, 0x2c, 0x0f,
+ 0xea, 0x0f, 0x15, 0xc2, 0xec, 0xea, 0x57, 0x28, 0x1a, 0x47, 0xfd, 0xf4,
+ 0xb0, 0x21, 0x39, 0x08, 0xdc, 0xee, 0xbd, 0xde, 0x55, 0x1b, 0x24, 0x3d,
+ 0xd1, 0x2b, 0xf5, 0xd4, 0x16, 0x5a, 0x3b, 0x24, 0xd8, 0xd3, 0x61, 0x9b,
+ 0x48, 0x60, 0xe6, 0x59, 0xd8, 0xfb, 0xe4, 0x38, 0x04, 0x05, 0x05, 0x16,
+ 0xfa, 0x0f, 0x9d, 0x48, 0xee, 0x03, 0xf8, 0x55, 0xf0, 0x28, 0x72, 0x43,
+ 0x00, 0x01, 0x55, 0xb0, 0xe1, 0x2e, 0x18, 0xd4, 0x33, 0x3c, 0x74, 0x62,
+ 0xa5, 0x01, 0x14, 0x10, 0x16, 0xfd, 0x09, 0xf5, 0x39, 0x50, 0xdf, 0xf6,
+ 0x49, 0xcf, 0x0a, 0x32, 0xea, 0xdd, 0x2b, 0x0c, 0xf7, 0x11, 0xd4, 0x05,
+ 0xfc, 0xfd, 0x6b, 0x20, 0x74, 0x95, 0x70, 0x69, 0xb1, 0x0e, 0x18, 0x11,
+ 0xf0, 0x36, 0xf7, 0xda, 0xb8, 0xb7, 0x95, 0xcd, 0x49, 0xd5, 0xd9, 0xdf,
+ 0xcb, 0xf7, 0xce, 0xc5, 0xc0, 0x5b, 0xd5, 0xf9, 0xec, 0x35, 0x45, 0xfa,
+ 0x28, 0x36, 0xda, 0x77, 0x96, 0xfd, 0x5e, 0x15, 0x3e, 0x1f, 0x23, 0x11,
+ 0x13, 0xda, 0xef, 0x45, 0x4a, 0x04, 0x13, 0x11, 0x37, 0x2a, 0x64, 0x21,
+ 0x49, 0x01, 0xda, 0xdb, 0x51, 0xc7, 0xe0, 0x07, 0xe8, 0x0c, 0x51, 0x15,
+ 0xa3, 0xde, 0x3a, 0x5f, 0xd9, 0x57, 0xea, 0x8f, 0x4f, 0x18, 0xf7, 0xa5,
+ 0x04, 0x46, 0xdb, 0x67, 0x0f, 0x0e, 0xeb, 0x01, 0xcd, 0x3c, 0x21, 0xf3,
+ 0x26, 0xda, 0x20, 0xf2, 0x00, 0xf1, 0x4b, 0xde, 0x81, 0xe8, 0x2a, 0xc5,
+ 0x87, 0x2b, 0x56, 0x0c, 0xf4, 0xe6, 0xef, 0xb0, 0x18, 0xea, 0xe5, 0x19,
+ 0x26, 0xc4, 0x00, 0xd7, 0xcc, 0x02, 0xaa, 0xcd, 0x57, 0x0c, 0x0a, 0xd1,
+ 0xd2, 0xfd, 0x15, 0x18, 0xee, 0xc4, 0x41, 0x0a, 0xf5, 0x34, 0x18, 0xc9,
+ 0x2d, 0x45, 0xf9, 0x0f, 0x37, 0xe0, 0x4b, 0xff, 0x09, 0x12, 0x2b, 0xce,
+ 0x3a, 0xe3, 0xd0, 0xff, 0x1e, 0xdf, 0xe1, 0x39, 0xf6, 0xc7, 0xe2, 0x16,
+ 0xa4, 0x31, 0xe8, 0xe1, 0xeb, 0x01, 0x22, 0xd4, 0xdd, 0xeb, 0xca, 0x0a,
+ 0x04, 0x3d, 0xbb, 0x45, 0xe7, 0x27, 0xcc, 0xdf, 0x09, 0xaa, 0x20, 0xb2,
+ 0xfc, 0xff, 0xdf, 0xbe, 0x09, 0xff, 0xd3, 0x17, 0x30, 0x13, 0x08, 0xfc,
+ 0xd4, 0xe1, 0xf1, 0x09, 0x41, 0xbc, 0xe2, 0xf4, 0x15, 0xc0, 0x3a, 0xd1,
+ 0xfe, 0x14, 0x0d, 0x16, 0x2f, 0x7c, 0xc9, 0x4d, 0xb2, 0xff, 0x13, 0x0f,
+ 0xec, 0xdb, 0x40, 0x03, 0x3d, 0x18, 0x09, 0x13, 0xee, 0x23, 0xfd, 0xc6,
+ 0x3d, 0x0a, 0x3a, 0x34, 0x4a, 0xda, 0x32, 0x0e, 0xfe, 0x00, 0xe8, 0x11,
+ 0xff, 0xf1, 0xd9, 0x2d, 0xda, 0x13, 0x14, 0x36, 0xcb, 0x18, 0xed, 0x43,
+ 0xa0, 0xe9, 0x0b, 0xa7, 0xff, 0x30, 0xe5, 0xf7, 0xcd, 0xd6, 0x02, 0x2a,
+ 0xed, 0x1d, 0x10, 0x14, 0x25, 0xd0, 0xfb, 0x1c, 0xc3, 0xb2, 0x39, 0xb8,
+ 0x17, 0xc3, 0x29, 0xd1, 0x2e, 0x18, 0x08, 0xc4, 0x5c, 0xfd, 0xc9, 0xe3,
+ 0xf6, 0xda, 0xd0, 0xd8, 0x2b, 0x35, 0xe4, 0x06, 0xfe, 0xe7, 0x05, 0xe7,
+ 0xd0, 0xe5, 0xd2, 0x0a, 0x0e, 0x7f, 0xb6, 0x57, 0xca, 0x0c, 0x00, 0xd0,
+ 0xde, 0x2c, 0x32, 0x1a, 0x14, 0xd0, 0x1a, 0x23, 0x24, 0xf8, 0x1e, 0x2b,
+ 0x0d, 0x16, 0xe6, 0xe8, 0x17, 0x24, 0x25, 0x28, 0xfd, 0x58, 0xd4, 0x1d,
+ 0x44, 0x33, 0x06, 0xd9, 0xe5, 0xd2, 0xf7, 0x52, 0x1b, 0xec, 0xe5, 0x59,
+ 0xc1, 0xfb, 0x1d, 0xe5, 0xeb, 0x21, 0xbe, 0x3f, 0x13, 0xf3, 0xdd, 0xe6,
+ 0xf7, 0x19, 0xaf, 0x0c, 0xe2, 0xdc, 0x1b, 0xe5, 0xf0, 0x02, 0x5f, 0xd1,
+ 0xd5, 0xed, 0xdb, 0xcd, 0xd3, 0xf0, 0x00, 0x39, 0x01, 0xff, 0x03, 0x34,
+ 0x18, 0xe3, 0xee, 0x16, 0x52, 0x0c, 0xd0, 0xdc, 0x6c, 0x2e, 0xdf, 0x22,
+ 0x31, 0x0b, 0x23, 0x03, 0xf2, 0x27, 0xf6, 0x02, 0xed, 0x25, 0xea, 0xf2,
+ 0x60, 0x58, 0x25, 0xfa, 0x37, 0x1e, 0xb8, 0x37, 0x1e, 0xec, 0xf0, 0x04,
+ 0x52, 0xf9, 0xe0, 0xe6, 0x2e, 0xcb, 0x34, 0x33, 0x50, 0xe6, 0x05, 0xd9,
+ 0x3d, 0xf5, 0x79, 0xdf, 0x1f, 0x08, 0xbc, 0x62, 0xcf, 0x13, 0xd1, 0x39,
+ 0xd4, 0xfc, 0x05, 0xd0, 0x4b, 0xbc, 0xea, 0x39, 0xc7, 0x1e, 0x0a, 0x4d,
+ 0x44, 0xb6, 0x27, 0x9e, 0xe5, 0x18, 0xde, 0x0f, 0x98, 0xd3, 0x16, 0x31,
+ 0xf0, 0xd0, 0x0e, 0xb2, 0x28, 0xdd, 0xd8, 0x58, 0xe5, 0xfd, 0x04, 0xf8,
+ 0x3e, 0x11, 0x9b, 0xf2, 0x35, 0x36, 0x11, 0xf1, 0xe3, 0x0b, 0xab, 0x3f,
+ 0x22, 0x5d, 0xe7, 0x22, 0x13, 0x25, 0x0e, 0x12, 0x13, 0x05, 0x9c, 0x18,
+ 0x21, 0xd5, 0xdb, 0xfc, 0xfa, 0xad, 0x27, 0xdc, 0x44, 0x20, 0xcd, 0xb1,
+ 0x1b, 0xdc, 0xad, 0x4f, 0x5b, 0x25, 0xc9, 0xfb, 0x3f, 0x02, 0xcd, 0x2b,
+ 0x1a, 0x27, 0x31, 0x3d, 0xe2, 0x33, 0x94, 0x57, 0xb5, 0x90, 0xe7, 0x08,
+ 0x9b, 0xd4, 0x2d, 0xc0, 0xa4, 0x0f, 0x1c, 0xc4, 0xb4, 0xe4, 0x25, 0xb1,
+ 0xca, 0xe7, 0xdc, 0x3a, 0xcb, 0x3c, 0x3f, 0xb3, 0x9c, 0x18, 0xfd, 0xb5,
+ 0xfc, 0xb2, 0xb2, 0xe6, 0xa5, 0xc4, 0x2e, 0x07, 0xe3, 0x34, 0x25, 0x34,
+ 0x9c, 0x1d, 0xf0, 0xd8, 0xa2, 0xf5, 0x92, 0x9b, 0xb5, 0xbe, 0x21, 0xbc,
+ 0xd1, 0x68, 0x54, 0xd0, 0x43, 0x23, 0x32, 0x61, 0xf8, 0x11, 0x81, 0x2a,
+ 0x2a, 0xd9, 0xfd, 0x21, 0x26, 0x06, 0x59, 0x2d, 0xd2, 0xb7, 0xf2, 0xb4,
+ 0x50, 0x43, 0x45, 0x21, 0xe2, 0xef, 0xbf, 0xa3, 0x10, 0x2c, 0x22, 0xf2,
+ 0x28, 0x65, 0xeb, 0x59, 0xeb, 0x28, 0xe5, 0xfd, 0xa2, 0x86, 0x2e, 0x0c,
+ 0x91, 0x2e, 0xbf, 0xae, 0x47, 0x33, 0x2d, 0xf6, 0xf1, 0x94, 0x0c, 0xae,
+ 0x22, 0xf9, 0x8a, 0xa9, 0x99, 0x54, 0xef, 0x95, 0x26, 0xa9, 0x7e, 0xe0,
+ 0x13, 0x11, 0xda, 0xa6, 0x85, 0xc8, 0x0b, 0x66, 0x2b, 0x2c, 0xef, 0x3a,
+ 0xfe, 0x9e, 0x21, 0x25, 0xe5, 0xff, 0x08, 0xae, 0xdc, 0x38, 0xcb, 0x98,
+ 0x1e, 0x44, 0x3b, 0x04, 0x37, 0x23, 0x51, 0xf9, 0xd9, 0xc8, 0x02, 0x43,
+ 0x05, 0xf3, 0x40, 0x38, 0xde, 0xc5, 0x2c, 0xe2, 0x0a, 0x22, 0x09, 0xea,
+ 0x06, 0x2a, 0x31, 0xcf, 0x1c, 0x4a, 0x11, 0x51, 0x99, 0x22, 0xe6, 0x30,
+ 0xfd, 0xcc, 0x12, 0x2b, 0x7f, 0xe1, 0xb9, 0xf4, 0xca, 0xde, 0xd5, 0xa9,
+ 0x4b, 0x18, 0x1f, 0x00, 0xd1, 0xf4, 0x04, 0xc5, 0x3a, 0xb3, 0x47, 0x07,
+ 0xe2, 0x66, 0xbd, 0xe1, 0xd6, 0x16, 0x32, 0x48, 0xc7, 0xa9, 0x87, 0x46,
+ 0x37, 0xcd, 0xbd, 0x07, 0x31, 0xdc, 0xe1, 0x3d, 0x22, 0xad, 0x29, 0xef,
+ 0xc9, 0xbb, 0xda, 0x47, 0x15, 0xca, 0x01, 0x16, 0x1b, 0x75, 0x23, 0x30,
+ 0xf8, 0x4a, 0x02, 0x2a, 0xed, 0x1a, 0x9b, 0x18, 0x3b, 0xbe, 0xe1, 0x30,
+ 0xd3, 0xd2, 0xf3, 0xf4, 0xe2, 0x94, 0x3b, 0xc3, 0x3a, 0x10, 0x5d, 0x25,
+ 0x06, 0xb4, 0x07, 0xa1, 0xd5, 0x42, 0xfb, 0xf5, 0x13, 0x35, 0x4c, 0x3a,
+ 0xf3, 0x24, 0xf0, 0xf2, 0x1a, 0xd3, 0xb3, 0xd7, 0xc0, 0xc3, 0xfc, 0x03,
+ 0x50, 0x21, 0xfc, 0xd0, 0x30, 0xc6, 0x4d, 0x36, 0x23, 0x1b, 0xe9, 0xfe,
+ 0xf5, 0x1e, 0xea, 0x43, 0xb2, 0xd5, 0x26, 0xe6, 0xb5, 0xaf, 0xe4, 0xd9,
+ 0x08, 0xe9, 0x93, 0xe4, 0xd5, 0xdb, 0xe6, 0xf4, 0x5c, 0xc5, 0xfc, 0xdb,
+ 0xcb, 0x0f, 0x68, 0x37, 0xc7, 0x16, 0x67, 0x24, 0xd3, 0x48, 0xbe, 0xee,
+ 0xbd, 0x34, 0xd0, 0x13, 0xcb, 0x2a, 0x0d, 0x79, 0x2b, 0xad, 0xe2, 0xdd,
+ 0xd1, 0x3b, 0xc2, 0x64, 0x39, 0x03, 0x1a, 0xa0, 0x53, 0x49, 0x5f, 0x40,
+ 0x14, 0xe0, 0x41, 0x1d, 0x4f, 0x3a, 0xa6, 0x44, 0xa0, 0x2b, 0x49, 0x07,
+ 0xd2, 0xfe, 0x34, 0xfb, 0x13, 0x09, 0x0b, 0xcf, 0xf4, 0xa5, 0xc7, 0xc0,
+ 0xd1, 0x03, 0xd8, 0xb7, 0x25, 0x11, 0x2c, 0xef, 0x22, 0xb6, 0x4a, 0xf2,
+ 0x24, 0xff, 0x16, 0xc9, 0xe1, 0xe5, 0x2f, 0x68, 0xd6, 0xc9, 0xde, 0x1b,
+ 0x20, 0xab, 0xc8, 0xc6, 0xc1, 0x8b, 0x32, 0xeb, 0x62, 0xcd, 0x23, 0xd7,
+ 0x0f, 0xf2, 0x17, 0xf5, 0xfe, 0xd6, 0x3f, 0xf5, 0x29, 0x31, 0xf4, 0xf6,
+ 0xd8, 0x4b, 0xcc, 0x5f, 0xc9, 0xdf, 0xec, 0x0f, 0x11, 0xc6, 0xa4, 0x4a,
+ 0xe9, 0x11, 0xb9, 0xbe, 0xd5, 0xf6, 0xea, 0x51, 0x01, 0xb8, 0xdc, 0x1b,
+ 0xee, 0x05, 0x33, 0xb7, 0xe8, 0x33, 0xdc, 0xe1, 0xf9, 0x33, 0x2d, 0x20,
+ 0xd0, 0x35, 0x23, 0x1e, 0xd7, 0xa0, 0x1b, 0xbd, 0xeb, 0x3c, 0x38, 0x2f,
+ 0xd3, 0x12, 0x01, 0x58, 0x1f, 0xdb, 0x5b, 0xe6, 0x17, 0xfb, 0xff, 0xdc,
+ 0xd3, 0xd3, 0x23, 0x06, 0x3e, 0xf3, 0x1d, 0xd7, 0xf2, 0xd4, 0xed, 0x31,
+ 0x56, 0x06, 0x5e, 0x3b, 0xaf, 0x15, 0x3b, 0xb0, 0xa8, 0x22, 0xf4, 0xd4,
+ 0xf8, 0xaa, 0xd6, 0x27, 0x0c, 0x15, 0xc5, 0xec, 0xa2, 0x3c, 0xd9, 0x2a,
+ 0xe0, 0xf8, 0x34, 0xeb, 0x1b, 0x9f, 0x24, 0xc4, 0xea, 0xc3, 0x02, 0xe6,
+ 0xa7, 0x6d, 0xc5, 0xe6, 0x05, 0xd5, 0xca, 0x1a, 0x65, 0xf9, 0x2e, 0x28,
+ 0xec, 0x26, 0x15, 0x23, 0xc8, 0x2c, 0x03, 0xc4, 0x24, 0xd7, 0x26, 0x5d,
+ 0x4c, 0xe6, 0x1d, 0xfa, 0x47, 0xce, 0xcd, 0xe0, 0x21, 0xcf, 0xfc, 0x68,
+ 0x33, 0xf3, 0xfa, 0x53, 0x4c, 0xeb, 0x59, 0x69, 0xd8, 0x44, 0xce, 0x45,
+ 0xef, 0x38, 0xc9, 0xdb, 0x45, 0x40, 0x52, 0x12, 0x51, 0x30, 0xc0, 0x07,
+ 0x22, 0xd8, 0xfa, 0x5b, 0xcf, 0x23, 0xc1, 0x2f, 0xe6, 0xd2, 0x15, 0xfb,
+ 0xd9, 0xc4, 0x0b, 0x4d, 0x20, 0xe1, 0x0f, 0xff, 0xc3, 0x5a, 0xa8, 0xfe,
+ 0xaa, 0x5d, 0x32, 0x40, 0xb9, 0xcc, 0xbc, 0xcc, 0x5a, 0xdc, 0xfc, 0xc7,
+ 0xc3, 0x35, 0xef, 0xef, 0x30, 0xf7, 0xe1, 0x3b, 0x62, 0xc4, 0xfe, 0xde,
+ 0x32, 0x23, 0xff, 0xe9, 0xf0, 0x61, 0x16, 0x2a, 0x0b, 0x0e, 0x44, 0x4f,
+ 0x14, 0xd4, 0xc9, 0x3a, 0x2a, 0x97, 0xda, 0xea, 0xde, 0x1a, 0xbe, 0x04,
+ 0x15, 0xe6, 0xef, 0xfb, 0x32, 0x31, 0x6f, 0x36, 0x40, 0xc4, 0x05, 0x2f,
+ 0x1a, 0xd3, 0xb3, 0x22, 0x05, 0x69, 0x22, 0xcc, 0xf9, 0x2c, 0xbd, 0x16,
+ 0x4c, 0xc9, 0xe5, 0x42, 0xec, 0xcc, 0xe8, 0x05, 0x81, 0xb4, 0xf7, 0x27,
+ 0x06, 0xc4, 0x31, 0xc3, 0xf1, 0xb0, 0xc2, 0xf4, 0xb3, 0x3e, 0x8a, 0x24,
+ 0xab, 0xf7, 0x03, 0x41, 0xc3, 0x0f, 0x1b, 0x9d, 0xf2, 0xd0, 0xa5, 0x04,
+ 0xab, 0x10, 0xd8, 0xde, 0xf8, 0xe9, 0x34, 0x95, 0xf3, 0x61, 0xd6, 0xfc,
+ 0xcb, 0x28, 0x5a, 0xf7, 0x06, 0xc4, 0x17, 0x52, 0x04, 0x2f, 0x8f, 0xcf,
+ 0x09, 0xb4, 0xff, 0xca, 0xc5, 0xc5, 0xca, 0x12, 0xb8, 0x3d, 0xd2, 0x0e,
+ 0x1c, 0x95, 0x51, 0x22, 0x08, 0x1c, 0x3a, 0xe5, 0x34, 0x60, 0x13, 0xf1,
+ 0x24, 0xaa, 0xdd, 0xcb, 0x1b, 0xfe, 0x0d, 0x04, 0xea, 0xc1, 0xd1, 0xe6,
+ 0xef, 0xa6, 0x0a, 0xe8, 0xba, 0x2a, 0x28, 0xd2, 0xe0, 0xde, 0x06, 0x0a,
+ 0xf4, 0xcd, 0xfb, 0xf5, 0x69, 0x38, 0x0f, 0xdd, 0xff, 0xdd, 0x0c, 0x24,
+ 0x10, 0x02, 0xf9, 0x19, 0xfb, 0x4f, 0xc0, 0xfb, 0xb7, 0x06, 0x10, 0x40,
+ 0xce, 0x54, 0x07, 0xe8, 0x25, 0xa5, 0x2c, 0xc1, 0xc7, 0x20, 0x11, 0xe8,
+ 0x23, 0x73, 0x37, 0x13, 0x35, 0x92, 0xde, 0x46, 0xe8, 0x0d, 0x9d, 0x0c,
+ 0xe5, 0xed, 0xcc, 0x1b, 0xe4, 0x8e, 0x11, 0x04, 0xfa, 0x55, 0xf0, 0xb2,
+ 0x37, 0x82, 0xf8, 0xce, 0xf7, 0x2e, 0xe2, 0x0d, 0x2d, 0x21, 0x26, 0xc0,
+ 0x1c, 0xe3, 0x3a, 0xd9, 0xed, 0xe4, 0x18, 0x4a, 0x32, 0x01, 0x97, 0xde,
+ 0xeb, 0x8c, 0x05, 0x05, 0xb7, 0x17, 0x02, 0xcc, 0xfa, 0xf8, 0x0c, 0x2b,
+ 0x16, 0x1b, 0x45, 0x36, 0x45, 0x13, 0x34, 0x21, 0x37, 0xea, 0xd0, 0xc0,
+ 0x2d, 0xea, 0xee, 0x2e, 0x12, 0xdd, 0xe3, 0xff, 0xd9, 0xd7, 0x00, 0x10,
+ 0xf2, 0x70, 0x28, 0xe7, 0x30, 0xe4, 0x01, 0xa3, 0xbd, 0xe1, 0x06, 0x13,
+ 0x3c, 0x22, 0x49, 0xe1, 0xf8, 0xe4, 0x20, 0x04, 0x06, 0x26, 0xb0, 0xfa,
+ 0xf4, 0x93, 0xd3, 0xdf, 0xdf, 0x81, 0xdb, 0xcd, 0x27, 0x55, 0xf3, 0xf4,
+ 0x4d, 0xa2, 0x07, 0x32, 0x52, 0x07, 0x33, 0xd7, 0xdf, 0x1e, 0xc5, 0xf1,
+ 0x42, 0xc3, 0x15, 0xdc, 0x3b, 0x01, 0x1c, 0x43, 0x24, 0x00, 0x0b, 0xe7,
+ 0xa9, 0xa4, 0x0e, 0xa2, 0x18, 0x34, 0xff, 0x0a, 0xf0, 0xaf, 0x0c, 0xff,
+ 0x4e, 0xe9, 0xd9, 0x41, 0x56, 0x4d, 0xbf, 0xe5, 0x19, 0xfc, 0x24, 0xbe,
+ 0x14, 0x02, 0xd4, 0x45, 0xbc, 0x37, 0xea, 0xd2, 0xe7, 0xd8, 0x24, 0xfc,
+ 0xe9, 0x17, 0x06, 0xe0, 0xb7, 0xd0, 0x28, 0x48, 0xe2, 0x26, 0x5d, 0xb7,
+ 0x05, 0xd0, 0xe5, 0x2d, 0xb1, 0x8d, 0x2a, 0x4c, 0xf0, 0x1a, 0xe7, 0xe6,
+ 0xf1, 0x06, 0x9e, 0x26, 0xcf, 0x30, 0x2d, 0x28, 0xfd, 0xd3, 0xe7, 0xcc,
+ 0xef, 0xe9, 0xf0, 0x44, 0xff, 0xb0, 0xf4, 0xf5, 0x54, 0xfd, 0xab, 0xc2,
+ 0xd8, 0xe3, 0x3a, 0x05, 0xd9, 0xfa, 0xb1, 0xfc, 0x0c, 0x0a, 0xd8, 0x29,
+ 0x0b, 0xf5, 0x0d, 0x31, 0xd8, 0xa3, 0x39, 0x02, 0xc4, 0xe7, 0x3f, 0xf6,
+ 0xae, 0x01, 0x18, 0x41, 0xb5, 0x1f, 0xe4, 0x0a, 0xda, 0x39, 0xee, 0x20,
+ 0x18, 0xe4, 0xc7, 0x15, 0xc8, 0x01, 0xfa, 0x25, 0x33, 0xe5, 0xd6, 0xed,
+ 0x31, 0x25, 0x1b, 0x51, 0xc3, 0xcc, 0x08, 0x43, 0xd0, 0xfe, 0x3f, 0x1f,
+ 0x1d, 0x57, 0x4c, 0x19, 0xb3, 0xcf, 0xd0, 0x06, 0xdc, 0x2b, 0x1f, 0xe9,
+ 0xfb, 0xaf, 0xc3, 0xb8, 0xe3, 0x07, 0x0e, 0x43, 0x30, 0x27, 0x08, 0xdc,
+ 0xbe, 0xe2, 0xd3, 0xf3, 0x35, 0xf9, 0xcd, 0x19, 0x0f, 0x46, 0x0a, 0x05,
+ 0x28, 0x3e, 0x02, 0x0b, 0xce, 0x09, 0xf6, 0x21, 0x2a, 0xf7, 0xc3, 0x06,
+ 0x2d, 0xbf, 0xe4, 0xe3, 0x42, 0x0d, 0x24, 0x38, 0xff, 0x09, 0xce, 0x01,
+ 0xcb, 0x03, 0x66, 0xec, 0xb6, 0x2c, 0xdd, 0xe1, 0x10, 0x34, 0xe4, 0x1b,
+ 0xd2, 0x00, 0x24, 0x14, 0xd2, 0xe4, 0x03, 0x25, 0xe2, 0x1f, 0xf0, 0xc9,
+ 0x1d, 0x2c, 0xdd, 0x27, 0x17, 0x3c, 0x2d, 0x4d, 0x4a, 0xfa, 0x1d, 0x23,
+ 0x06, 0x6a, 0x64, 0x0f, 0x28, 0x81, 0x25, 0xef, 0xe4, 0x1c, 0x0d, 0xf6,
+ 0xff, 0x02, 0x18, 0xc6, 0xdc, 0xae, 0x5f, 0xe7, 0xc8, 0x40, 0xe7, 0x33,
+ 0x1c, 0x0b, 0xf5, 0x1f, 0x30, 0xed, 0xed, 0xff, 0x09, 0x3f, 0x44, 0x0b,
+ 0x0f, 0xd1, 0x2c, 0xe3, 0xee, 0xdb, 0xfe, 0xe5, 0xf6, 0x2e, 0x2e, 0x08,
+ 0xc0, 0xcc, 0xe8, 0x1c, 0xbb, 0x0d, 0x3b, 0x15, 0xd9, 0xd5, 0xeb, 0x3e,
+ 0xde, 0x3b, 0x46, 0x1b, 0xb8, 0x0d, 0x2b, 0x04, 0x3e, 0xea, 0xec, 0xc3,
+ 0xea, 0x13, 0x03, 0x0a, 0x14, 0xe6, 0x35, 0x37, 0x33, 0xf8, 0x44, 0xd5,
+ 0x44, 0xef, 0xfd, 0x37, 0xfd, 0xc0, 0xfd, 0x93, 0xb5, 0xd0, 0x39, 0xc2,
+ 0xe4, 0xd2, 0x0c, 0x8d, 0x1e, 0x1a, 0x14, 0x0a, 0xcb, 0x0a, 0xd2, 0x17,
+ 0xbe, 0x00, 0x0f, 0x23, 0xec, 0x2e, 0xf5, 0xe4, 0xb8, 0xbc, 0xf8, 0x1e,
+ 0x07, 0xac, 0xf2, 0xd2, 0xaf, 0xd0, 0x23, 0xf0, 0x23, 0x1e, 0x01, 0xac,
+ 0x33, 0x0d, 0x04, 0xf3, 0xcb, 0xea, 0xe3, 0xdc, 0xe5, 0x4c, 0x39, 0x16,
+ 0xe0, 0xef, 0x2b, 0x3f, 0xec, 0x1d, 0x0a, 0x7f, 0x7a, 0xf0, 0x00, 0xde,
+ 0xb9, 0xc1, 0x2a, 0x47, 0x6c, 0x7a, 0xf5, 0xe1, 0x3b, 0xd8, 0x10, 0x3a,
+ 0x01, 0xbc, 0xab, 0xe7, 0x3d, 0xf8, 0xd2, 0x4e, 0xaf, 0x29, 0x21, 0x3b,
+ 0x27, 0x3f, 0x66, 0x26, 0xfb, 0xa5, 0x39, 0xc2, 0xdd, 0xf5, 0x2f, 0xff,
+ 0x44, 0x15, 0xb2, 0xa0, 0x40, 0x5f, 0x1e, 0xe0, 0x0a, 0xcb, 0xb7, 0x34,
+ 0x3a, 0x17, 0xc7, 0x11, 0xf8, 0x2f, 0xa2, 0x2a, 0x39, 0x0b, 0xfa, 0x43,
+ 0x1c, 0xd5, 0x07, 0xbd, 0xb7, 0xcc, 0x20, 0xc1, 0xeb, 0xc3, 0x09, 0x10,
+ 0xd6, 0x20, 0xbc, 0xaa, 0xe8, 0xc1, 0xdd, 0x2b, 0x29, 0xea, 0x1a, 0xb9,
+ 0xf2, 0xff, 0xf5, 0x19, 0x2d, 0xdc, 0xf6, 0x3b, 0x71, 0xba, 0x0c, 0x1c,
+ 0xa2, 0xf0, 0x40, 0xe6, 0x2f, 0x24, 0x26, 0xc2, 0x2e, 0xd3, 0xda, 0xf5,
+ 0x17, 0xe7, 0x2d, 0xe5, 0x3d, 0xd1, 0xd9, 0x33, 0x1e, 0x09, 0x40, 0x12,
+ 0x22, 0x68, 0x63, 0x4e, 0x63, 0xa7, 0x6a, 0x28, 0x14, 0x03, 0x56, 0xdf,
+ 0xfe, 0xf4, 0xfb, 0xc0, 0x5c, 0xdd, 0x3b, 0xdf, 0x33, 0xf7, 0xcc, 0x41,
+ 0xe3, 0xcd, 0xcc, 0xe1, 0x2e, 0x0d, 0x8f, 0x44, 0x62, 0x08, 0x2c, 0x0e,
+ 0xdd, 0xa6, 0xe6, 0xa9, 0xd7, 0xab, 0xc7, 0x3d, 0x50, 0x2d, 0xf2, 0xd5,
+ 0x43, 0x06, 0x01, 0xc8, 0xe3, 0x08, 0x0c, 0x4c, 0xff, 0xe2, 0xc3, 0x26,
+ 0x2a, 0x57, 0xda, 0x08, 0x4a, 0x06, 0x18, 0x15, 0x42, 0xe8, 0x31, 0x25,
+ 0xac, 0xf1, 0x00, 0x29, 0x1a, 0x12, 0x2e, 0x1a, 0x1c, 0x3d, 0xec, 0xc3,
+ 0x3f, 0x14, 0xf6, 0x2d, 0xdf, 0x30, 0x14, 0x27, 0xe9, 0x06, 0xd7, 0x2f,
+ 0xc7, 0xcb, 0xff, 0x10, 0xdc, 0xce, 0x13, 0x27, 0xc1, 0xc4, 0x01, 0xdf,
+ 0xcc, 0xfd, 0xb4, 0x10, 0xe6, 0x08, 0x15, 0x28, 0xc0, 0x16, 0xea, 0x15,
+ 0xd7, 0x1b, 0xc7, 0x32, 0x25, 0xde, 0xf1, 0xd4, 0xf2, 0x10, 0xed, 0x4c,
+ 0xd1, 0xe4, 0x1f, 0x2a, 0x03, 0xe9, 0x0d, 0xe1, 0xef, 0x4e, 0xbd, 0x0c,
+ 0xf5, 0x3c, 0xf4, 0x1a, 0xec, 0x30, 0x41, 0x22, 0x35, 0x23, 0xc2, 0xe1,
+ 0xee, 0x1b, 0xe6, 0xe5, 0xe9, 0x06, 0xee, 0x37, 0xe1, 0xaa, 0xed, 0xc9,
+ 0xd7, 0xdf, 0xf1, 0x33, 0x41, 0xec, 0xc7, 0xd8, 0x22, 0x14, 0x81, 0x19,
+ 0x97, 0x2e, 0x09, 0x3c, 0x0e, 0xfb, 0xdb, 0x02, 0xf9, 0x15, 0xf5, 0xda,
+ 0x0b, 0x46, 0x3e, 0x19, 0x1a, 0xc6, 0xff, 0x31, 0xcf, 0xe4, 0x33, 0xec,
+ 0xc7, 0x6f, 0xc6, 0x1f, 0x0d, 0x42, 0xb3, 0xd9, 0x16, 0xf2, 0xdc, 0x17,
+ 0x1a, 0x1a, 0xcc, 0x22, 0xf2, 0xde, 0xc0, 0x22, 0x07, 0x0a, 0x28, 0x5e,
+ 0x28, 0xf6, 0x16, 0x2e, 0xff, 0x13, 0x4c, 0x03, 0xd6, 0x11, 0xf7, 0xcc,
+ 0x33, 0x46, 0xd4, 0x48, 0xd6, 0x08, 0x14, 0x25, 0xe8, 0x30, 0xf5, 0xdb,
+ 0x59, 0x03, 0xa2, 0x11, 0xb5, 0xcf, 0x16, 0x05, 0xd2, 0xc3, 0xf3, 0xe6,
+ 0x14, 0xf5, 0x4d, 0x2b, 0xb1, 0x13, 0xe9, 0xd7, 0x09, 0x4a, 0x98, 0x18,
+ 0x99, 0x5c, 0xa3, 0x21, 0xc3, 0x1c, 0xde, 0x0d, 0x48, 0xd4, 0xcf, 0xd6,
+ 0xde, 0x22, 0xf3, 0x17, 0x25, 0xd7, 0xf9, 0x15, 0x37, 0xfc, 0x1c, 0xe7,
+ 0x01, 0xfa, 0x06, 0xd7, 0xcd, 0x06, 0x0e, 0x1a, 0x11, 0xf5, 0x23, 0xdc,
+ 0x41, 0xdb, 0x14, 0x43, 0x04, 0xe8, 0x2a, 0x10, 0x21, 0x13, 0x39, 0x12,
+ 0xeb, 0xba, 0x24, 0x4d, 0x3b, 0x1c, 0x17, 0xfe, 0xca, 0xf1, 0x08, 0x17,
+ 0x2d, 0x12, 0x05, 0x1f, 0x18, 0xda, 0xed, 0xe9, 0x2b, 0x0e, 0x3d, 0x11,
+ 0x4c, 0x00, 0xc0, 0xea, 0x08, 0xf3, 0x0e, 0x12, 0xe3, 0xbd, 0xf6, 0x1f,
+ 0xc7, 0xb4, 0x05, 0x30, 0xce, 0xec, 0x12, 0x04, 0xef, 0x13, 0xd4, 0xde,
+ 0xef, 0xf8, 0xb8, 0xe9, 0xfd, 0xf6, 0xd0, 0xcf, 0x35, 0x29, 0xbc, 0xca,
+ 0xe7, 0x1a, 0xff, 0x13, 0xde, 0x1a, 0x17, 0x63, 0xf8, 0x58, 0x73, 0x2d,
+ 0x2f, 0x55, 0x40, 0x26, 0x23, 0x1d, 0x03, 0x12, 0x1f, 0xeb, 0x4f, 0xf5,
+ 0x1c, 0x0d, 0x0e, 0xf4, 0xee, 0x22, 0xc3, 0x40, 0xbf, 0xf7, 0xe2, 0x29,
+ 0xd0, 0x08, 0x06, 0xe9, 0x24, 0x17, 0xe5, 0xe6, 0xc5, 0xd8, 0x25, 0x33,
+ 0x2e, 0x36, 0x05, 0x2b, 0x43, 0xd5, 0xf8, 0x54, 0xc1, 0xfd, 0x4a, 0xb0,
+ 0xee, 0x14, 0xdb, 0x49, 0xbf, 0xcf, 0x4a, 0xf5, 0xce, 0x19, 0x17, 0xd0,
+ 0x25, 0xf7, 0x07, 0x5a, 0xcf, 0xac, 0xe4, 0xd3, 0x43, 0x0a, 0x42, 0x42,
+ 0xd8, 0xc3, 0xfb, 0x1b, 0xf8, 0x2f, 0xd4, 0x35, 0x12, 0x16, 0xee, 0xc1,
+ 0x07, 0x19, 0x04, 0x4f, 0x17, 0x30, 0x2d, 0x67, 0xe3, 0x2a, 0x7f, 0x44,
+ 0xfd, 0x5e, 0xf3, 0xe5, 0x4d, 0xe8, 0xe5, 0x38, 0x24, 0xee, 0x4b, 0x0e,
+ 0x48, 0xdd, 0x1f, 0x0b, 0x58, 0x3d, 0x1d, 0x4b, 0xcc, 0xe7, 0x03, 0xf0,
+ 0x2a, 0xde, 0xe0, 0xe4, 0x07, 0xe4, 0xf3, 0x2d, 0x17, 0x57, 0xdc, 0x4a,
+ 0xd1, 0x2c, 0xeb, 0xbc, 0x2d, 0x51, 0xe7, 0x05, 0xf2, 0xff, 0x2e, 0xda,
+ 0x25, 0xe0, 0xc9, 0x2e, 0x3f, 0x90, 0x1f, 0x4e, 0xec, 0x2d, 0x13, 0x89,
+ 0xd9, 0x5c, 0x20, 0x46, 0x96, 0xe8, 0x30, 0x26, 0x04, 0x47, 0x18, 0xe7,
+ 0xd1, 0xd4, 0xec, 0x58, 0x08, 0xd0, 0xb9, 0xd5, 0x00, 0xfb, 0xfd, 0xac,
+ 0xed, 0x3c, 0x3e, 0x3c, 0xd3, 0xde, 0x4a, 0x4c, 0x3b, 0x2e, 0x60, 0xe1,
+ 0x08, 0x39, 0x30, 0x2a, 0x04, 0x07, 0xcd, 0xef, 0x0d, 0x76, 0xf4, 0x2b,
+ 0xdc, 0xf6, 0xd4, 0x03, 0x21, 0x09, 0x23, 0x60, 0x30, 0xe4, 0x32, 0xca,
+ 0x26, 0xb6, 0x19, 0xf2, 0x13, 0xb5, 0xbf, 0x11, 0xdd, 0x02, 0x2a, 0x09,
+ 0x3a, 0xd5, 0xcd, 0xef, 0x15, 0x0b, 0xd2, 0x1b, 0xd6, 0xe3, 0x08, 0xb5,
+ 0xc5, 0xf6, 0xb8, 0xfd, 0x42, 0x92, 0x5a, 0x2e, 0x14, 0x34, 0x08, 0xd6,
+ 0x1e, 0xe4, 0x19, 0x63, 0xa5, 0xf2, 0xee, 0x27, 0x10, 0xf2, 0x1d, 0x19,
+ 0x0b, 0x1a, 0xe4, 0x4a, 0xdd, 0xb5, 0x14, 0xd8, 0x42, 0x3b, 0x3d, 0x0c,
+ 0xe8, 0x0d, 0x20, 0x1b, 0xe9, 0x11, 0xe7, 0xe9, 0x35, 0x44, 0xd3, 0xea,
+ 0x2c, 0xe4, 0x4b, 0x05, 0x25, 0x03, 0xde, 0xff, 0x23, 0xf3, 0x0b, 0x0e,
+ 0x5f, 0x36, 0xca, 0x25, 0xff, 0xc6, 0x3a, 0x41, 0x24, 0xf0, 0xfa, 0x04,
+ 0xfd, 0x32, 0xd6, 0x28, 0x25, 0x0f, 0x20, 0x53, 0x29, 0x56, 0xfa, 0x0c,
+ 0xe6, 0xc1, 0xe3, 0x1f, 0xf6, 0x0c, 0xee, 0xef, 0xdc, 0xfe, 0x0a, 0xe2,
+ 0x29, 0xc9, 0x1a, 0xdc, 0xde, 0x02, 0x11, 0xd5, 0xe3, 0xc9, 0xd4, 0xde,
+ 0xe1, 0xc9, 0x36, 0xfe, 0xf7, 0x27, 0xc2, 0xee, 0xda, 0x1e, 0xa8, 0x0b,
+ 0x00, 0xe3, 0x14, 0x1b, 0xd7, 0xcc, 0xcf, 0xe2, 0xdb, 0xf5, 0xff, 0xf2,
+ 0xc2, 0x37, 0x1e, 0x0e, 0x32, 0x0d, 0x22, 0x29, 0x22, 0x43, 0xeb, 0x12,
+ 0x15, 0xec, 0x1e, 0xf1, 0x06, 0xb7, 0xf4, 0xf8, 0x31, 0xda, 0x11, 0xfa,
+ 0x1f, 0x2a, 0xab, 0x03, 0xb5, 0xab, 0xf3, 0x1e, 0x49, 0x23, 0xd7, 0xf2,
+ 0x28, 0xf4, 0xea, 0x2b, 0xe7, 0xec, 0x10, 0x26, 0xe9, 0x7f, 0x02, 0xdd,
+ 0x36, 0x0e, 0xd3, 0x2b, 0x22, 0x1a, 0xc8, 0xe1, 0x13, 0xd3, 0x17, 0x14,
+ 0x41, 0xd5, 0x22, 0x0e, 0x0d, 0x36, 0x3f, 0x1a, 0xe1, 0x04, 0x01, 0xec,
+ 0x1a, 0xd2, 0x40, 0x68, 0xd0, 0x31, 0xb9, 0x24, 0xbc, 0xea, 0xa1, 0xd5,
+ 0xf6, 0x08, 0x46, 0x4f, 0xcc, 0xd8, 0x3c, 0xed, 0x1c, 0x00, 0x0f, 0xbc,
+ 0xd7, 0x2c, 0xfe, 0x28, 0xee, 0xdd, 0x12, 0x3d, 0xee, 0x19, 0x0c, 0xd2,
+ 0x23, 0xda, 0xe4, 0xc3, 0xf3, 0x16, 0xfe, 0xfe, 0x2b, 0x1a, 0xed, 0x2d,
+ 0x32, 0x02, 0xc9, 0xf0, 0xda, 0xcb, 0xe3, 0xfe, 0x1a, 0x2d, 0xf8, 0xfb,
+ 0xea, 0xd7, 0x0f, 0x59, 0xe5, 0xb6, 0xbc, 0x24, 0x26, 0x37, 0xf4, 0xfd,
+ 0x56, 0x02, 0xc9, 0xd7, 0x3a, 0x38, 0xf5, 0x1d, 0xed, 0x1f, 0xed, 0xd9,
+ 0x05, 0xed, 0xcd, 0x2d, 0x30, 0xde, 0x05, 0x19, 0xb7, 0xfc, 0x38, 0xee,
+ 0x24, 0xcb, 0x37, 0x23, 0xcd, 0x15, 0xe7, 0x12, 0xf0, 0x1c, 0xd7, 0x16,
+ 0xda, 0xf5, 0x25, 0x1d, 0xd2, 0x0a, 0x34, 0xcd, 0xd3, 0x0e, 0x15, 0xd5,
+ 0xec, 0xe1, 0x2d, 0x2c, 0x0f, 0xe2, 0x0d, 0xb4, 0xee, 0x44, 0x06, 0x4c,
+ 0x3b, 0xed, 0xe4, 0x27, 0x22, 0xd8, 0x22, 0xeb, 0xe4, 0xed, 0x0e, 0xa1,
+ 0xc1, 0xab, 0x13, 0xf4, 0xb0, 0x2b, 0xf0, 0xed, 0xcf, 0xff, 0x00, 0x48,
+ 0x3c, 0x12, 0x29, 0xeb, 0xfc, 0xf4, 0x24, 0x49, 0x0b, 0xaa, 0xf5, 0xe9,
+ 0x0a, 0xed, 0x1f, 0xe2, 0x12, 0x23, 0x0f, 0xf2, 0x06, 0xf3, 0xea, 0xe6,
+ 0x0b, 0x15, 0xb6, 0x3e, 0xd0, 0xd5, 0xf4, 0x46, 0x2c, 0xde, 0x3b, 0xd4,
+ 0xe3, 0xf3, 0xe3, 0xd4, 0x21, 0xe0, 0x0e, 0xc2, 0x10, 0xf1, 0xb7, 0x32,
+ 0x27, 0xc5, 0xed, 0xce, 0x1b, 0xe8, 0xd3, 0xd4, 0xca, 0xe9, 0xd2, 0xca,
+ 0xf1, 0xe5, 0x27, 0xf9, 0x32, 0x38, 0x3a, 0xbc, 0x10, 0x17, 0x4b, 0x0d,
+ 0xf0, 0xd0, 0x4f, 0x42, 0xd3, 0xe7, 0xf7, 0xfe, 0xe6, 0x04, 0xe0, 0xb1,
+ 0x1c, 0xd4, 0x10, 0xfc, 0x03, 0xf5, 0x1d, 0x0f, 0xe0, 0x2f, 0xcc, 0x4c,
+ 0x42, 0xec, 0x25, 0xde, 0x1a, 0x31, 0x18, 0x00, 0xfa, 0xc4, 0xfe, 0xc4,
+ 0x40, 0x02, 0xed, 0x28, 0xcb, 0x2e, 0x1d, 0xef, 0x06, 0x22, 0xf9, 0x04,
+ 0x0b, 0x07, 0xba, 0x1e, 0x10, 0x1e, 0xd7, 0x00, 0x26, 0xb6, 0x1b, 0x19,
+ 0xe8, 0xee, 0x04, 0x11, 0x14, 0xf0, 0x05, 0xeb, 0x08, 0xee, 0xf0, 0x0e,
+ 0x0a, 0xd3, 0x2f, 0xc7, 0x42, 0xe7, 0xd8, 0x0e, 0x26, 0xcd, 0xa7, 0xd8,
+ 0xdc, 0x11, 0x13, 0x1f, 0x34, 0xd8, 0x1e, 0xae, 0xd3, 0x46, 0x4b, 0x34,
+ 0x09, 0xbf, 0x48, 0x48, 0x03, 0xbb, 0xda, 0x18, 0xd8, 0x17, 0xef, 0x8e,
+ 0x0c, 0xe1, 0xd5, 0x0b, 0xfe, 0xd8, 0xb6, 0x7f, 0x10, 0x1e, 0xb5, 0x5c,
+ 0x4d, 0x35, 0xe5, 0xff, 0xc2, 0x14, 0x45, 0x33, 0x1c, 0xaa, 0xce, 0xfd,
+ 0x2a, 0xdd, 0x30, 0xff, 0xf4, 0xe5, 0x11, 0x11, 0x1d, 0x1b, 0x22, 0x1f,
+ 0xe1, 0xf8, 0xf0, 0x49, 0x21, 0xf3, 0x28, 0xe4, 0x26, 0x1f, 0xfc, 0xd0,
+ 0x2c, 0xe8, 0x0b, 0xe9, 0xe6, 0x1b, 0xcf, 0x11, 0x1f, 0x34, 0xb9, 0x13,
+ 0xed, 0xff, 0x1e, 0xe0, 0x1c, 0x0b, 0x05, 0xd1, 0x26, 0xd9, 0xba, 0xfe,
+ 0xd7, 0xe9, 0x05, 0xef, 0xeb, 0x31, 0xfb, 0xaf, 0xe1, 0x05, 0xfb, 0x34,
+ 0xed, 0xe4, 0xaa, 0xbe, 0xc3, 0x1c, 0x28, 0x29, 0xd0, 0xd5, 0xc6, 0x39,
+ 0xdf, 0x28, 0x3d, 0xe0, 0x21, 0x20, 0x21, 0xc4, 0x15, 0xdf, 0xbf, 0xce,
+ 0x27, 0xdb, 0xd8, 0x3a, 0xdf, 0x20, 0x47, 0xf4, 0x37, 0xf4, 0x0b, 0x13,
+ 0x37, 0xd2, 0xf0, 0xd9, 0x3c, 0x18, 0x21, 0x34, 0xcc, 0x08, 0xb4, 0x12,
+ 0xcb, 0x1d, 0xef, 0x62, 0xec, 0x22, 0xc2, 0x7f, 0xfb, 0xbf, 0x34, 0x08,
+ 0x1a, 0x29, 0xcb, 0xeb, 0x17, 0xce, 0x08, 0xf6, 0x97, 0xae, 0xa2, 0x25,
+ 0x1b, 0xf9, 0x1f, 0xb9, 0xe1, 0x81, 0x23, 0x0c, 0xee, 0xec, 0x03, 0x45,
+ 0xdc, 0x0c, 0x14, 0x2c, 0xd3, 0x1a, 0x47, 0xbf, 0x0e, 0x0e, 0xf1, 0xf3,
+ 0xf4, 0xf8, 0x19, 0xcb, 0x00, 0x1f, 0xc4, 0x00, 0xf5, 0x1c, 0xb8, 0x08,
+ 0xee, 0x06, 0xda, 0x05, 0xfc, 0xe7, 0xe2, 0xb5, 0x18, 0x10, 0xdb, 0x9d,
+ 0x1d, 0xdd, 0xc8, 0x1f, 0x11, 0xc7, 0x46, 0xd2, 0x47, 0x38, 0xd5, 0xdb,
+ 0xe1, 0xb7, 0x23, 0xd4, 0xd9, 0xec, 0x52, 0x1b, 0x2d, 0x32, 0x0e, 0x43,
+ 0xd4, 0xeb, 0xd6, 0x3c, 0x31, 0x47, 0xfd, 0x51, 0xf2, 0xd6, 0x29, 0xee,
+ 0x4a, 0x07, 0x33, 0x1d, 0xc2, 0xc2, 0x43, 0x14, 0xbd, 0xf7, 0x86, 0x1b,
+ 0xe0, 0x37, 0xdd, 0x21, 0x2a, 0x82, 0x42, 0xe1, 0x3f, 0xfc, 0xf4, 0x14,
+ 0x20, 0x11, 0x27, 0x07, 0xb2, 0x45, 0x3d, 0xa3, 0x17, 0xdf, 0x05, 0x20,
+ 0xc6, 0xea, 0x08, 0xb4, 0x06, 0x07, 0x0b, 0x37, 0xf0, 0x07, 0xda, 0x33,
+ 0xb5, 0xfe, 0x43, 0x34, 0x05, 0xcc, 0x07, 0xaf, 0x1b, 0xf5, 0xfa, 0xc8,
+ 0x62, 0xe5, 0xbe, 0xff, 0xeb, 0xd8, 0xf4, 0xf7, 0x4c, 0xf6, 0x28, 0x13,
+ 0xea, 0xd9, 0x12, 0xa6, 0x29, 0xee, 0x1a, 0xef, 0xe2, 0x10, 0xc7, 0x41,
+ 0xe3, 0x05, 0xe3, 0x4d, 0xef, 0x0b, 0xc6, 0x6d, 0x24, 0xd6, 0x17, 0x23,
+ 0xf2, 0x11, 0x2e, 0xf4, 0xf8, 0xfb, 0x31, 0x38, 0xdd, 0xb7, 0x9d, 0x44,
+ 0xe7, 0x3d, 0x3b, 0xc7, 0xd4, 0x98, 0x4f, 0xdb, 0xf8, 0x17, 0x22, 0xf9,
+ 0xda, 0x1b, 0xce, 0x1a, 0x1b, 0xc6, 0xe6, 0x7f, 0xe7, 0xfe, 0x48, 0xca,
+ 0x1a, 0x03, 0xdb, 0x14, 0x33, 0x44, 0x2e, 0x1a, 0x22, 0x17, 0x3c, 0x5f,
+ 0xf3, 0x37, 0x15, 0xe2, 0xf8, 0xc0, 0xcf, 0xfe, 0x07, 0x1a, 0x1e, 0x19,
+ 0x9c, 0xf2, 0xe9, 0xdd, 0x09, 0x1a, 0xc6, 0x18, 0xe5, 0x01, 0xb4, 0x27,
+ 0xdf, 0x30, 0x01, 0xe5, 0xe4, 0x2e, 0xcc, 0x75, 0x11, 0xff, 0xfa, 0xc7,
+ 0x3a, 0x0a, 0x06, 0xf7, 0xcb, 0xde, 0x16, 0x0c, 0xc4, 0x1f, 0xc6, 0x9b,
+ 0x08, 0x06, 0x0b, 0x2d, 0xdd, 0xa5, 0xa4, 0x42, 0x3d, 0x1e, 0x47, 0x1d,
+ 0x07, 0x32, 0xfb, 0xee, 0xa7, 0x0c, 0xa7, 0x48, 0xf5, 0x05, 0x1b, 0xe7,
+ 0xd6, 0xb7, 0x39, 0x0d, 0x0a, 0xd3, 0xe6, 0x3c, 0x15, 0x46, 0x7c, 0xf0,
+ 0x04, 0xcf, 0xab, 0x41, 0x5b, 0x29, 0xe4, 0x35, 0x2d, 0x5b, 0x5a, 0x0e,
+ 0xdd, 0xca, 0xc9, 0xbb, 0x29, 0xff, 0xec, 0x1a, 0xd3, 0x0d, 0x3b, 0xeb,
+ 0x06, 0xf9, 0x2b, 0x17, 0x22, 0xdf, 0x04, 0xd8, 0xed, 0xe4, 0x1d, 0xf0,
+ 0xbc, 0x12, 0x1a, 0xd2, 0xe9, 0x20, 0xe7, 0x5f, 0x2d, 0xa1, 0x19, 0x2b,
+ 0x2b, 0xf6, 0x10, 0x29, 0xc5, 0xb1, 0x1f, 0x56, 0xe9, 0xbe, 0xe7, 0xed,
+ 0x26, 0x15, 0x2b, 0x17, 0xec, 0x93, 0x94, 0xef, 0xe2, 0x0f, 0xed, 0x03,
+ 0xd4, 0x2f, 0x04, 0x39, 0xbc, 0x30, 0xc4, 0x36, 0x1e, 0xc3, 0x1f, 0xe1,
+ 0x00, 0xb5, 0xf5, 0x35, 0x93, 0x43, 0x0b, 0x2f, 0x3f, 0x0b, 0x42, 0x41,
+ 0x44, 0xff, 0xc3, 0xe9, 0xf3, 0x33, 0x3f, 0x16, 0xd6, 0x36, 0x33, 0x3f,
+ 0x31, 0x0c, 0x05, 0xe5, 0x77, 0xe9, 0xd3, 0x13, 0xb4, 0x24, 0x0c, 0xde,
+ 0xc4, 0xbf, 0x0e, 0x0f, 0xc8, 0x12, 0xeb, 0xd9, 0x4c, 0xc0, 0xf2, 0x08,
+ 0xe9, 0x16, 0xd5, 0x43, 0x07, 0x3d, 0x21, 0x45, 0xfc, 0xc0, 0x25, 0x2d,
+ 0x03, 0x28, 0xd8, 0x17, 0xb6, 0xd3, 0x11, 0x4e, 0x0d, 0xce, 0x2f, 0x02,
+ 0xea, 0x0f, 0x6e, 0x23, 0x2a, 0xbd, 0xb6, 0xf1, 0x0d, 0xd6, 0x5d, 0xf8,
+ 0xbc, 0x1a, 0x9c, 0x0b, 0x04, 0x3a, 0x07, 0x4c, 0xef, 0x03, 0xd9, 0xb5,
+ 0x23, 0x39, 0x41, 0xf4, 0x27, 0x37, 0x3d, 0xf8, 0xeb, 0x3e, 0x34, 0x35,
+ 0xc5, 0xfe, 0x33, 0x3f, 0x36, 0xa6, 0x33, 0xd4, 0xeb, 0xe8, 0xfd, 0x0c,
+ 0x32, 0xa4, 0x1b, 0x14, 0xc1, 0xd3, 0x39, 0x20, 0xb7, 0x1a, 0xd5, 0xd6,
+ 0x1e, 0x02, 0xdb, 0xf8, 0x01, 0xce, 0x02, 0x19, 0x18, 0x26, 0x19, 0xdf,
+ 0xd1, 0x03, 0x0a, 0xa3, 0xcd, 0xbc, 0x3b, 0xc1, 0xd0, 0xd5, 0x19, 0xe1,
+ 0x98, 0x14, 0x05, 0xe8, 0xc0, 0x21, 0x12, 0x48, 0x5d, 0x2b, 0xe7, 0x01,
+ 0x04, 0x43, 0xb5, 0x15, 0x10, 0xd2, 0x42, 0xfe, 0xeb, 0x0c, 0x2d, 0xff,
+ 0xe2, 0x81, 0x3e, 0xde, 0x29, 0xe8, 0x3c, 0x52, 0x22, 0xd9, 0x09, 0xde,
+ 0x29, 0x22, 0xf9, 0x3d, 0x59, 0xf2, 0x2a, 0x1b, 0xef, 0x1b, 0xe4, 0x4e,
+ 0xc5, 0x4f, 0xee, 0xe6, 0x28, 0xa7, 0xec, 0x33, 0x0d, 0x24, 0xba, 0xfe,
+ 0x45, 0xaa, 0xf4, 0xc4, 0xe6, 0xe1, 0xe9, 0x30, 0x24, 0x35, 0xd1, 0xf4,
+ 0x2d, 0xf8, 0xb7, 0xb9, 0x06, 0x1d, 0xd6, 0x05, 0xc2, 0x42, 0xdb, 0xf5,
+ 0xd4, 0x1d, 0x0c, 0x9b, 0xd4, 0xf3, 0x16, 0x08, 0x2e, 0xd3, 0xf4, 0xc9,
+ 0xe0, 0x27, 0xc1, 0xe7, 0x2d, 0x20, 0x1b, 0x3b, 0x65, 0x19, 0xf2, 0xcd,
+ 0xcd, 0x0e, 0xf7, 0x0b, 0x46, 0xec, 0x2b, 0xed, 0x19, 0x18, 0xed, 0xcb,
+ 0xe0, 0x93, 0x26, 0x1a, 0xf7, 0x39, 0x09, 0x3c, 0xc9, 0x1b, 0xe2, 0xf5,
+ 0x32, 0x31, 0xfd, 0x08, 0x33, 0xfe, 0x03, 0xdd, 0xe2, 0xf1, 0x3c, 0x08,
+ 0x22, 0x12, 0xe8, 0x3e, 0x53, 0x09, 0xf8, 0xf2, 0x49, 0xff, 0x05, 0xf7,
+ 0xe4, 0xdc, 0xdb, 0x25, 0x20, 0xf8, 0xfb, 0x1b, 0x1a, 0x03, 0x11, 0x13,
+ 0x29, 0xe2, 0xd2, 0xc2, 0xfe, 0xd6, 0x1d, 0xd5, 0x24, 0x11, 0x2c, 0xe4,
+ 0x2f, 0xc6, 0x00, 0xa6, 0xcc, 0x17, 0x0b, 0x2a, 0xea, 0xf5, 0x11, 0xf4,
+ 0xf5, 0xf1, 0x25, 0xe1, 0x07, 0x00, 0x21, 0x1f, 0x5f, 0x01, 0xe6, 0xef,
+ 0x18, 0xe2, 0xe9, 0x3b, 0x48, 0x55, 0x02, 0xe3, 0xe0, 0xc5, 0x59, 0xf3,
+ 0xe5, 0xee, 0xc3, 0xe8, 0x20, 0xfa, 0x37, 0x16, 0x23, 0xd7, 0xed, 0xf8,
+ 0x30, 0xcb, 0xfc, 0xdc, 0xb5, 0xb4, 0xf8, 0xc5, 0xc8, 0xe4, 0x16, 0xe4,
+ 0x30, 0xdc, 0x81, 0x44, 0x04, 0x2f, 0xdc, 0x0e, 0x0f, 0x63, 0xcd, 0xde,
+ 0xf5, 0x06, 0x0a, 0xe9, 0x07, 0xf3, 0x99, 0x23, 0x1a, 0x1e, 0x0e, 0x22,
+ 0x19, 0xe0, 0x27, 0xaa, 0x4b, 0xeb, 0xeb, 0xf7, 0x24, 0xfe, 0xba, 0x23,
+ 0x72, 0xdb, 0x33, 0x07, 0xfb, 0x5e, 0x21, 0x36, 0x29, 0xcf, 0x0d, 0xe6,
+ 0x25, 0xf4, 0xef, 0x21, 0x2e, 0x0e, 0xf3, 0x12, 0xf0, 0xc5, 0x2f, 0xa4,
+ 0x09, 0x28, 0x0c, 0x05, 0x0f, 0x0e, 0xc6, 0x0a, 0x1f, 0x0c, 0x97, 0x37,
+ 0xf7, 0x7b, 0x14, 0x0e, 0xd2, 0x0f, 0x3a, 0xf4, 0x17, 0xec, 0xb5, 0xff,
+ 0xf6, 0xe1, 0x09, 0xf1, 0xf0, 0x14, 0x17, 0x08, 0xc0, 0xdb, 0xf8, 0x9f,
+ 0x0c, 0x2a, 0xf9, 0xf1, 0x5d, 0x18, 0xf6, 0x0a, 0x3a, 0x46, 0x19, 0xc0,
+ 0x36, 0x09, 0x22, 0xfc, 0x12, 0x36, 0xc8, 0xe0, 0x29, 0x1a, 0x47, 0x6d,
+ 0xe2, 0xb3, 0xfa, 0xd5, 0x05, 0xce, 0x3a, 0x26, 0xf0, 0x21, 0x16, 0x1a,
+ 0x0f, 0x01, 0xf2, 0xf0, 0x0b, 0x1e, 0x1a, 0x1c, 0xdc, 0x59, 0xe3, 0x39,
+ 0x36, 0x3f, 0x18, 0x30, 0xdb, 0x46, 0x2d, 0x33, 0xdb, 0x0d, 0x2c, 0xc8,
+ 0xd8, 0xfe, 0x0a, 0xcf, 0xd0, 0x05, 0xa3, 0x39, 0xd5, 0x24, 0x92, 0xf9,
+ 0x20, 0x1e, 0xef, 0x1a, 0x0b, 0x15, 0xdd, 0xf3, 0xbe, 0x40, 0x9a, 0xec,
+ 0xda, 0xfc, 0xc8, 0x67, 0xb3, 0xe4, 0xcf, 0x34, 0x07, 0xfa, 0xd7, 0xbf,
+ 0xd6, 0x2d, 0xb7, 0x2a, 0x31, 0xa6, 0x23, 0xd1, 0xfa, 0x41, 0x40, 0xf5,
+ 0xd5, 0x34, 0x3b, 0x3d, 0x1c, 0x3e, 0xf5, 0xed, 0x23, 0xbb, 0x43, 0x76,
+ 0x2f, 0xda, 0x1b, 0x4e, 0x42, 0xc9, 0x39, 0xb3, 0x43, 0x2d, 0xc0, 0xc4,
+ 0x6c, 0xe6, 0x1f, 0x2f, 0x67, 0xdc, 0xf8, 0xd1, 0x12, 0x0c, 0xb0, 0xf0,
+ 0xcc, 0xed, 0x02, 0xf9, 0xe4, 0x32, 0x0a, 0x21, 0xe3, 0xa2, 0x46, 0x18,
+ 0xe4, 0xfa, 0xd0, 0x1d, 0xb2, 0xc5, 0xff, 0x1d, 0xd7, 0xb9, 0x9d, 0xc0,
+ 0xf9, 0x0e, 0xf2, 0xdf, 0x9a, 0xf8, 0xe9, 0xfe, 0x2c, 0xd5, 0xa3, 0xb2,
+ 0xd7, 0x08, 0xa7, 0x3b, 0xd1, 0x3e, 0xf6, 0x20, 0xe0, 0x22, 0x1f, 0xbf,
+ 0x24, 0xed, 0x31, 0x47, 0xed, 0xb7, 0x1e, 0x2a, 0xeb, 0x14, 0x53, 0x9f,
+ 0xc4, 0xbe, 0x4f, 0xe6, 0x1a, 0xaf, 0x01, 0xdc, 0x2e, 0xa8, 0x07, 0x3f,
+ 0xe0, 0xe0, 0x1a, 0xe0, 0x24, 0x16, 0x44, 0x13, 0xd8, 0xc9, 0xd2, 0x01,
+ 0x20, 0xb1, 0xf0, 0x34, 0x02, 0xec, 0x50, 0x22, 0xdd, 0x36, 0x28, 0x01,
+ 0x2e, 0xcb, 0xf2, 0x5e, 0xe4, 0xfd, 0xff, 0xfc, 0xbd, 0xc5, 0xf4, 0xbd,
+ 0x24, 0xcb, 0xee, 0xa9, 0x35, 0x27, 0xcf, 0xdf, 0xc0, 0xdf, 0x2a, 0xb8,
+ 0x46, 0x7f, 0xed, 0x1b, 0x12, 0x1c, 0xdc, 0x16, 0xac, 0x0f, 0xd3, 0xbe,
+ 0x14, 0x0c, 0xe1, 0x54, 0x18, 0x42, 0xbd, 0x42, 0xc0, 0xd4, 0xc1, 0x19,
+ 0x08, 0x68, 0xf3, 0x28, 0x2d, 0x90, 0xd7, 0x05, 0x0b, 0x02, 0x07, 0x02,
+ 0x33, 0x13, 0x0b, 0xb9, 0xc8, 0x1a, 0xfe, 0xef, 0x2b, 0xdd, 0xdf, 0x3f,
+ 0xd4, 0xe0, 0xda, 0x1c, 0x15, 0x0d, 0x02, 0x31, 0xf4, 0x0a, 0x0c, 0xd8,
+ 0x2b, 0xb9, 0x27, 0x38, 0x0a, 0xf8, 0xfe, 0xc3, 0x0d, 0xc3, 0xe8, 0xfc,
+ 0x5c, 0xec, 0x31, 0x44, 0x4c, 0xd5, 0xc8, 0x1c, 0xf0, 0xa9, 0xc4, 0xc2,
+ 0xb6, 0x11, 0x37, 0xce, 0x26, 0x21, 0xb0, 0xf0, 0xe1, 0x16, 0xdf, 0xdf,
+ 0x1e, 0x55, 0xd1, 0x2d, 0xed, 0xe7, 0x0e, 0x30, 0xc4, 0xeb, 0x02, 0xe8,
+ 0x33, 0x54, 0xba, 0x23, 0xac, 0xe7, 0xd1, 0x13, 0xeb, 0x30, 0xe3, 0x3b,
+ 0xea, 0x3b, 0xef, 0x00, 0x4a, 0xe7, 0x19, 0xe3, 0x19, 0xff, 0x5f, 0x10,
+ 0xdd, 0xd4, 0x22, 0x13, 0x33, 0xc3, 0x55, 0x20, 0xda, 0xb5, 0x10, 0xeb,
+ 0xf5, 0x1e, 0x30, 0x1c, 0x23, 0x0f, 0x58, 0xc6, 0xd9, 0xf9, 0x3f, 0xcf,
+ 0xe8, 0xe5, 0xe9, 0xe8, 0xd5, 0x32, 0x62, 0xe0, 0xba, 0x48, 0x18, 0xe6,
+ 0xfb, 0xe3, 0x35, 0x50, 0xc7, 0xcb, 0xf7, 0x54, 0xb5, 0x9a, 0x2d, 0x20,
+ 0xd3, 0xee, 0x60, 0xb6, 0xc0, 0x2b, 0xd7, 0x1a, 0xe0, 0xdb, 0xe3, 0xb8,
+ 0xd2, 0x1a, 0xa9, 0xcf, 0xff, 0xd2, 0xd1, 0xe7, 0x2a, 0xe7, 0xf9, 0x17,
+ 0x8a, 0xba, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00,
+ 0xf4, 0x17, 0x00, 0x00, 0xf9, 0x21, 0x00, 0x00, 0xe4, 0xd9, 0xff, 0xff,
+ 0xd0, 0x03, 0x00, 0x00, 0x2d, 0x16, 0x00, 0x00, 0x6a, 0x90, 0xff, 0xff,
+ 0xad, 0xe2, 0xff, 0xff, 0x4a, 0xc0, 0xff, 0xff, 0x58, 0xa9, 0x00, 0x00,
+ 0xa6, 0x22, 0x00, 0x00, 0x6b, 0x92, 0xff, 0xff, 0xa5, 0x14, 0x00, 0x00,
+ 0x05, 0x28, 0x00, 0x00, 0x8b, 0x10, 0x00, 0x00, 0xaf, 0x37, 0x00, 0x00,
+ 0x7e, 0xb2, 0xff, 0xff, 0x7d, 0x84, 0xff, 0xff, 0xc1, 0x2b, 0x00, 0x00,
+ 0xf7, 0x6c, 0xff, 0xff, 0xe2, 0xfc, 0xff, 0xff, 0x61, 0xc9, 0xff, 0xff,
+ 0xb8, 0xe6, 0xff, 0xff, 0x82, 0xcc, 0xff, 0xff, 0xb7, 0x8c, 0xff, 0xff,
+ 0xad, 0xee, 0xff, 0xff, 0x6e, 0xe7, 0x00, 0x00, 0x28, 0x58, 0x00, 0x00,
+ 0x04, 0x6c, 0xff, 0xff, 0xcc, 0xef, 0xff, 0xff, 0xc0, 0x9e, 0xff, 0xff,
+ 0x4e, 0x99, 0xff, 0xff, 0x4a, 0x13, 0x00, 0x00, 0x10, 0xa8, 0xff, 0xff,
+ 0x86, 0x8f, 0x00, 0x00, 0x11, 0x20, 0x00, 0x00, 0x4b, 0xb3, 0xff, 0xff,
+ 0x7c, 0x54, 0xff, 0xff, 0xbb, 0xb8, 0x00, 0x00, 0x3e, 0xcd, 0xff, 0xff,
+ 0x67, 0x2d, 0x00, 0x00, 0x26, 0x8e, 0xff, 0xff, 0xee, 0x61, 0x00, 0x00,
+ 0x5e, 0x81, 0x00, 0x00, 0xdc, 0xcb, 0xff, 0xff, 0x1c, 0x81, 0xff, 0xff,
+ 0xed, 0x49, 0x00, 0x00, 0xbc, 0x29, 0x00, 0x00, 0x7d, 0x87, 0xff, 0xff,
+ 0x90, 0xf5, 0xff, 0xff, 0x3d, 0x36, 0x00, 0x00, 0x50, 0x02, 0x00, 0x00,
+ 0x42, 0xc7, 0xff, 0xff, 0x14, 0x23, 0x00, 0x00, 0x74, 0xc8, 0xff, 0xff,
+ 0x26, 0xc7, 0xff, 0xff, 0xde, 0x03, 0x00, 0x00, 0x38, 0x52, 0xff, 0xff,
+ 0x84, 0xc4, 0xff, 0xff, 0xa4, 0xea, 0xff, 0xff, 0x5f, 0x0d, 0x00, 0x00,
+ 0x5f, 0xda, 0xff, 0xff, 0xe9, 0xd6, 0xff, 0xff, 0x80, 0xf7, 0xff, 0xff,
+ 0x36, 0x00, 0x00, 0x00, 0x96, 0xbb, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00,
+ 0x00, 0x20, 0x00, 0x00, 0x8c, 0xf2, 0xdf, 0x16, 0xf3, 0xee, 0x47, 0xf7,
+ 0xda, 0xe0, 0xa7, 0x18, 0x4a, 0x37, 0xc3, 0x05, 0x15, 0x3c, 0xfd, 0xe4,
+ 0x4d, 0xbb, 0xc2, 0x5b, 0xc7, 0x0b, 0xae, 0x56, 0x57, 0xf4, 0x8e, 0x25,
+ 0x66, 0x09, 0x96, 0x2a, 0x2f, 0xa3, 0xd9, 0x4c, 0x38, 0x9c, 0xfb, 0xc9,
+ 0x56, 0x34, 0xb8, 0xff, 0xbd, 0x10, 0x59, 0xda, 0x05, 0x1c, 0x7f, 0x16,
+ 0xfd, 0xcf, 0xc5, 0xb1, 0x47, 0x30, 0x3b, 0x49, 0x00, 0x26, 0xc2, 0x2f,
+ 0xf9, 0xfe, 0xc4, 0x07, 0x2e, 0x7f, 0x4c, 0xc0, 0x5f, 0xf4, 0x10, 0xdd,
+ 0xda, 0x22, 0xec, 0x50, 0xfa, 0xdf, 0xb9, 0x00, 0xbe, 0x23, 0xd4, 0xd3,
+ 0x04, 0xf7, 0xab, 0x4e, 0x4f, 0x20, 0xb9, 0x1b, 0x1e, 0x31, 0x1c, 0x69,
+ 0x10, 0xb3, 0xbe, 0x07, 0x03, 0x1a, 0xb2, 0x5e, 0x48, 0x4d, 0xe1, 0x14,
+ 0x6b, 0x71, 0x0d, 0x24, 0xef, 0xea, 0x65, 0x01, 0x65, 0x01, 0x97, 0x18,
+ 0x2e, 0xb6, 0x53, 0xd8, 0x27, 0x31, 0xa1, 0x20, 0xb0, 0x14, 0xdf, 0x0b,
+ 0x08, 0x81, 0x1b, 0x39, 0x03, 0x4b, 0x64, 0x5b, 0xcb, 0x0b, 0x24, 0xe8,
+ 0xe3, 0x3d, 0xa1, 0xce, 0x64, 0x58, 0x1d, 0x0f, 0xc9, 0x98, 0xb6, 0x35,
+ 0x3d, 0xd9, 0xd5, 0x5b, 0xbb, 0x26, 0x0b, 0x5a, 0x08, 0xd4, 0x31, 0x5c,
+ 0x4c, 0x42, 0xc4, 0x2c, 0x5b, 0x43, 0x48, 0x33, 0xf2, 0xe8, 0x5a, 0xea,
+ 0x4b, 0x61, 0xc4, 0x5e, 0x07, 0x1c, 0x5a, 0x41, 0x4b, 0x01, 0xe6, 0xf5,
+ 0x6a, 0x49, 0xab, 0x4f, 0x13, 0xbe, 0xfd, 0x77, 0x74, 0x1b, 0xf7, 0x2f,
+ 0x1a, 0x02, 0x48, 0x9b, 0x9a, 0xfb, 0x50, 0x08, 0x6e, 0x98, 0x63, 0x4e,
+ 0x61, 0xfd, 0xfc, 0xd6, 0x52, 0x34, 0xbd, 0x69, 0xc1, 0xcd, 0x2b, 0x09,
+ 0xc3, 0x31, 0xcf, 0x81, 0x56, 0xc5, 0x0d, 0x3e, 0x98, 0xea, 0x3f, 0x2d,
+ 0xa8, 0x9a, 0x1c, 0xe9, 0xcd, 0xd8, 0x1e, 0xe0, 0xaf, 0xcc, 0xe2, 0xab,
+ 0xd5, 0xf5, 0x0f, 0x05, 0xeb, 0xf2, 0x03, 0x20, 0xdb, 0x9a, 0x0c, 0x08,
+ 0x58, 0xf8, 0x31, 0x56, 0xfc, 0x94, 0x3f, 0x10, 0xcf, 0x63, 0x3e, 0xcc,
+ 0x1a, 0x57, 0x28, 0x03, 0xe8, 0xc9, 0xbe, 0xeb, 0x9b, 0x40, 0x03, 0xbe,
+ 0xa5, 0xe0, 0xd1, 0x81, 0xcd, 0x2a, 0x52, 0x0e, 0xa0, 0x1f, 0x48, 0x40,
+ 0x72, 0x3f, 0x5d, 0xce, 0x56, 0x30, 0xcf, 0xfb, 0xc8, 0xc1, 0xdd, 0x11,
+ 0xf0, 0x64, 0x99, 0xd5, 0x15, 0xe9, 0xc1, 0xdf, 0x30, 0xbd, 0x5d, 0x81,
+ 0xb6, 0x00, 0x4a, 0x2f, 0x36, 0xd4, 0xb1, 0x06, 0x1f, 0x30, 0xd3, 0x4b,
+ 0x09, 0x12, 0x25, 0xe9, 0xe4, 0xb9, 0xdf, 0x45, 0x3c, 0xfd, 0xa1, 0xd8,
+ 0x57, 0xc0, 0xdd, 0x29, 0x49, 0xdf, 0x20, 0x0b, 0x49, 0x4f, 0xec, 0x08,
+ 0xef, 0x9c, 0xa8, 0x4d, 0x57, 0x06, 0x16, 0x43, 0xc6, 0x05, 0x3d, 0x95,
+ 0xb4, 0x37, 0x9b, 0xa0, 0xea, 0xea, 0xfa, 0x30, 0x1a, 0x4e, 0xca, 0xce,
+ 0xeb, 0x22, 0xec, 0x31, 0xd8, 0xc9, 0x0b, 0x17, 0xca, 0x81, 0x1a, 0xde,
+ 0x07, 0xef, 0x47, 0x2f, 0xca, 0xe3, 0xc9, 0x0e, 0x48, 0x0e, 0xa2, 0x8b,
+ 0x0a, 0x1b, 0x30, 0xbe, 0x3c, 0xdf, 0x10, 0x26, 0xee, 0x4e, 0x64, 0x45,
+ 0x50, 0xf3, 0x58, 0x9a, 0x08, 0xee, 0x16, 0x3c, 0xe2, 0x27, 0xbb, 0x02,
+ 0xf7, 0xe8, 0x41, 0xc9, 0x22, 0x4f, 0xbc, 0xe1, 0xc1, 0x35, 0xf8, 0xe7,
+ 0xd3, 0x7f, 0x31, 0x2e, 0xdd, 0x07, 0x14, 0xe4, 0xd6, 0x4b, 0xd7, 0xdb,
+ 0xf0, 0x04, 0xd6, 0x21, 0x72, 0xc3, 0x61, 0x66, 0xc1, 0x34, 0x0f, 0xf9,
+ 0x38, 0xa2, 0x29, 0x8e, 0x09, 0xa3, 0x60, 0xee, 0x3b, 0x32, 0x60, 0x98,
+ 0xda, 0x9c, 0x98, 0x6f, 0x07, 0xce, 0xe2, 0x06, 0xa7, 0xc2, 0x97, 0xdc,
+ 0x64, 0x20, 0x2f, 0x1d, 0xf4, 0x2b, 0xe0, 0xe7, 0xa2, 0x9a, 0xd8, 0xfd,
+ 0xf6, 0xdb, 0xb0, 0xc3, 0xf7, 0x21, 0x09, 0xe4, 0xc0, 0x54, 0xe8, 0xff,
+ 0x01, 0xa1, 0xed, 0x58, 0x4e, 0x31, 0x29, 0xc9, 0x1a, 0x3d, 0x0b, 0x1a,
+ 0x2c, 0xbf, 0xe0, 0x97, 0xa8, 0x4a, 0xc0, 0x4a, 0x26, 0x21, 0xf8, 0x03,
+ 0x3a, 0xed, 0x39, 0x46, 0x45, 0xe0, 0xbf, 0xbb, 0x26, 0xde, 0xc0, 0x03,
+ 0x35, 0xd7, 0x17, 0xfa, 0x5b, 0xe9, 0x12, 0x03, 0xbf, 0xf1, 0xbf, 0x41,
+ 0xb2, 0x7f, 0x34, 0xf0, 0xef, 0x2c, 0x66, 0xc2, 0x3c, 0x02, 0x0d, 0xff,
+ 0x64, 0x06, 0x0d, 0x17, 0xff, 0x69, 0x97, 0xb1, 0x56, 0x66, 0xa4, 0x25,
+ 0x08, 0x8f, 0x27, 0x40, 0x5f, 0x5d, 0xb2, 0xbb, 0x52, 0xb9, 0xf6, 0xa3,
+ 0xad, 0xb3, 0x22, 0x50, 0x4f, 0xd4, 0x4b, 0xa0, 0xfa, 0x41, 0xb3, 0x7f,
+ 0xc3, 0x0d, 0x33, 0x21, 0xed, 0x5d, 0xc8, 0xa9, 0x26, 0x24, 0xb7, 0x17,
+ 0xbc, 0xaa, 0x3d, 0x31, 0x25, 0xf5, 0x1e, 0x51, 0xda, 0x17, 0x96, 0xe5,
+ 0x20, 0xa4, 0x91, 0xeb, 0xe2, 0xf3, 0x03, 0xb2, 0x58, 0x20, 0x15, 0x14,
+ 0xf9, 0x30, 0x29, 0xee, 0xaa, 0x0c, 0x2c, 0x1d, 0x23, 0xff, 0x3d, 0x44,
+ 0xcc, 0x54, 0xa4, 0xf6, 0x66, 0x9f, 0xba, 0x24, 0x12, 0x09, 0x31, 0x32,
+ 0xef, 0x43, 0x3e, 0x40, 0x8d, 0xb0, 0xeb, 0x2e, 0xff, 0x92, 0xf3, 0xe9,
+ 0xe4, 0x7f, 0xfc, 0xcd, 0x3a, 0x68, 0x1a, 0xf7, 0x04, 0x3f, 0xad, 0x44,
+ 0xdc, 0x2c, 0xc7, 0x4a, 0xf7, 0xf1, 0xeb, 0x81, 0xd7, 0x21, 0x3f, 0x43,
+ 0x09, 0xb4, 0xb9, 0xf5, 0x05, 0xc5, 0xe7, 0x31, 0xd0, 0x9f, 0x57, 0xd6,
+ 0xea, 0xdb, 0xad, 0xaf, 0xc0, 0x13, 0x0a, 0x2d, 0x94, 0x66, 0x0c, 0x47,
+ 0xaa, 0xd2, 0x1a, 0x75, 0xe1, 0x14, 0x2e, 0x07, 0x54, 0x17, 0xa5, 0xc1,
+ 0xb4, 0x29, 0x4f, 0xf3, 0x73, 0xcc, 0x30, 0x04, 0x6d, 0xf0, 0x94, 0x04,
+ 0x2e, 0x5f, 0x3f, 0x15, 0xfc, 0xaf, 0xe6, 0xfc, 0xca, 0x38, 0x49, 0xf2,
+ 0x4a, 0x07, 0xb4, 0x4a, 0xef, 0xf9, 0x13, 0xdb, 0xbb, 0x36, 0x97, 0xef,
+ 0xd4, 0x57, 0xdd, 0x3c, 0x31, 0x0c, 0x03, 0xe9, 0xfd, 0xf3, 0x58, 0x17,
+ 0x2b, 0xd4, 0xe5, 0xb2, 0x21, 0x2f, 0xb4, 0x41, 0xa2, 0xc1, 0x4a, 0x14,
+ 0x4b, 0x3e, 0x27, 0x81, 0xd1, 0x0d, 0x20, 0xf0, 0x40, 0xad, 0xfb, 0x3e,
+ 0xdd, 0xe5, 0x34, 0x0b, 0x24, 0x25, 0xcc, 0x2d, 0xdf, 0xd7, 0xcd, 0x54,
+ 0xf1, 0xa9, 0x19, 0xf0, 0x22, 0x32, 0xf4, 0x7d, 0x0e, 0xf1, 0x4d, 0x85,
+ 0xa0, 0xbd, 0xe3, 0xac, 0x97, 0xe7, 0x1b, 0xc5, 0x04, 0xef, 0x55, 0xeb,
+ 0xb4, 0xba, 0xc9, 0x63, 0x4b, 0x39, 0x0b, 0x3a, 0x0e, 0xdd, 0x59, 0x65,
+ 0x36, 0x0d, 0xe0, 0x23, 0xd8, 0x61, 0x34, 0xc3, 0x60, 0xea, 0xad, 0x03,
+ 0x0a, 0x0a, 0xd2, 0x58, 0x7f, 0xb6, 0xcf, 0xfb, 0x57, 0xd8, 0x15, 0xde,
+ 0xed, 0x1e, 0xbf, 0x3b, 0xcd, 0x07, 0x35, 0x0f, 0x55, 0x3e, 0x0b, 0x66,
+ 0xb5, 0xd6, 0xef, 0x43, 0xa5, 0x08, 0xf0, 0xe2, 0x1e, 0x12, 0xfb, 0x6d,
+ 0xc0, 0x0e, 0xa8, 0x02, 0x01, 0x52, 0xeb, 0xf2, 0x0b, 0x40, 0x1f, 0x5d,
+ 0x45, 0xc1, 0xc3, 0x7f, 0xe4, 0xa1, 0x30, 0xa9, 0xfc, 0x0f, 0x82, 0x38,
+ 0x5f, 0x33, 0x3b, 0xba, 0x1d, 0x71, 0xac, 0x47, 0x4d, 0xc6, 0xa7, 0x5f,
+ 0xe9, 0xec, 0x6e, 0x39, 0xb2, 0xcc, 0xb0, 0xb8, 0x10, 0x26, 0x42, 0x9c,
+ 0x8b, 0xb2, 0x75, 0xe0, 0xea, 0x68, 0xca, 0x42, 0x41, 0x06, 0x51, 0xf1,
+ 0x11, 0xb9, 0x0b, 0x59, 0x1f, 0x56, 0xf4, 0xe9, 0xc7, 0x2a, 0x45, 0x95,
+ 0x73, 0xb3, 0xd6, 0xc9, 0x66, 0x81, 0x40, 0xe9, 0xa9, 0xfc, 0xb2, 0x67,
+ 0xe3, 0x37, 0x40, 0x13, 0x24, 0x0f, 0xaa, 0x10, 0x2e, 0xe9, 0x9f, 0x16,
+ 0x40, 0xa7, 0xc0, 0x27, 0xa8, 0xc1, 0x08, 0x12, 0xf6, 0xd8, 0xb1, 0xc8,
+ 0x31, 0xfa, 0x9b, 0xc1, 0xe4, 0xf9, 0xc5, 0xbb, 0xf7, 0x9f, 0xcb, 0xee,
+ 0xdf, 0xdf, 0xf3, 0x0d, 0xd5, 0x8e, 0xce, 0x0e, 0x5c, 0xc7, 0x40, 0xbd,
+ 0x27, 0x2c, 0xe7, 0xf4, 0x5b, 0xaf, 0xa6, 0x21, 0xfb, 0x1b, 0xe7, 0xe0,
+ 0x2d, 0x4e, 0x4e, 0xc1, 0xd1, 0x0c, 0xb9, 0x42, 0x13, 0xdd, 0x35, 0x14,
+ 0x7f, 0xe5, 0x0f, 0xd5, 0xf6, 0x57, 0x4a, 0x20, 0xc9, 0x65, 0x19, 0x32,
+ 0xcd, 0x5d, 0xb9, 0xc9, 0x4b, 0xf6, 0x18, 0xb2, 0x5d, 0x40, 0xf6, 0xc6,
+ 0x7d, 0xca, 0x31, 0xa8, 0x0c, 0xf4, 0x4f, 0x03, 0x17, 0x1d, 0x43, 0x06,
+ 0x63, 0xab, 0x26, 0x2f, 0xe7, 0xd3, 0xab, 0x2e, 0x74, 0xae, 0xea, 0x31,
+ 0x22, 0x22, 0x0f, 0x2e, 0xdd, 0xf3, 0x42, 0xf1, 0xcf, 0x51, 0xbd, 0x16,
+ 0xbf, 0x33, 0xe8, 0xbc, 0x77, 0x54, 0xe4, 0x07, 0x4e, 0x28, 0x62, 0x8c,
+ 0xe7, 0x2a, 0x81, 0x33, 0x0b, 0x46, 0x07, 0xc6, 0xff, 0xdd, 0x9a, 0x1e,
+ 0x00, 0x43, 0xe9, 0x54, 0x11, 0x25, 0x00, 0x9f, 0x2a, 0x45, 0xfa, 0xf2,
+ 0xaa, 0xcd, 0xe0, 0xeb, 0x59, 0x52, 0x38, 0xf0, 0xd3, 0x1f, 0xce, 0xe9,
+ 0x2e, 0xf7, 0x17, 0xfe, 0xbd, 0xb2, 0x3a, 0xf6, 0xb0, 0xd6, 0xc6, 0xc1,
+ 0xe9, 0xce, 0x50, 0xeb, 0xef, 0x36, 0x2f, 0xf5, 0x63, 0x7f, 0xc6, 0x46,
+ 0xda, 0x06, 0x29, 0x36, 0xe5, 0x40, 0xf2, 0xe3, 0xf4, 0xb9, 0xff, 0xd0,
+ 0x3a, 0xcd, 0xd6, 0xea, 0xce, 0x37, 0x5f, 0x81, 0xd9, 0xe9, 0x38, 0x10,
+ 0x49, 0x05, 0xeb, 0xee, 0xdc, 0xd0, 0xd3, 0xc9, 0x40, 0x2d, 0xd5, 0xee,
+ 0x39, 0x9a, 0x4d, 0x08, 0x03, 0xdd, 0xaf, 0xf7, 0xbc, 0x67, 0x39, 0x25,
+ 0xeb, 0x95, 0xc6, 0x03, 0xeb, 0x13, 0x09, 0xbe, 0x14, 0x60, 0x20, 0xb1,
+ 0x05, 0xb0, 0xda, 0x00, 0xbb, 0xf1, 0x1d, 0xfb, 0xd0, 0x32, 0x2c, 0xd5,
+ 0xfb, 0xba, 0xda, 0xaa, 0xf7, 0x5c, 0xad, 0xd7, 0x21, 0x2b, 0xb9, 0xc1,
+ 0xe0, 0xbd, 0x2c, 0x6d, 0x48, 0x5e, 0x81, 0x56, 0x0a, 0xaa, 0x37, 0x16,
+ 0xa5, 0x5d, 0x1d, 0x39, 0xfb, 0x9a, 0xee, 0xc6, 0x4d, 0x47, 0xb5, 0xcc,
+ 0x2a, 0xc3, 0x46, 0xe3, 0x2d, 0x31, 0xbe, 0x44, 0xd9, 0xe8, 0x22, 0xc4,
+ 0xe8, 0xc0, 0x07, 0x5a, 0xc0, 0x9b, 0xe7, 0x0a, 0x98, 0xbe, 0x05, 0xea,
+ 0xc8, 0x03, 0x9a, 0x8d, 0xda, 0xaf, 0x36, 0x41, 0x1d, 0xe9, 0x3f, 0xb2,
+ 0x25, 0x47, 0x1c, 0x03, 0xfb, 0x56, 0x0e, 0x09, 0x9a, 0x36, 0x0a, 0x13,
+ 0xfb, 0x21, 0xaf, 0x01, 0xb2, 0x54, 0x2d, 0xc7, 0xfd, 0xe8, 0x81, 0x17,
+ 0xa5, 0x26, 0xf6, 0x14, 0xa4, 0x01, 0x4a, 0x69, 0x4d, 0xe0, 0x39, 0x52,
+ 0xc3, 0x0f, 0xd8, 0x64, 0x4d, 0xdc, 0x0c, 0x43, 0xf1, 0x4a, 0x25, 0x39,
+ 0x1c, 0xd5, 0x08, 0x0d, 0xdc, 0xf4, 0xda, 0xd6, 0xac, 0xa7, 0xb6, 0xa3,
+ 0xd6, 0x19, 0x23, 0x17, 0x7a, 0xfe, 0x2e, 0xf7, 0x7f, 0x46, 0xa6, 0xc1,
+ 0xa2, 0xbe, 0x75, 0x5f, 0xed, 0xcf, 0xf8, 0x95, 0x51, 0x0f, 0xf6, 0x94,
+ 0xcd, 0xe7, 0xe6, 0xcc, 0xf7, 0xc3, 0xe8, 0xb1, 0xb7, 0xde, 0x03, 0x1c,
+ 0xda, 0x4b, 0xff, 0x98, 0x27, 0x9b, 0xaf, 0xf6, 0x59, 0xb3, 0x1e, 0x33,
+ 0x77, 0xc3, 0x38, 0x54, 0xf4, 0x09, 0x41, 0x4b, 0xfe, 0x6e, 0x1a, 0x07,
+ 0xb9, 0x28, 0xb3, 0x35, 0xe0, 0x31, 0x29, 0x34, 0x5b, 0x52, 0xe0, 0xb1,
+ 0x28, 0x13, 0xef, 0x5f, 0x50, 0x11, 0x8b, 0xd8, 0xdf, 0xaf, 0x0f, 0x13,
+ 0xd6, 0x13, 0xf1, 0x2d, 0x70, 0xf7, 0x06, 0x47, 0x79, 0xed, 0x2c, 0xe3,
+ 0xd7, 0x0b, 0xb5, 0x81, 0xe0, 0x1b, 0x1d, 0x06, 0xb2, 0x40, 0x4a, 0xae,
+ 0x91, 0x41, 0xa8, 0xbb, 0xc7, 0x28, 0xd3, 0x39, 0x9c, 0x92, 0xd2, 0xad,
+ 0xe6, 0x54, 0xff, 0x61, 0xb3, 0xc1, 0x2b, 0x56, 0x85, 0x24, 0xc5, 0x98,
+ 0x07, 0x2a, 0x2c, 0x43, 0x00, 0x05, 0xec, 0xab, 0xd2, 0xd4, 0xe9, 0xff,
+ 0x9b, 0xd1, 0x60, 0x12, 0x6d, 0xb9, 0xf0, 0x4b, 0x40, 0xb6, 0xa2, 0x09,
+ 0x2b, 0xcb, 0x51, 0xeb, 0xbe, 0xd7, 0x88, 0x7f, 0x8b, 0xb5, 0x05, 0x95,
+ 0x1f, 0x0f, 0xc3, 0xd5, 0xf1, 0x2d, 0x26, 0x75, 0x37, 0x51, 0xa2, 0x41,
+ 0xdf, 0x6d, 0xb3, 0x0f, 0xee, 0xcf, 0x41, 0x38, 0x0f, 0xd3, 0xea, 0x2e,
+ 0xcd, 0x4c, 0x13, 0xd4, 0xac, 0xd1, 0x4b, 0xfd, 0x2a, 0x22, 0x63, 0x16,
+ 0xed, 0x34, 0xc5, 0x06, 0xd2, 0x27, 0x21, 0x17, 0xe4, 0x35, 0xa1, 0xcb,
+ 0x0d, 0x27, 0xf9, 0xe0, 0x19, 0x25, 0xe5, 0x01, 0x7f, 0x4f, 0xb4, 0xe2,
+ 0xda, 0x98, 0x31, 0x39, 0xc3, 0x0e, 0xe6, 0x49, 0x4a, 0x11, 0xe3, 0x0b,
+ 0x3d, 0x3e, 0xd9, 0xf5, 0xb4, 0x07, 0x46, 0x41, 0x0a, 0xf5, 0xf1, 0x11,
+ 0x0f, 0xce, 0xef, 0x13, 0x10, 0x29, 0xcc, 0xb5, 0xa1, 0xef, 0xe1, 0xa0,
+ 0xff, 0xfd, 0x30, 0x1f, 0x0e, 0x2b, 0x20, 0x2b, 0x56, 0x22, 0x37, 0xe7,
+ 0x2a, 0xa1, 0xf0, 0x1a, 0xeb, 0x23, 0x03, 0xf7, 0xe4, 0x6c, 0xd8, 0xe0,
+ 0x03, 0x95, 0x25, 0xf5, 0x27, 0x29, 0xca, 0xc5, 0xc0, 0xa2, 0x28, 0xa8,
+ 0xc7, 0xaf, 0x4e, 0x4e, 0x18, 0xef, 0xb5, 0xc7, 0x39, 0xa2, 0xda, 0x81,
+ 0xba, 0x11, 0x07, 0xf2, 0xa3, 0x20, 0x4f, 0xc5, 0x45, 0x47, 0xee, 0x47,
+ 0xd3, 0xdc, 0xfb, 0xf4, 0xdc, 0x91, 0x33, 0xe5, 0xc4, 0x0c, 0xca, 0x49,
+ 0xf1, 0xe6, 0x4b, 0xd2, 0x29, 0x6a, 0xf6, 0xd8, 0x70, 0xd8, 0x44, 0xdd,
+ 0x30, 0xd0, 0xc3, 0xbc, 0xe2, 0x28, 0xe6, 0x52, 0x4d, 0x1f, 0x24, 0xbe,
+ 0xdf, 0x7f, 0x55, 0xd7, 0xea, 0xe2, 0xb8, 0x08, 0x0a, 0x5b, 0xeb, 0x36,
+ 0xe5, 0x43, 0x9e, 0x88, 0x1c, 0xa4, 0xd7, 0x59, 0xd3, 0xd2, 0xd4, 0xcd,
+ 0x29, 0x33, 0xa3, 0x2a, 0x2f, 0x02, 0x81, 0x25, 0x3c, 0x4c, 0x2b, 0x1f,
+ 0xa6, 0xce, 0xbc, 0xcf, 0xf7, 0x10, 0x47, 0xf6, 0x03, 0xba, 0xbe, 0xe6,
+ 0x0d, 0xfc, 0xc0, 0x3c, 0x4c, 0x4d, 0xcc, 0xb4, 0x11, 0xaf, 0xe9, 0x42,
+ 0xef, 0xc4, 0x51, 0x45, 0x36, 0x20, 0x19, 0xa5, 0x23, 0x2f, 0x29, 0x52,
+ 0x49, 0xe4, 0x33, 0x2e, 0xe7, 0xf4, 0x19, 0xe8, 0xe7, 0xeb, 0xc4, 0xae,
+ 0xbe, 0xe0, 0x0e, 0xb8, 0xbe, 0x61, 0xc1, 0x11, 0x0f, 0xdd, 0xd3, 0x90,
+ 0x16, 0x28, 0x25, 0xf1, 0xec, 0xb7, 0xc0, 0x05, 0x31, 0x4e, 0x2f, 0xea,
+ 0x1e, 0x42, 0x0f, 0x2b, 0xdd, 0x3d, 0x13, 0x02, 0x38, 0x21, 0x40, 0x05,
+ 0x11, 0xb9, 0x40, 0x81, 0xe7, 0xda, 0xc4, 0x42, 0x28, 0xff, 0x3a, 0x1d,
+ 0xcb, 0x4c, 0x43, 0xba, 0xf3, 0xb2, 0xf2, 0x3d, 0xcb, 0x28, 0xea, 0xa2,
+ 0xdb, 0xb3, 0x62, 0x08, 0xee, 0xcf, 0x44, 0xe0, 0xf5, 0xe0, 0x0d, 0x52,
+ 0xd8, 0x39, 0x0b, 0x30, 0x14, 0x17, 0xce, 0xfa, 0xef, 0x53, 0xd6, 0xd1,
+ 0x69, 0x7f, 0x32, 0x0d, 0x13, 0x28, 0xc4, 0xf0, 0x02, 0xc5, 0x4a, 0xe0,
+ 0xd7, 0xdf, 0x2d, 0xbc, 0x52, 0xdc, 0x0d, 0xe8, 0x18, 0x15, 0x1f, 0x1f,
+ 0x01, 0x5c, 0x9d, 0x2d, 0xf0, 0x38, 0xa4, 0xe3, 0xeb, 0x07, 0xdf, 0x2b,
+ 0xbb, 0x4a, 0xd2, 0x68, 0xc9, 0x54, 0xde, 0xac, 0x3c, 0x37, 0x78, 0x30,
+ 0xae, 0x00, 0xe9, 0x9b, 0x37, 0x71, 0x3c, 0x20, 0x35, 0x19, 0x70, 0x9f,
+ 0x9d, 0xfa, 0x28, 0x60, 0xcd, 0x21, 0x39, 0x49, 0xa6, 0x67, 0x18, 0x70,
+ 0xe2, 0x46, 0xeb, 0xd4, 0x9b, 0xd9, 0x06, 0x2e, 0x88, 0x9f, 0xba, 0x53,
+ 0xa6, 0x12, 0xb0, 0x5e, 0xc6, 0x27, 0xaa, 0xba, 0x1f, 0x07, 0x1e, 0xfe,
+ 0xc9, 0x3a, 0x51, 0x14, 0x4f, 0xe8, 0xb0, 0x5d, 0x7f, 0x43, 0x61, 0x9d,
+ 0xb1, 0x3f, 0x44, 0xce, 0x26, 0xd5, 0xdc, 0x82, 0x29, 0x0f, 0x2c, 0x2a,
+ 0x3c, 0x86, 0x95, 0x5a, 0xb9, 0x23, 0x7b, 0xf5, 0x08, 0x57, 0x3c, 0xfd,
+ 0x66, 0xf0, 0xfa, 0xde, 0x65, 0x36, 0x1c, 0x1f, 0xba, 0x3a, 0xea, 0x2c,
+ 0x35, 0x01, 0xfe, 0xe5, 0xbf, 0x70, 0xfd, 0xca, 0x91, 0xb1, 0x46, 0x3b,
+ 0x5d, 0x5c, 0x30, 0xd5, 0xdd, 0x20, 0xed, 0x0c, 0x46, 0x7f, 0x27, 0x8a,
+ 0xb3, 0x7b, 0xe7, 0xb0, 0x00, 0x4d, 0x5a, 0x66, 0x2a, 0xf7, 0x6a, 0x4e,
+ 0xe9, 0xfa, 0xc3, 0x56, 0x19, 0x3e, 0x0d, 0x1c, 0xc0, 0x0a, 0x3b, 0xd8,
+ 0x02, 0x46, 0x49, 0xe7, 0xb3, 0x32, 0xb1, 0x14, 0x3d, 0xdb, 0x40, 0xf4,
+ 0x41, 0x3c, 0xcc, 0x41, 0x0a, 0x64, 0x2b, 0x64, 0xbf, 0xb5, 0x1d, 0x4a,
+ 0xb6, 0x6d, 0x00, 0x30, 0xf7, 0x0b, 0x15, 0x13, 0xb0, 0xdd, 0x90, 0xd2,
+ 0xf3, 0x74, 0x81, 0x3c, 0x78, 0x09, 0x32, 0xb4, 0xdd, 0x0c, 0x6b, 0x77,
+ 0x9c, 0x5d, 0x35, 0x14, 0x55, 0xd5, 0xb7, 0x04, 0xef, 0x31, 0x37, 0xcc,
+ 0x17, 0x01, 0x4a, 0x62, 0xaa, 0x62, 0xc3, 0xd1, 0xa7, 0xb8, 0xd1, 0x36,
+ 0x0c, 0x7f, 0xd2, 0xad, 0xd3, 0xf7, 0xe0, 0x60, 0x6b, 0xfc, 0x31, 0x45,
+ 0x3e, 0x6b, 0x65, 0xc0, 0xd1, 0x0f, 0x40, 0x69, 0x6a, 0x42, 0x39, 0x51,
+ 0x60, 0xf8, 0x0a, 0x09, 0xbf, 0x43, 0x34, 0x65, 0xcd, 0x89, 0xdf, 0x16,
+ 0xd2, 0x23, 0xb2, 0x6a, 0x1e, 0x1e, 0xe9, 0x08, 0x23, 0x67, 0x23, 0x38,
+ 0x6c, 0xb7, 0x59, 0x92, 0x96, 0x66, 0x62, 0xda, 0x27, 0x06, 0x92, 0x41,
+ 0xb3, 0x10, 0x0b, 0x05, 0x08, 0x1c, 0x03, 0x60, 0xb0, 0x56, 0x1c, 0x0c,
+ 0x65, 0xec, 0xb2, 0xf7, 0x06, 0xe3, 0x7f, 0x4b, 0x00, 0xd7, 0x2e, 0x5e,
+ 0x15, 0x46, 0xeb, 0xda, 0xfc, 0x3f, 0x02, 0x6a, 0xec, 0x52, 0x46, 0xc4,
+ 0x43, 0x32, 0x45, 0xc2, 0x38, 0x58, 0x3a, 0x16, 0xf0, 0xf7, 0x1f, 0xc5,
+ 0xd1, 0x7f, 0x38, 0x21, 0xf1, 0xc0, 0x2d, 0x0a, 0xa8, 0x16, 0x1d, 0xfc,
+ 0x45, 0x5a, 0xca, 0x4c, 0x08, 0x4b, 0x99, 0x17, 0xfb, 0xc1, 0x37, 0x71,
+ 0xb1, 0xda, 0x06, 0xb0, 0xab, 0xf0, 0x88, 0x1e, 0x4a, 0xd3, 0x4d, 0x18,
+ 0xeb, 0x51, 0x18, 0x23, 0x46, 0x38, 0xd4, 0x1e, 0xe7, 0x4d, 0x00, 0x18,
+ 0xca, 0x24, 0x3d, 0x5b, 0xdd, 0x3f, 0x56, 0xd1, 0x3e, 0xfd, 0xc1, 0x23,
+ 0xdb, 0xec, 0x58, 0x22, 0xff, 0xe2, 0xc7, 0x5d, 0x39, 0x1b, 0x02, 0xf2,
+ 0x09, 0xc5, 0xc8, 0xc5, 0x1c, 0x0d, 0xd4, 0xc0, 0x14, 0x35, 0x0f, 0x23,
+ 0xc5, 0x01, 0xaf, 0x2b, 0xdd, 0x3e, 0x19, 0xdb, 0x24, 0x21, 0x0e, 0x59,
+ 0xd1, 0x0e, 0xed, 0x12, 0x11, 0x1d, 0xf3, 0x18, 0x24, 0xfb, 0xb2, 0x4a,
+ 0xb4, 0x0c, 0xf5, 0x43, 0xbf, 0x15, 0x81, 0x70, 0xdc, 0xcb, 0x54, 0xea,
+ 0xdd, 0xe5, 0x08, 0x04, 0xe1, 0x02, 0x45, 0xae, 0xdf, 0xe8, 0xe5, 0x05,
+ 0x1c, 0x4a, 0x55, 0xe0, 0xb9, 0x19, 0x7a, 0x77, 0x8d, 0x9e, 0x1a, 0x4b,
+ 0xc9, 0xc2, 0x24, 0xda, 0xfb, 0x63, 0x81, 0xb2, 0x6f, 0x06, 0xeb, 0xc3,
+ 0x6b, 0xe2, 0xa4, 0x03, 0xac, 0x15, 0x55, 0xab, 0x35, 0xcb, 0xdf, 0xaf,
+ 0x7b, 0x45, 0x2b, 0xfe, 0x34, 0xaf, 0x1b, 0xf8, 0xe2, 0x2e, 0xca, 0xd1,
+ 0x0c, 0x66, 0x31, 0x27, 0x20, 0xde, 0x19, 0x31, 0xf9, 0x63, 0x07, 0xe9,
+ 0x9f, 0x45, 0x00, 0x5b, 0x34, 0xd0, 0x3b, 0xef, 0x78, 0x98, 0x4b, 0x40,
+ 0xbf, 0xd5, 0x53, 0x30, 0xed, 0x4f, 0x63, 0x2a, 0xd6, 0x17, 0x00, 0x9e,
+ 0x98, 0x7f, 0xeb, 0x8b, 0x1c, 0xe2, 0x79, 0xd7, 0xa8, 0xe0, 0x10, 0x22,
+ 0x25, 0x07, 0x17, 0xf1, 0x07, 0x51, 0x3a, 0xe4, 0x49, 0xb4, 0x0e, 0xa1,
+ 0x42, 0xb2, 0x37, 0xb8, 0xb2, 0xed, 0xc3, 0x4e, 0x12, 0x65, 0xed, 0xb9,
+ 0xd6, 0xc5, 0xb7, 0xbe, 0xc8, 0xa2, 0xc7, 0x1b, 0x22, 0x30, 0xc1, 0x30,
+ 0x1f, 0xd2, 0x01, 0xdc, 0x23, 0x17, 0x44, 0xfa, 0xd8, 0x56, 0x0b, 0x10,
+ 0x27, 0x2d, 0x46, 0xe2, 0x48, 0x03, 0xff, 0xf9, 0xec, 0x0c, 0x32, 0x2a,
+ 0x20, 0xfd, 0xbe, 0xf9, 0x30, 0x5d, 0xd5, 0x3f, 0xf5, 0x0a, 0xb0, 0xf5,
+ 0xa0, 0x51, 0x5a, 0x07, 0xb8, 0xf8, 0x09, 0xa0, 0x81, 0x04, 0xeb, 0x29,
+ 0xd6, 0x06, 0x22, 0xcb, 0xe6, 0x81, 0x3f, 0x2a, 0xc0, 0x23, 0x25, 0x67,
+ 0x53, 0x1b, 0xfa, 0xa4, 0xd4, 0x00, 0x4a, 0xaa, 0xf4, 0x31, 0xb4, 0x14,
+ 0x46, 0xc4, 0x16, 0x3b, 0xc4, 0xe3, 0xae, 0xeb, 0xda, 0xe9, 0xc7, 0x35,
+ 0x1e, 0x21, 0x47, 0x25, 0xc6, 0x07, 0x5a, 0x27, 0xd1, 0xce, 0x8c, 0x07,
+ 0x14, 0xe4, 0x05, 0xcc, 0xb8, 0xdb, 0x35, 0x2f, 0x56, 0xf4, 0x2e, 0x56,
+ 0x44, 0x29, 0xd9, 0x1e, 0xcc, 0x21, 0xf6, 0xf7, 0x2d, 0x2a, 0xaa, 0x0b,
+ 0xf9, 0xf7, 0xf4, 0x29, 0xf7, 0xb3, 0x25, 0x15, 0x3b, 0xac, 0x41, 0xf5,
+ 0x81, 0xfe, 0x24, 0x35, 0x63, 0xd2, 0x13, 0x38, 0xf6, 0xd2, 0xef, 0x36,
+ 0xe9, 0xc6, 0xf4, 0xa7, 0xbd, 0xeb, 0xc3, 0x53, 0x8c, 0x0b, 0xbe, 0x9b,
+ 0x4a, 0x14, 0x9a, 0x5d, 0x56, 0x6f, 0x72, 0xd5, 0x61, 0xe7, 0x56, 0xea,
+ 0x3a, 0x13, 0x96, 0xdd, 0xb3, 0xcc, 0xfd, 0xf9, 0x1b, 0xad, 0x09, 0xfc,
+ 0x54, 0xfc, 0x90, 0xfb, 0x81, 0x1f, 0x56, 0xdf, 0x13, 0x3e, 0xfe, 0xa4,
+ 0x66, 0x2c, 0xde, 0x13, 0xef, 0x11, 0xb7, 0xc5, 0xda, 0x6e, 0xe5, 0xe5,
+ 0x1b, 0x14, 0xf9, 0x2e, 0x51, 0x03, 0xe5, 0xf8, 0x77, 0xa4, 0x17, 0x79,
+ 0xf8, 0x14, 0x45, 0xf1, 0xea, 0xa8, 0xc3, 0xab, 0xac, 0x2e, 0x4a, 0xd2,
+ 0x15, 0xe8, 0xe5, 0xa8, 0xa2, 0x14, 0x6b, 0x29, 0xb7, 0xde, 0xbc, 0xc3,
+ 0xc7, 0xa4, 0xc6, 0x37, 0xe1, 0x27, 0x3c, 0xef, 0x30, 0xfc, 0xbc, 0xa0,
+ 0x40, 0x12, 0xd6, 0x09, 0x16, 0xe2, 0x0a, 0xc7, 0xc2, 0xdf, 0xd3, 0x29,
+ 0xe8, 0xf8, 0x24, 0x35, 0x56, 0x81, 0x3a, 0x12, 0xc4, 0xf8, 0x1d, 0x06,
+ 0x15, 0x23, 0x01, 0xb5, 0x14, 0x03, 0x08, 0x3e, 0x0a, 0xfe, 0x46, 0x42,
+ 0xb7, 0x56, 0x0d, 0xaa, 0xcb, 0x07, 0x2e, 0x38, 0xee, 0xb3, 0x24, 0xbc,
+ 0x1e, 0xff, 0xdf, 0x1f, 0xa7, 0x35, 0x23, 0x6a, 0x11, 0x15, 0x17, 0xcb,
+ 0xfb, 0x78, 0xc6, 0xe1, 0x62, 0x10, 0xf8, 0x35, 0xe2, 0xb0, 0x08, 0x7b,
+ 0x04, 0x69, 0x36, 0x10, 0x36, 0xc0, 0xee, 0x8a, 0x42, 0xad, 0x2a, 0xe3,
+ 0x6e, 0x17, 0x15, 0xf9, 0x54, 0x52, 0x96, 0xd7, 0x16, 0x23, 0x98, 0xd6,
+ 0xb7, 0xdb, 0xb2, 0x61, 0x0c, 0x09, 0xf1, 0x0c, 0x1e, 0x25, 0x1c, 0x9d,
+ 0xa4, 0x7f, 0x32, 0x02, 0x60, 0xfd, 0x4d, 0xb8, 0x64, 0x4c, 0x26, 0xea,
+ 0x5a, 0xd6, 0x29, 0xb3, 0x59, 0x45, 0x28, 0x44, 0x86, 0x81, 0x33, 0x31,
+ 0xd8, 0x69, 0xb0, 0xe7, 0xfb, 0xdf, 0xf5, 0x4b, 0xa0, 0x23, 0x99, 0x2e,
+ 0xa3, 0x6e, 0xc0, 0x2f, 0x23, 0x61, 0x08, 0xbe, 0xf3, 0x2f, 0x61, 0xfe,
+ 0x17, 0xce, 0xf8, 0x42, 0xfa, 0x95, 0x8c, 0xf1, 0x6e, 0xa7, 0x19, 0x08,
+ 0x39, 0x4c, 0xde, 0xcd, 0x60, 0x1b, 0xa2, 0x77, 0x59, 0x28, 0xc1, 0xbf,
+ 0xcc, 0x2d, 0xa6, 0x87, 0xdf, 0x63, 0xac, 0xdc, 0xff, 0x2b, 0x35, 0x20,
+ 0xeb, 0x3d, 0xa7, 0xee, 0x87, 0x99, 0xfb, 0x3e, 0x0e, 0x8b, 0x08, 0x13,
+ 0x95, 0x3d, 0x28, 0xa9, 0xdf, 0x27, 0x15, 0x33, 0x50, 0xc8, 0xec, 0x18,
+ 0x6d, 0x10, 0x54, 0x0a, 0x2a, 0x67, 0xbc, 0x71, 0xc5, 0x41, 0xae, 0x42,
+ 0x00, 0xe7, 0xaa, 0xd0, 0x0a, 0xe4, 0xa9, 0xd4, 0x00, 0x4a, 0x3f, 0x81,
+ 0x1c, 0xb8, 0xc8, 0xfc, 0xe6, 0x7f, 0xc6, 0xef, 0x38, 0x61, 0xa5, 0xa9,
+ 0x26, 0x96, 0x9d, 0xf4, 0x2d, 0x61, 0xda, 0x38, 0x18, 0xc8, 0x28, 0xaf,
+ 0x09, 0x4c, 0x12, 0x26, 0x84, 0xf0, 0x68, 0xd9, 0x3f, 0x09, 0xbd, 0x41,
+ 0x2c, 0x62, 0x1f, 0xcb, 0x06, 0x4c, 0xd7, 0x26, 0x52, 0x08, 0x4d, 0x6a,
+ 0x22, 0xe7, 0x45, 0x99, 0xb8, 0xc8, 0x16, 0x08, 0xd3, 0x24, 0x30, 0xf8,
+ 0xa9, 0x2c, 0x30, 0xd5, 0xba, 0xd8, 0xee, 0xd4, 0x30, 0x09, 0xcd, 0x01,
+ 0xfd, 0x21, 0x19, 0x33, 0x3e, 0xd1, 0x21, 0x04, 0x2b, 0xda, 0xd8, 0xcb,
+ 0x0f, 0x37, 0xd2, 0x14, 0xbe, 0x3c, 0xd4, 0xee, 0xfa, 0xdf, 0xee, 0x29,
+ 0x1f, 0xc5, 0x41, 0xf9, 0x3f, 0xdd, 0x33, 0x29, 0x1d, 0xd6, 0xcc, 0x8b,
+ 0x01, 0x24, 0xdf, 0x26, 0x0c, 0x0a, 0x2b, 0xfe, 0xbb, 0x3b, 0x3b, 0x0c,
+ 0x20, 0x81, 0xd6, 0x06, 0xd8, 0xf2, 0xe7, 0xbc, 0x23, 0xd4, 0xd9, 0xd7,
+ 0x13, 0xe1, 0xcc, 0x2b, 0xb2, 0xc1, 0xfa, 0xef, 0x56, 0xe7, 0xd2, 0xe0,
+ 0x4f, 0xf5, 0x88, 0x18, 0x68, 0xd8, 0x2c, 0xc7, 0xa6, 0xcc, 0x22, 0xf8,
+ 0x0f, 0x3a, 0xbb, 0xa2, 0xee, 0x1d, 0xe0, 0xaf, 0xfa, 0x1e, 0xdb, 0xe3,
+ 0x07, 0xe5, 0xaa, 0x0d, 0xbc, 0x68, 0xf3, 0x81, 0x72, 0xd6, 0xc5, 0x2c,
+ 0x2a, 0xfd, 0xd3, 0x1c, 0xf4, 0xc2, 0xc4, 0xfb, 0x65, 0x4d, 0xd5, 0xc6,
+ 0xb9, 0xf0, 0x0e, 0x0a, 0xd0, 0x09, 0x21, 0x25, 0x09, 0xd8, 0x46, 0x4e,
+ 0x27, 0x5d, 0xc6, 0x02, 0xfe, 0xc8, 0xe4, 0xdc, 0xdf, 0xc3, 0x2f, 0x55,
+ 0x7f, 0x49, 0xb4, 0xc7, 0x33, 0x1a, 0x96, 0x3c, 0x1b, 0x13, 0xe1, 0xfd,
+ 0xde, 0xc8, 0xe4, 0x08, 0x5f, 0xfe, 0xf5, 0x25, 0x54, 0xed, 0x19, 0x79,
+ 0xe8, 0x0e, 0xa7, 0x4e, 0x48, 0xff, 0x08, 0xf1, 0xe7, 0xd4, 0x02, 0xdc,
+ 0x51, 0xdb, 0xc3, 0x4a, 0x9d, 0x2c, 0x4f, 0x36, 0xa9, 0xd0, 0x1a, 0xb8,
+ 0xa5, 0x46, 0xe2, 0x22, 0xeb, 0xd0, 0xd8, 0xe5, 0xe9, 0x16, 0xd2, 0x5a,
+ 0xd0, 0xda, 0xd2, 0x59, 0x9e, 0xa1, 0x0c, 0x1c, 0x40, 0x28, 0x3f, 0x18,
+ 0xfd, 0xd6, 0x33, 0xbf, 0x18, 0x22, 0xde, 0xc6, 0x2e, 0x0d, 0xc4, 0x24,
+ 0xac, 0xb4, 0x0f, 0x81, 0xf1, 0xc6, 0xe3, 0xbe, 0x24, 0x5c, 0x57, 0x09,
+ 0x30, 0x39, 0xf8, 0xfa, 0xc7, 0x5b, 0xc1, 0xf4, 0x2d, 0x26, 0xef, 0x32,
+ 0xeb, 0xd8, 0x0d, 0x09, 0xd6, 0x81, 0xd8, 0x99, 0xe1, 0x57, 0x26, 0xfc,
+ 0x50, 0x39, 0x22, 0xc3, 0x10, 0x20, 0x46, 0x17, 0xdc, 0xb8, 0xfa, 0xfe,
+ 0xf0, 0x4a, 0x32, 0xe3, 0xf2, 0xe3, 0x48, 0xe0, 0xb3, 0x45, 0x58, 0xf4,
+ 0xbb, 0xaf, 0x3d, 0xef, 0x27, 0x10, 0x29, 0xd6, 0xb1, 0x47, 0x9e, 0x2d,
+ 0xd2, 0xd7, 0xf7, 0x2a, 0xca, 0x41, 0xc8, 0xe3, 0xea, 0x04, 0xd7, 0x4a,
+ 0xd6, 0x20, 0x0e, 0xc4, 0x0a, 0xd6, 0x1b, 0xc9, 0x43, 0xfd, 0xfa, 0xdd,
+ 0x2c, 0x22, 0xd3, 0x42, 0xe6, 0x03, 0xba, 0x3e, 0x33, 0xd8, 0xe9, 0x12,
+ 0x00, 0x51, 0xee, 0x52, 0x71, 0x19, 0xcc, 0xb9, 0xbf, 0x26, 0xa4, 0x5a,
+ 0xdc, 0x1c, 0xf2, 0xdf, 0x26, 0xe4, 0x0b, 0x38, 0xfb, 0xb1, 0xaa, 0xe7,
+ 0x81, 0xa8, 0x3a, 0x43, 0x50, 0xd6, 0x2c, 0xbd, 0x6e, 0xfc, 0x01, 0xf6,
+ 0x27, 0x47, 0x07, 0x2f, 0xf2, 0xe1, 0x28, 0x10, 0xd1, 0x82, 0x01, 0xe7,
+ 0xdd, 0x43, 0x17, 0x03, 0x2f, 0x98, 0x4e, 0xd1, 0xef, 0xdd, 0x03, 0x4b,
+ 0x00, 0xa4, 0x6c, 0xb9, 0x0a, 0xb9, 0xfe, 0x62, 0xc2, 0x17, 0xd0, 0xe7,
+ 0xe9, 0x9b, 0xbf, 0x32, 0x33, 0xaf, 0x43, 0x3a, 0x42, 0xc4, 0x49, 0xcc,
+ 0x68, 0x09, 0xcb, 0xa9, 0x58, 0xaa, 0x78, 0x21, 0x62, 0xd1, 0x20, 0xee,
+ 0xcb, 0x2e, 0xc4, 0xb7, 0x73, 0xa5, 0x6f, 0xee, 0xed, 0x48, 0x7f, 0xe8,
+ 0x81, 0x07, 0xa3, 0xd2, 0x1f, 0x5e, 0x4b, 0x28, 0xca, 0x17, 0x20, 0xb7,
+ 0x38, 0x2f, 0xef, 0xcc, 0xe9, 0x0e, 0xd2, 0xf2, 0xec, 0xfe, 0x99, 0xbc,
+ 0x5e, 0x1d, 0x46, 0xfc, 0x54, 0x16, 0x56, 0xad, 0xfd, 0xe2, 0x5d, 0x3e,
+ 0x59, 0xd7, 0x01, 0xbf, 0xc3, 0x53, 0xf2, 0xef, 0x52, 0xd9, 0x05, 0x1b,
+ 0x28, 0xeb, 0x05, 0x9c, 0xb5, 0x55, 0x23, 0x1d, 0xd1, 0x4a, 0xca, 0xb2,
+ 0x8a, 0xa5, 0xbd, 0x1b, 0x4a, 0x81, 0xa5, 0xbc, 0xea, 0xdd, 0x58, 0x50,
+ 0x55, 0xf8, 0x19, 0x4b, 0x20, 0xb8, 0x1e, 0x48, 0xf7, 0x19, 0x9b, 0xfa,
+ 0xe3, 0xe6, 0x1d, 0x54, 0xf9, 0xb9, 0xd9, 0x0b, 0x0b, 0x85, 0xd3, 0x2e,
+ 0x1e, 0x3a, 0xe7, 0x36, 0x9d, 0x28, 0xfb, 0xc7, 0xdf, 0xbf, 0x3c, 0xd4,
+ 0x53, 0x45, 0x36, 0xb0, 0x33, 0xb5, 0x1f, 0xdd, 0xe3, 0x13, 0x48, 0xd0,
+ 0x3f, 0xd5, 0x64, 0xdd, 0x2c, 0x13, 0x1b, 0xb3, 0xc9, 0x32, 0xd2, 0x51,
+ 0x23, 0x84, 0x53, 0xf3, 0x41, 0x7f, 0x16, 0x4c, 0xc7, 0x29, 0xfc, 0x25,
+ 0xc8, 0x1c, 0x17, 0xbe, 0xba, 0xd8, 0xbe, 0x5c, 0x8f, 0xc0, 0xf3, 0x1f,
+ 0x59, 0x30, 0xa5, 0x7a, 0x18, 0x63, 0x37, 0xf7, 0x46, 0x96, 0xa4, 0x18,
+ 0x11, 0xaf, 0x27, 0x4c, 0xfc, 0x41, 0xf4, 0xd3, 0x7d, 0x50, 0x1c, 0xa9,
+ 0xe6, 0xe9, 0x55, 0xe3, 0x38, 0x08, 0x4a, 0xfa, 0x2c, 0x65, 0x25, 0xec,
+ 0xf2, 0xd8, 0xf0, 0xf0, 0x19, 0x2b, 0xb7, 0x29, 0x09, 0x0e, 0xe4, 0x05,
+ 0x37, 0xc4, 0x22, 0xe8, 0x34, 0xbc, 0x0b, 0x35, 0x23, 0x1c, 0xbf, 0xc2,
+ 0xdf, 0x59, 0x16, 0x31, 0xee, 0xf6, 0xbc, 0x09, 0x3e, 0x36, 0xb4, 0xa3,
+ 0xf5, 0x16, 0x01, 0xb0, 0x15, 0x3c, 0x2c, 0x15, 0x40, 0x22, 0x49, 0xdf,
+ 0x03, 0x53, 0xe1, 0xee, 0xb2, 0x38, 0xd0, 0xe9, 0x3a, 0xf4, 0xd1, 0x81,
+ 0x3e, 0x00, 0x0b, 0xaf, 0xef, 0xeb, 0x12, 0xa0, 0x11, 0x13, 0x39, 0x81,
+ 0x00, 0xf9, 0x2f, 0xee, 0x31, 0xe8, 0x19, 0x20, 0xce, 0x16, 0xdd, 0xf5,
+ 0xf2, 0x95, 0xe3, 0xa7, 0x2b, 0x03, 0xac, 0xa9, 0x24, 0x6d, 0xbe, 0xe4,
+ 0x27, 0xf2, 0x0a, 0xd9, 0x06, 0x8c, 0xe8, 0x0d, 0x99, 0x38, 0xef, 0xd1,
+ 0x66, 0xdc, 0x10, 0xab, 0x2b, 0xc4, 0x07, 0x3f, 0x2a, 0xcd, 0x34, 0x3b,
+ 0x51, 0x16, 0xd5, 0x46, 0x07, 0x14, 0x5c, 0xac, 0x41, 0x67, 0x63, 0x09,
+ 0x9f, 0xab, 0xdb, 0x47, 0x3f, 0x35, 0xa9, 0xc3, 0xbd, 0x0e, 0x1e, 0x70,
+ 0xe9, 0xd9, 0x3e, 0x0f, 0x95, 0x62, 0xc7, 0x6d, 0x4b, 0xf5, 0xc3, 0x18,
+ 0x14, 0xfd, 0xb5, 0xa5, 0xd4, 0x81, 0xf2, 0x57, 0x1f, 0xd1, 0x1f, 0x57,
+ 0xe4, 0x0c, 0x90, 0xc0, 0x03, 0xb3, 0x2c, 0x7a, 0x26, 0xb7, 0xc7, 0x1a,
+ 0x40, 0xd2, 0x42, 0xaf, 0xef, 0x7a, 0x44, 0xc7, 0x1c, 0x0d, 0x25, 0x18,
+ 0x1c, 0x17, 0xdd, 0xae, 0xaa, 0x33, 0xd2, 0x92, 0x54, 0x25, 0xda, 0xd1,
+ 0xce, 0xee, 0x00, 0x09, 0x42, 0x09, 0x08, 0xb7, 0x14, 0x81, 0x05, 0x2d,
+ 0x50, 0x20, 0x4b, 0x31, 0x1a, 0x42, 0xde, 0x26, 0x03, 0xce, 0xc4, 0xfa,
+ 0x8b, 0xa3, 0x8f, 0x72, 0xf4, 0xdb, 0x4b, 0x9c, 0xf0, 0xf1, 0x25, 0xe2,
+ 0xc9, 0xac, 0x3c, 0x74, 0x5f, 0x52, 0xc1, 0x1e, 0x58, 0x45, 0xd5, 0x20,
+ 0x09, 0x0a, 0x00, 0xd8, 0x06, 0xee, 0xa7, 0xe8, 0x22, 0xdb, 0x43, 0xf7,
+ 0x33, 0xc5, 0xa3, 0xcb, 0xda, 0xe9, 0x2c, 0x11, 0xe4, 0x40, 0x9e, 0x27,
+ 0x39, 0xc5, 0xf4, 0xaa, 0x08, 0x1d, 0x5f, 0x56, 0xc2, 0x06, 0x39, 0xaf,
+ 0x40, 0xf8, 0xd7, 0x4b, 0xb5, 0x39, 0xff, 0xe9, 0x49, 0x27, 0x4e, 0x33,
+ 0x0f, 0x09, 0xe9, 0x23, 0x21, 0x5a, 0xe3, 0x81, 0x1e, 0xf8, 0xb6, 0xff,
+ 0x39, 0xd5, 0x5f, 0x02, 0xf1, 0x91, 0x3c, 0x38, 0xcb, 0xb4, 0x28, 0xea,
+ 0xee, 0x77, 0xfc, 0xb9, 0x53, 0x1f, 0xc4, 0x9d, 0xef, 0x4b, 0x8d, 0xe4,
+ 0x5c, 0xf1, 0xd1, 0x6b, 0xf5, 0xa3, 0x3d, 0x54, 0x69, 0x03, 0x5e, 0xfc,
+ 0x17, 0x56, 0x05, 0x3d, 0x59, 0x28, 0x01, 0xcd, 0xa2, 0x9e, 0x5a, 0xf1,
+ 0x23, 0xa6, 0x39, 0x2a, 0xde, 0x25, 0x4e, 0xb3, 0xa1, 0x31, 0xe9, 0xe3,
+ 0xff, 0xcf, 0x1a, 0xdb, 0x8e, 0x2b, 0x57, 0xe5, 0x06, 0x7f, 0x7c, 0x41,
+ 0x59, 0x41, 0x46, 0xdb, 0x5f, 0x04, 0xcc, 0x16, 0xf5, 0xee, 0xf0, 0xaa,
+ 0x07, 0x74, 0x5e, 0xb3, 0xc7, 0x81, 0x4e, 0x20, 0xcd, 0x5a, 0x3b, 0xe5,
+ 0xc8, 0xe8, 0x08, 0xec, 0xff, 0xea, 0xa9, 0x4f, 0x19, 0x41, 0x0a, 0x9f,
+ 0x39, 0x45, 0x97, 0xba, 0xdb, 0x3d, 0xf8, 0x6b, 0xa2, 0x21, 0xe6, 0x8d,
+ 0xc9, 0x18, 0x3b, 0x15, 0x01, 0x3c, 0x3d, 0x32, 0x0f, 0xd5, 0x45, 0x0c,
+ 0x3d, 0x04, 0x19, 0x45, 0xd9, 0x5b, 0x05, 0x24, 0x43, 0xa5, 0xbc, 0x64,
+ 0x32, 0x6d, 0xe4, 0x19, 0x12, 0x06, 0x96, 0xff, 0xcd, 0x1c, 0x3b, 0x19,
+ 0xbb, 0x18, 0x4a, 0xda, 0xce, 0x97, 0x02, 0xed, 0xfa, 0x15, 0x71, 0x1f,
+ 0xd0, 0xa1, 0x03, 0x6d, 0x48, 0xba, 0x22, 0xec, 0xb1, 0xfd, 0x9e, 0xb0,
+ 0x47, 0x43, 0xcc, 0xc2, 0x73, 0xe3, 0xcc, 0x3e, 0xf4, 0xa5, 0x3b, 0x56,
+ 0xbb, 0x73, 0x91, 0x1f, 0xaa, 0x7f, 0xd0, 0x35, 0xcd, 0xfb, 0xed, 0xd9,
+ 0x22, 0xd8, 0xfb, 0x4a, 0x15, 0x17, 0x52, 0xeb, 0xf8, 0xf9, 0x90, 0xd1,
+ 0x61, 0xd9, 0xb7, 0xd9, 0x5d, 0xb7, 0xf1, 0x35, 0x52, 0xb1, 0xef, 0x5c,
+ 0xea, 0x81, 0xb4, 0xbc, 0x01, 0xc8, 0xc7, 0x5e, 0xcc, 0xa6, 0x48, 0xe3,
+ 0x11, 0xb0, 0xa6, 0xa0, 0xf3, 0x33, 0x54, 0xb8, 0xe8, 0xb9, 0x53, 0xb3,
+ 0xba, 0xe2, 0x14, 0xd6, 0x43, 0x2b, 0x5f, 0xa5, 0x96, 0xb0, 0x58, 0xb8,
+ 0x27, 0x2c, 0x98, 0x5b, 0xf0, 0x83, 0x71, 0xa1, 0x32, 0x17, 0x3d, 0x2c,
+ 0x77, 0xc4, 0xd9, 0x8d, 0x9a, 0x0b, 0x43, 0xee, 0x13, 0xca, 0xcf, 0x7c,
+ 0xec, 0x46, 0xe5, 0x5d, 0x81, 0xee, 0xfc, 0xc4, 0x0f, 0x56, 0x53, 0x3e,
+ 0x3b, 0x04, 0xbf, 0x12, 0xa3, 0x99, 0x46, 0x08, 0x41, 0xd5, 0xf1, 0xf8,
+ 0xc3, 0x21, 0x22, 0x57, 0x41, 0x50, 0xee, 0xfe, 0x7c, 0x7e, 0xd8, 0x39,
+ 0x2b, 0x0c, 0x30, 0xbb, 0xb9, 0x2d, 0x3c, 0xe3, 0x29, 0x27, 0x2d, 0x2d,
+ 0xd3, 0x77, 0xd0, 0xb8, 0xc0, 0xf4, 0xe0, 0x2d, 0x5a, 0xee, 0x1a, 0x55,
+ 0x22, 0x43, 0xca, 0x15, 0x34, 0xde, 0x00, 0x46, 0x7f, 0x3f, 0x46, 0x68,
+ 0x16, 0xdc, 0xc4, 0xeb, 0x0d, 0xd1, 0x3d, 0x60, 0x34, 0xa0, 0xf2, 0xde,
+ 0xde, 0xcb, 0x29, 0x18, 0x42, 0x21, 0x0b, 0xcb, 0xed, 0x25, 0xb2, 0x4a,
+ 0xd7, 0x17, 0xeb, 0x02, 0xef, 0x79, 0xf3, 0x57, 0x50, 0xa3, 0x09, 0x4c,
+ 0xbe, 0x24, 0xab, 0xf8, 0x1b, 0x62, 0xe1, 0x0a, 0x38, 0x39, 0x4e, 0xc9,
+ 0x35, 0xd7, 0xab, 0xcb, 0xad, 0xc4, 0xe2, 0x26, 0xd0, 0x36, 0xb6, 0xa3,
+ 0x5e, 0xed, 0x2e, 0xdf, 0xae, 0x1d, 0xc6, 0x01, 0xc8, 0x5f, 0x44, 0x15,
+ 0x02, 0xb8, 0x04, 0xe5, 0x43, 0x39, 0x7a, 0xbe, 0x2c, 0xcb, 0x68, 0x5b,
+ 0xd0, 0x1b, 0xdc, 0xc5, 0xec, 0x81, 0x5b, 0x91, 0x12, 0x1c, 0x04, 0x90,
+ 0xfc, 0xba, 0x19, 0xf1, 0xa9, 0xce, 0x24, 0xe8, 0x07, 0x7f, 0xd0, 0xf4,
+ 0x37, 0x01, 0xfe, 0xb9, 0xed, 0xc6, 0xf5, 0xfb, 0x2f, 0x3c, 0xb5, 0x0a,
+ 0xe3, 0x19, 0xcb, 0xc1, 0x27, 0x08, 0xce, 0x11, 0x16, 0x47, 0xb1, 0x38,
+ 0xdb, 0xbb, 0xbb, 0x6b, 0x37, 0x2a, 0x1e, 0xf4, 0x43, 0xfd, 0xaf, 0xb6,
+ 0x61, 0x42, 0xcc, 0x47, 0xbf, 0x62, 0xba, 0xd0, 0x2d, 0xc9, 0xca, 0x59,
+ 0x48, 0xd9, 0xfd, 0x35, 0xb5, 0x81, 0xa4, 0xdd, 0x40, 0x50, 0x44, 0xe2,
+ 0xaf, 0x28, 0xe4, 0xc4, 0xde, 0x2e, 0xfd, 0xd6, 0xbd, 0x19, 0xe4, 0x3b,
+ 0x28, 0xd2, 0xbc, 0x5a, 0x4b, 0x1e, 0x3a, 0x48, 0x47, 0x23, 0x55, 0xc2,
+ 0x2f, 0xb6, 0x23, 0xf5, 0x09, 0x08, 0x08, 0x26, 0xae, 0xe2, 0xde, 0xc0,
+ 0xd8, 0x26, 0x52, 0x1a, 0xef, 0xe6, 0xce, 0xad, 0x1c, 0xd0, 0xc3, 0xdd,
+ 0x94, 0x9b, 0xe1, 0xa5, 0xfd, 0x4e, 0xc8, 0x9e, 0x48, 0xf6, 0x18, 0xf6,
+ 0x91, 0x6c, 0xb5, 0x2f, 0x0c, 0x7f, 0x3e, 0x53, 0x0c, 0x3d, 0x00, 0x55,
+ 0x2b, 0xea, 0x22, 0x4f, 0x41, 0xe6, 0x1e, 0xcc, 0x61, 0x2a, 0x0a, 0x1f,
+ 0x3f, 0x42, 0x05, 0x11, 0xc2, 0xe9, 0xd3, 0xd5, 0xda, 0xff, 0xed, 0xd8,
+ 0x36, 0x43, 0x05, 0xfe, 0xb8, 0xc5, 0xcc, 0xc4, 0xe6, 0x3a, 0xf7, 0x3e,
+ 0x13, 0x0b, 0xfa, 0xcc, 0x29, 0x25, 0xc5, 0xd7, 0x69, 0x47, 0x4c, 0xfb,
+ 0xbe, 0x21, 0x0b, 0x31, 0xdc, 0xda, 0x42, 0xda, 0xe3, 0x56, 0x1e, 0x7f,
+ 0xe6, 0xf1, 0xea, 0xd8, 0xb0, 0xd9, 0xe8, 0xef, 0xf7, 0xea, 0x03, 0xf0,
+ 0xd2, 0x21, 0x09, 0x0e, 0x38, 0xde, 0x2d, 0x2b, 0xf0, 0x40, 0xec, 0xd8,
+ 0xe2, 0x04, 0x1c, 0x12, 0xe5, 0xdf, 0xfa, 0xce, 0xc9, 0x18, 0x10, 0x31,
+ 0x27, 0x0a, 0xd3, 0x34, 0xf4, 0x12, 0xd3, 0x38, 0xdf, 0x47, 0xe2, 0x4c,
+ 0x39, 0x51, 0x2c, 0xd8, 0x08, 0x20, 0x54, 0xf3, 0xda, 0x0d, 0xc7, 0x24,
+ 0x28, 0x4b, 0xff, 0x1e, 0x55, 0x28, 0x1d, 0x1a, 0xdf, 0xab, 0xcb, 0x62,
+ 0x91, 0x5a, 0x4e, 0x18, 0x14, 0xf1, 0xf5, 0xd5, 0x69, 0xf3, 0xc2, 0xbb,
+ 0xc1, 0x20, 0xd4, 0x7f, 0xab, 0xf8, 0x17, 0xf0, 0x5a, 0x39, 0x15, 0x89,
+ 0x63, 0x9b, 0x1f, 0x12, 0x52, 0x2b, 0x03, 0xd9, 0x67, 0xcc, 0x2b, 0xef,
+ 0xbb, 0xc8, 0x36, 0x2b, 0xab, 0x1c, 0x37, 0x6a, 0x3b, 0xc1, 0xc2, 0x9c,
+ 0x25, 0x04, 0xeb, 0xc6, 0x5d, 0xae, 0x40, 0xd1, 0xd0, 0x03, 0xfc, 0x44,
+ 0xa0, 0x01, 0xb6, 0xab, 0x2c, 0x49, 0xc8, 0x81, 0x30, 0x66, 0x15, 0x22,
+ 0xb2, 0x9a, 0xea, 0x36, 0x52, 0xc9, 0xb1, 0xff, 0x47, 0x61, 0x2b, 0xde,
+ 0xeb, 0x70, 0xca, 0x39, 0xb4, 0x36, 0x56, 0x39, 0x4a, 0xe3, 0xe6, 0xd5,
+ 0xbd, 0x04, 0x75, 0x0e, 0xec, 0xc0, 0x43, 0xf6, 0x04, 0x0e, 0xcc, 0x53,
+ 0xb4, 0x61, 0xfa, 0xce, 0xe5, 0x50, 0x26, 0x40, 0xae, 0x9f, 0xa4, 0x42,
+ 0x4b, 0x69, 0xea, 0x52, 0x42, 0xc3, 0x65, 0x39, 0xfc, 0xed, 0x0d, 0xb4,
+ 0xd3, 0x3b, 0x71, 0x52, 0x34, 0x4c, 0x07, 0xdc, 0xd7, 0x31, 0xc8, 0x81,
+ 0x14, 0xb5, 0xd5, 0xf8, 0x21, 0xf1, 0x29, 0x3b, 0x6c, 0xe6, 0xd1, 0xdd,
+ 0x57, 0x5f, 0xe4, 0x12, 0xeb, 0x57, 0x3d, 0x37, 0xb4, 0xb4, 0x44, 0xf0,
+ 0xf6, 0x0a, 0xee, 0x66, 0x8c, 0x9d, 0xfd, 0x4b, 0x1f, 0xf5, 0x33, 0x28,
+ 0x15, 0x8c, 0x36, 0x2b, 0xec, 0x10, 0x2f, 0x61, 0xc2, 0x24, 0x87, 0xd4,
+ 0x27, 0xf5, 0x69, 0xb5, 0x3a, 0xeb, 0xc7, 0x74, 0x0a, 0xaf, 0x99, 0xca,
+ 0xc4, 0xb7, 0xfa, 0x49, 0xbd, 0xc3, 0x91, 0x28, 0xd4, 0xc6, 0x6a, 0xe5,
+ 0x1a, 0x5c, 0x74, 0x0e, 0x77, 0x5e, 0x18, 0x05, 0xd5, 0xa9, 0x6d, 0x13,
+ 0x3d, 0x81, 0x55, 0xff, 0xad, 0x0b, 0x6e, 0x88, 0xb2, 0x55, 0x3f, 0xd7,
+ 0x35, 0xf6, 0xe0, 0x2a, 0x09, 0x2a, 0xe1, 0x7f, 0x96, 0x05, 0xec, 0x0d,
+ 0x27, 0x14, 0x0a, 0xd7, 0x1c, 0x47, 0x07, 0xbd, 0xcf, 0xd1, 0x28, 0x11,
+ 0xbe, 0x17, 0x18, 0x28, 0xa8, 0x45, 0x31, 0xf0, 0x48, 0xda, 0x4c, 0x4b,
+ 0xd9, 0xda, 0xc0, 0x2f, 0xc9, 0xda, 0xa3, 0x04, 0xd6, 0xad, 0x12, 0xda,
+ 0x1f, 0xf3, 0x1d, 0xed, 0x40, 0xc5, 0xa3, 0x7d, 0x16, 0xcb, 0xb6, 0x1c,
+ 0x4f, 0x1f, 0x16, 0xe1, 0x4b, 0x6a, 0x2c, 0x79, 0xa6, 0x7f, 0xd6, 0xf9,
+ 0xbe, 0xe5, 0x40, 0x09, 0xfd, 0xc9, 0x67, 0x77, 0x5d, 0x11, 0x2d, 0xae,
+ 0x49, 0x37, 0x9d, 0xdf, 0x6c, 0x07, 0x3a, 0x6e, 0x2c, 0xa9, 0x2e, 0xdd,
+ 0x08, 0x4a, 0xe5, 0xaf, 0xad, 0x12, 0xbe, 0x3f, 0x93, 0x4e, 0x40, 0xe8,
+ 0x1b, 0xf7, 0xcd, 0x20, 0x70, 0xfb, 0x4e, 0x1d, 0xed, 0x34, 0x47, 0xaa,
+ 0xce, 0xb8, 0x48, 0x44, 0xbf, 0x55, 0x2b, 0x3b, 0x4d, 0x4a, 0x86, 0xe1,
+ 0x55, 0xef, 0xf6, 0x81, 0xf7, 0x28, 0xba, 0x0f, 0xec, 0x92, 0xd2, 0xc1,
+ 0x41, 0xbf, 0xf9, 0xcc, 0xde, 0x4c, 0x63, 0xfd, 0xb5, 0xdc, 0x35, 0x56,
+ 0x2b, 0x53, 0x9e, 0x05, 0x26, 0xc1, 0xa4, 0x42, 0x38, 0x5c, 0x92, 0xe5,
+ 0xd5, 0x7d, 0x01, 0x3f, 0x36, 0xd8, 0x0f, 0x27, 0xef, 0x07, 0xa3, 0xac,
+ 0x21, 0xd3, 0x6c, 0xd9, 0xf1, 0xa8, 0x31, 0x2c, 0xe9, 0x12, 0xe8, 0x0c,
+ 0xe3, 0x10, 0x35, 0x5b, 0xbc, 0xdb, 0xf7, 0xa6, 0x36, 0xc0, 0xbb, 0x24,
+ 0xe2, 0x3a, 0xf9, 0x9d, 0xef, 0xad, 0x33, 0xc9, 0x0e, 0xcd, 0xba, 0x2f,
+ 0x07, 0x46, 0xee, 0x26, 0xfc, 0x01, 0x17, 0xf8, 0xc7, 0x43, 0xa8, 0x81,
+ 0x2e, 0x08, 0x4d, 0x10, 0x2b, 0xdd, 0x17, 0xef, 0xc4, 0xf9, 0x62, 0xae,
+ 0x0e, 0x01, 0xd9, 0xd8, 0xda, 0x07, 0x28, 0x93, 0xa8, 0xd9, 0xde, 0xfa,
+ 0x29, 0xb4, 0x42, 0x20, 0x7b, 0xa5, 0x55, 0xa2, 0x14, 0x29, 0xdf, 0xfc,
+ 0xa4, 0xb8, 0xfa, 0x0c, 0x23, 0x1e, 0xc7, 0x86, 0x27, 0x66, 0x27, 0xd1,
+ 0xca, 0x00, 0xf9, 0x15, 0x20, 0x17, 0xd7, 0x52, 0x42, 0x2d, 0xde, 0x29,
+ 0x19, 0xe5, 0x2e, 0x1f, 0x89, 0x95, 0x57, 0xad, 0xcb, 0xe1, 0xea, 0x04,
+ 0xc5, 0xf3, 0x15, 0x16, 0xf2, 0x42, 0xac, 0x62, 0x6c, 0x72, 0x81, 0xf6,
+ 0x38, 0x0c, 0x4c, 0xda, 0x08, 0x27, 0xfe, 0xe9, 0x1d, 0x43, 0xc6, 0x1c,
+ 0x19, 0x03, 0x03, 0xdc, 0xf7, 0x97, 0x47, 0x15, 0xf8, 0xcf, 0x1c, 0x08,
+ 0x9a, 0xa9, 0x0c, 0x38, 0x39, 0x07, 0xd7, 0x52, 0x37, 0xd4, 0xe5, 0xbe,
+ 0xdb, 0xde, 0xff, 0xc9, 0xca, 0xb0, 0x52, 0x32, 0xb7, 0x15, 0x42, 0x81,
+ 0x8f, 0xf2, 0x0b, 0x4c, 0xf1, 0x31, 0xfa, 0xdb, 0x1d, 0x65, 0x01, 0x2c,
+ 0x18, 0x4a, 0x9c, 0xe1, 0x04, 0xf2, 0xeb, 0x15, 0xc6, 0xec, 0x1d, 0x01,
+ 0x43, 0xe8, 0xfb, 0xa4, 0x14, 0xc1, 0xde, 0x57, 0xc4, 0x45, 0x2e, 0x1c,
+ 0x81, 0x35, 0xe9, 0xb4, 0x30, 0x10, 0x0e, 0x0a, 0x2c, 0xe5, 0xe6, 0x3f,
+ 0xa4, 0xc4, 0x13, 0xea, 0xa0, 0x52, 0x15, 0xb3, 0xf1, 0xba, 0x58, 0xf7,
+ 0x4a, 0x0a, 0x0a, 0xba, 0x17, 0xe3, 0x8b, 0xc5, 0x41, 0xd6, 0x05, 0x07,
+ 0xd1, 0x2d, 0x3e, 0xf4, 0xbf, 0x19, 0x8c, 0x45, 0xc7, 0xe5, 0x62, 0x42,
+ 0x23, 0x29, 0xb9, 0xb8, 0x81, 0x19, 0x02, 0x30, 0xe3, 0x42, 0x05, 0x69,
+ 0xf2, 0x44, 0x26, 0x31, 0xa4, 0xb4, 0x61, 0x12, 0x87, 0x4d, 0x15, 0x33,
+ 0xb9, 0xdf, 0xb8, 0x36, 0xf8, 0x0c, 0xd7, 0x67, 0x2a, 0xf3, 0x22, 0x79,
+ 0x37, 0xe0, 0x64, 0x57, 0xda, 0x2d, 0xe3, 0xc9, 0x3a, 0x1f, 0x24, 0x70,
+ 0x2c, 0x3d, 0x00, 0x8e, 0xe6, 0xf4, 0x5e, 0xec, 0xdb, 0xcd, 0xa5, 0x4d,
+ 0x2a, 0x28, 0xc8, 0xa9, 0x2c, 0xf0, 0xcb, 0x2a, 0x4b, 0xb9, 0xf3, 0x47,
+ 0xa6, 0xb5, 0xaf, 0x60, 0x08, 0x1a, 0x3b, 0x9a, 0xf5, 0x09, 0xd0, 0xb6,
+ 0x59, 0x62, 0xb4, 0x9c, 0x1e, 0xd4, 0xf6, 0x42, 0xc6, 0x53, 0xd5, 0xa6,
+ 0x16, 0xcf, 0x51, 0xf4, 0x3f, 0xa7, 0xca, 0x61, 0xc7, 0x46, 0xad, 0xff,
+ 0x52, 0x2a, 0x52, 0x55, 0x9d, 0xa2, 0x27, 0x75, 0x9a, 0x7f, 0x49, 0x72,
+ 0x23, 0x7e, 0xa3, 0xdf, 0xdb, 0xc3, 0x2d, 0x45, 0xa4, 0x20, 0x03, 0xc1,
+ 0xff, 0x17, 0x0f, 0xef, 0xc3, 0xf4, 0xe2, 0x21, 0xdf, 0x3a, 0xd3, 0x2c,
+ 0xf3, 0x81, 0x43, 0x41, 0xe3, 0x49, 0xf6, 0x0b, 0xcb, 0x56, 0x1e, 0x49,
+ 0xcc, 0x3a, 0xfa, 0xb6, 0xe0, 0x05, 0xc3, 0xdd, 0x11, 0xb6, 0x4c, 0xf4,
+ 0x19, 0x08, 0x36, 0xde, 0x2e, 0x35, 0x2d, 0x16, 0xc7, 0x0b, 0xd7, 0x01,
+ 0x44, 0x46, 0xb9, 0x2e, 0x1b, 0x45, 0x24, 0x92, 0xcf, 0x27, 0x97, 0x05,
+ 0x14, 0x1b, 0x0d, 0xaa, 0x34, 0x30, 0x8b, 0x3f, 0x52, 0xb7, 0x81, 0x15,
+ 0xbf, 0x36, 0x24, 0x29, 0xec, 0xa0, 0x24, 0x04, 0x50, 0xc1, 0x17, 0xfc,
+ 0xe6, 0x08, 0xcf, 0x52, 0x24, 0xee, 0x4c, 0x97, 0x33, 0x11, 0x38, 0xcc,
+ 0xb1, 0xb1, 0x50, 0xd2, 0xc9, 0x50, 0x54, 0x2a, 0xff, 0xec, 0xd6, 0x4e,
+ 0x9f, 0xe3, 0x14, 0xd1, 0x32, 0xc5, 0x12, 0xab, 0x39, 0xfa, 0x2f, 0x09,
+ 0xc6, 0x21, 0x6e, 0x5e, 0x41, 0x7f, 0xb4, 0x2a, 0x5e, 0x0c, 0xb9, 0x01,
+ 0xef, 0xc7, 0x2a, 0x22, 0x36, 0xd4, 0x1f, 0x01, 0x46, 0x33, 0x3c, 0x05,
+ 0xa8, 0xc6, 0x33, 0xda, 0x00, 0x11, 0x5b, 0xbe, 0x34, 0x5c, 0x1e, 0x16,
+ 0x4a, 0x0d, 0xf3, 0x13, 0x1a, 0x56, 0x14, 0xc7, 0xb4, 0x2a, 0xe9, 0xce,
+ 0xd0, 0x0b, 0x3c, 0x57, 0x1e, 0xe6, 0xcf, 0x07, 0x69, 0x18, 0xf1, 0xe0,
+ 0x31, 0x71, 0x06, 0xca, 0x31, 0xc5, 0xea, 0xcd, 0x53, 0x47, 0xb6, 0xc6,
+ 0x25, 0x5b, 0xdb, 0x10, 0x4e, 0x4e, 0xed, 0x29, 0x07, 0xca, 0x1a, 0xc4,
+ 0x46, 0xb5, 0xd0, 0x53, 0x39, 0x05, 0xb1, 0xd7, 0xe1, 0x21, 0xbb, 0x29,
+ 0xd3, 0xa1, 0xb0, 0x3f, 0x42, 0x54, 0xd6, 0x3d, 0xd0, 0xd4, 0xfb, 0xf2,
+ 0xf1, 0xb8, 0xe9, 0xf8, 0xdc, 0x34, 0x55, 0xdd, 0xf7, 0x07, 0xc8, 0x5b,
+ 0xcf, 0xf4, 0x1f, 0xe8, 0xad, 0x2d, 0x50, 0x81, 0x0d, 0xbb, 0xbc, 0xb3,
+ 0xf6, 0x8a, 0x42, 0x02, 0xe4, 0xc6, 0xde, 0x6c, 0xee, 0x05, 0xfa, 0xb8,
+ 0xe0, 0x97, 0xa4, 0x30, 0x00, 0x41, 0xf4, 0x06, 0x18, 0xa6, 0x58, 0xb4,
+ 0xb1, 0x8f, 0xec, 0x01, 0xd8, 0x18, 0xe5, 0x9e, 0x0f, 0x8f, 0x3f, 0x60,
+ 0xe8, 0x10, 0x66, 0x15, 0x08, 0xad, 0x4c, 0xe7, 0x39, 0xcf, 0x7f, 0xed,
+ 0xfd, 0xf1, 0x08, 0xde, 0xf7, 0xba, 0xbd, 0xb1, 0x2c, 0xec, 0xfe, 0x63,
+ 0xf0, 0xc3, 0xc8, 0xdd, 0x06, 0xfd, 0x81, 0xe8, 0x3c, 0xb7, 0xaa, 0x34,
+ 0xe5, 0xb9, 0x25, 0xf1, 0x69, 0x20, 0xde, 0xc9, 0xff, 0xff, 0x75, 0x05,
+ 0x86, 0xac, 0x53, 0x2d, 0xc8, 0x4f, 0x2e, 0xf0, 0x11, 0xd7, 0xfc, 0xe0,
+ 0xe9, 0xe0, 0xb5, 0x0e, 0x1c, 0x33, 0xc9, 0x66, 0x3e, 0x47, 0x13, 0x96,
+ 0xa0, 0x38, 0xfb, 0x1f, 0xbb, 0x2c, 0x2f, 0xe7, 0xf4, 0xce, 0xf3, 0x19,
+ 0x74, 0x6e, 0x4d, 0xb4, 0xd3, 0x64, 0x00, 0xc8, 0xf8, 0x67, 0xd8, 0xa7,
+ 0x2f, 0x3f, 0xa6, 0xfb, 0x15, 0xc3, 0x88, 0xc9, 0xde, 0x96, 0x2b, 0x46,
+ 0x3a, 0x90, 0xd4, 0xbe, 0x39, 0xf1, 0xfc, 0x1c, 0x9e, 0x60, 0x50, 0xeb,
+ 0xc8, 0x27, 0x3d, 0xfc, 0xac, 0x0b, 0xc7, 0xd7, 0xff, 0x0b, 0x35, 0x91,
+ 0x67, 0x32, 0xd4, 0x0e, 0x4c, 0x7f, 0x4a, 0x29, 0x17, 0xf8, 0x1b, 0x14,
+ 0xf2, 0xbc, 0x2a, 0x8d, 0xca, 0xae, 0xe9, 0xb2, 0x83, 0xba, 0x0a, 0xae,
+ 0x35, 0x18, 0xfb, 0xc0, 0x11, 0xef, 0x46, 0x22, 0x81, 0x25, 0xc5, 0x46,
+ 0x3e, 0x14, 0xac, 0x0e, 0x13, 0xf0, 0x34, 0xb9, 0x5f, 0xe4, 0x46, 0xed,
+ 0x6d, 0x29, 0x3d, 0x1b, 0x4b, 0xc6, 0x12, 0xa0, 0xbc, 0x00, 0x01, 0x33,
+ 0x35, 0xcd, 0x5a, 0x9a, 0x4c, 0xe3, 0x06, 0xfb, 0x19, 0x26, 0xfb, 0x37,
+ 0x4e, 0x1c, 0x1c, 0xfd, 0x36, 0x3c, 0xa5, 0x13, 0xf5, 0x2b, 0x74, 0xe9,
+ 0xb6, 0xcd, 0xdc, 0xca, 0x27, 0x1d, 0x44, 0xb2, 0x38, 0xe2, 0xfc, 0x2e,
+ 0x61, 0x18, 0x2a, 0xb7, 0x27, 0x11, 0xc6, 0xae, 0x52, 0xd5, 0xfa, 0x61,
+ 0xfa, 0xd1, 0x5c, 0x4e, 0x31, 0xd6, 0xfa, 0x04, 0x14, 0x35, 0x1f, 0xe2,
+ 0xe1, 0xfe, 0x81, 0xa3, 0x01, 0x59, 0xc4, 0xd5, 0xec, 0x42, 0xbc, 0xf8,
+ 0x0a, 0xe1, 0x4e, 0x92, 0xfd, 0x06, 0x1d, 0xc1, 0xff, 0x06, 0xd6, 0x92,
+ 0xc4, 0xbd, 0xe6, 0xda, 0x59, 0x20, 0xee, 0xf8, 0x27, 0xed, 0x6d, 0x5f,
+ 0x22, 0x70, 0x96, 0xe9, 0x23, 0x06, 0x29, 0x92, 0x38, 0x33, 0x1b, 0xc9,
+ 0x07, 0x8f, 0x3f, 0xaf, 0x07, 0xba, 0x11, 0xaf, 0xcb, 0xf2, 0x07, 0x4f,
+ 0xb8, 0x3b, 0xaf, 0x0c, 0xce, 0x5d, 0x40, 0xc8, 0xef, 0x00, 0x01, 0x12,
+ 0x0f, 0x11, 0xf3, 0xba, 0x61, 0xca, 0xf2, 0xe1, 0x19, 0xec, 0xf0, 0xc8,
+ 0xb5, 0x7f, 0x6c, 0xa2, 0x0c, 0x04, 0x49, 0x34, 0xd1, 0x13, 0x62, 0x7a,
+ 0xec, 0xff, 0x3e, 0x5a, 0x10, 0x0a, 0x4a, 0xbd, 0x12, 0x74, 0x22, 0x42,
+ 0xc8, 0x8b, 0x2f, 0x6d, 0x14, 0xcd, 0x58, 0x16, 0xd3, 0xd3, 0xec, 0x08,
+ 0x5c, 0x18, 0xaa, 0x2c, 0xe8, 0xb5, 0x58, 0xf6, 0xd4, 0x29, 0xc9, 0x1b,
+ 0xe4, 0xc7, 0xcf, 0xf9, 0x9a, 0xe1, 0xf9, 0x18, 0x3e, 0x07, 0xa9, 0x28,
+ 0x29, 0x10, 0x18, 0x47, 0x32, 0x5b, 0x56, 0xdc, 0x5f, 0xd9, 0xe1, 0xcf,
+ 0x7f, 0x32, 0xd4, 0xea, 0x0c, 0x0d, 0xd1, 0xab, 0x09, 0xcf, 0xf5, 0xbe,
+ 0xe1, 0x04, 0x1d, 0x1e, 0xf7, 0xc0, 0x29, 0xba, 0x34, 0xe5, 0x15, 0x03,
+ 0xe3, 0x81, 0x4a, 0xf3, 0xd3, 0x37, 0x61, 0xb4, 0xba, 0xd6, 0x47, 0x3f,
+ 0xf3, 0x09, 0x37, 0xc4, 0x25, 0x38, 0x06, 0x4b, 0x00, 0xee, 0xe5, 0xea,
+ 0x26, 0xdf, 0x25, 0xec, 0x94, 0xf3, 0x49, 0x63, 0xc3, 0x43, 0xb8, 0xc2,
+ 0x46, 0xef, 0x9f, 0xd2, 0x5b, 0x25, 0x4a, 0x37, 0x66, 0xcf, 0xd6, 0x53,
+ 0xe2, 0x74, 0xfa, 0xea, 0xd6, 0x26, 0x13, 0xd1, 0x72, 0xfa, 0x09, 0x5a,
+ 0x25, 0xeb, 0x51, 0x52, 0x10, 0x40, 0x26, 0x48, 0x3a, 0xfd, 0xa8, 0xd2,
+ 0x44, 0xc5, 0x42, 0xe8, 0xe2, 0x8b, 0xb4, 0xf3, 0xe3, 0x0c, 0x93, 0x5c,
+ 0x2d, 0xb8, 0xe1, 0xf3, 0x19, 0x0f, 0xfe, 0xe8, 0xdb, 0xb3, 0x50, 0x60,
+ 0x7f, 0x4b, 0xa4, 0x09, 0xfe, 0xdc, 0x01, 0xbb, 0x08, 0xe8, 0xee, 0x57,
+ 0x24, 0xac, 0x00, 0x46, 0x5f, 0xc5, 0x36, 0x60, 0xbc, 0xcb, 0xbf, 0x36,
+ 0x6d, 0x53, 0xf9, 0xa7, 0xf8, 0xaa, 0x19, 0xf9, 0x17, 0xea, 0x3b, 0xac,
+ 0x96, 0x67, 0xf8, 0x51, 0x98, 0xbc, 0x39, 0xa9, 0x7f, 0x30, 0xf7, 0x56,
+ 0x17, 0xe3, 0xe7, 0xfb, 0xe3, 0xc8, 0x32, 0x49, 0x30, 0x5d, 0x26, 0xc4,
+ 0xd1, 0xd4, 0x19, 0x9d, 0x40, 0x5f, 0x53, 0xb9, 0x21, 0x1c, 0x4a, 0xf9,
+ 0xb5, 0xff, 0x0d, 0x1b, 0xf9, 0x2a, 0x32, 0xf1, 0x01, 0x81, 0x1c, 0xc1,
+ 0xcb, 0x5b, 0xe2, 0xfe, 0x14, 0xad, 0xfc, 0x3c, 0xdc, 0x63, 0xfb, 0x2d,
+ 0xad, 0x4c, 0xc8, 0x3f, 0xc3, 0xd3, 0xff, 0x26, 0xa4, 0x57, 0xb4, 0x60,
+ 0xd1, 0xef, 0xe4, 0xb9, 0x0f, 0x3b, 0xc8, 0x37, 0x1f, 0xe9, 0x5a, 0x41,
+ 0x03, 0x0e, 0xdc, 0x22, 0xdf, 0xbc, 0xd5, 0x26, 0x40, 0x25, 0xd0, 0xda,
+ 0x1b, 0x6d, 0xb0, 0x7e, 0x22, 0xd6, 0xc1, 0x15, 0x10, 0xd8, 0x7b, 0x47,
+ 0xb5, 0x6b, 0xb8, 0x33, 0x2a, 0xaa, 0x95, 0x0f, 0x3f, 0xe9, 0xf9, 0x6f,
+ 0xc3, 0xb6, 0x34, 0x01, 0xf1, 0xbd, 0xc8, 0xac, 0x2c, 0x50, 0x27, 0x36,
+ 0xae, 0x7f, 0xb7, 0x11, 0x36, 0xe8, 0xcc, 0xc7, 0x50, 0xd4, 0x2c, 0xa7,
+ 0xe6, 0xe9, 0xf9, 0x2b, 0x13, 0x57, 0xbe, 0x52, 0x0f, 0x4d, 0x42, 0xed,
+ 0x0b, 0x62, 0x46, 0x58, 0x4b, 0xc3, 0xf3, 0x94, 0xbc, 0xd6, 0x3b, 0xeb,
+ 0x1c, 0xc3, 0x1c, 0xee, 0x14, 0x8e, 0x3c, 0x1d, 0x24, 0x48, 0x06, 0x4c,
+ 0x6e, 0x11, 0xd7, 0xa4, 0xd0, 0x0a, 0x09, 0xb7, 0x4c, 0x01, 0xe4, 0x02,
+ 0x2d, 0x4d, 0x0a, 0xec, 0xcb, 0x06, 0x81, 0x0a, 0x09, 0xe0, 0xd5, 0xe1,
+ 0x3a, 0xc2, 0xee, 0xe5, 0x3b, 0xd1, 0xcb, 0x26, 0xe5, 0x28, 0xc8, 0x4f,
+ 0x24, 0xf3, 0xd7, 0xd0, 0xf3, 0x00, 0x2b, 0x42, 0xfe, 0xb5, 0x48, 0x3c,
+ 0x3a, 0xeb, 0x1d, 0xdb, 0x33, 0x03, 0xce, 0x54, 0xdf, 0x32, 0xbb, 0x2c,
+ 0x45, 0xde, 0xd7, 0x27, 0x7f, 0xd3, 0xb3, 0x48, 0xf0, 0x15, 0xf4, 0x39,
+ 0xd9, 0xc4, 0xf1, 0xd0, 0x52, 0x20, 0xb0, 0x02, 0xe7, 0x32, 0x28, 0xd6,
+ 0x1e, 0xd8, 0xd1, 0x49, 0x02, 0x30, 0xbe, 0xe8, 0x2e, 0x0b, 0xa2, 0xeb,
+ 0x9e, 0x11, 0x34, 0x0d, 0x45, 0x14, 0x46, 0x33, 0x55, 0x05, 0xd6, 0xea,
+ 0xf6, 0x40, 0xee, 0xdf, 0xe6, 0x41, 0x90, 0xd0, 0x2d, 0x11, 0xf7, 0xd3,
+ 0x0e, 0x86, 0xca, 0x3f, 0xa9, 0xd6, 0x16, 0x46, 0x3e, 0x9d, 0xfb, 0x2b,
+ 0x14, 0xb5, 0xb8, 0x00, 0x81, 0xff, 0x4a, 0xb0, 0xed, 0xbb, 0xef, 0xa9,
+ 0x5c, 0xe9, 0xaa, 0xc7, 0xe2, 0xed, 0xfd, 0x35, 0xb2, 0xd4, 0xc0, 0x29,
+ 0xed, 0x4c, 0xf6, 0x01, 0xca, 0x09, 0x27, 0x01, 0xe5, 0x24, 0x3e, 0xff,
+ 0x6d, 0x16, 0x25, 0x37, 0xaa, 0xe8, 0xa4, 0xf2, 0xdf, 0x52, 0x13, 0x02,
+ 0x0d, 0x1b, 0x09, 0xb7, 0x31, 0xf8, 0xeb, 0xb2, 0x3e, 0xd8, 0x13, 0xea,
+ 0xf9, 0x88, 0x16, 0x51, 0x64, 0xfa, 0xf7, 0x39, 0xeb, 0x0e, 0xfc, 0xc9,
+ 0xfa, 0x3e, 0x2f, 0x19, 0x15, 0x4d, 0xf9, 0xc9, 0x0c, 0xcb, 0xb0, 0x1d,
+ 0x95, 0xfc, 0x1f, 0x39, 0xf6, 0x1b, 0x0a, 0xc4, 0x09, 0xc4, 0x4c, 0xf0,
+ 0xd7, 0xb9, 0x1a, 0xfd, 0x44, 0x28, 0x1a, 0x5e, 0xea, 0x39, 0x81, 0xa8,
+ 0xef, 0xe7, 0xa7, 0x43, 0x8c, 0x16, 0x5f, 0xb9, 0x81, 0x3a, 0x12, 0xde,
+ 0xe1, 0x5b, 0x1b, 0x75, 0x5b, 0xc7, 0x0e, 0x30, 0x0d, 0xe8, 0x05, 0x35,
+ 0x02, 0xa6, 0x66, 0x68, 0xb3, 0x8e, 0xe8, 0xca, 0xb3, 0x6c, 0xf4, 0x09,
+ 0x34, 0x98, 0x02, 0x55, 0x51, 0x3b, 0x66, 0x92, 0x11, 0xde, 0xcd, 0xe7,
+ 0x54, 0x12, 0xbc, 0x70, 0x0c, 0x32, 0x82, 0x27, 0xa4, 0xf2, 0xf5, 0x62,
+ 0x13, 0x46, 0x1f, 0x2f, 0xd4, 0xc7, 0x5c, 0xf0, 0x1c, 0x30, 0x47, 0x4c,
+ 0x3d, 0x90, 0x0e, 0xfe, 0xbb, 0xb4, 0x23, 0x25, 0xdc, 0x4f, 0x7f, 0xbb,
+ 0xe6, 0x32, 0xf6, 0xcb, 0xc5, 0x57, 0xdb, 0x5a, 0x3f, 0x6d, 0x1d, 0xff,
+ 0xe3, 0x67, 0xe5, 0x4e, 0x12, 0xf6, 0x67, 0xfd, 0xa4, 0x21, 0x25, 0x10,
+ 0x46, 0xbc, 0x78, 0x11, 0xcb, 0xae, 0x0e, 0xaf, 0xe4, 0xfc, 0x50, 0x21,
+ 0x27, 0x08, 0xc2, 0x6a, 0x59, 0x01, 0x0c, 0x73, 0xdd, 0xda, 0xdd, 0xcb,
+ 0x40, 0xa1, 0x10, 0xcd, 0x08, 0x06, 0x0a, 0xc7, 0x5c, 0x12, 0x1f, 0xf8,
+ 0x1e, 0xef, 0xbd, 0x4b, 0x15, 0x5a, 0xa7, 0xd5, 0xe6, 0x45, 0x00, 0x15,
+ 0xe8, 0xe3, 0xfd, 0x05, 0x0a, 0x9b, 0x16, 0x35, 0x08, 0xaa, 0xbd, 0xcf,
+ 0x35, 0xd4, 0x2a, 0x3f, 0xbd, 0x05, 0x1b, 0xa2, 0x33, 0x39, 0x5a, 0xad,
+ 0x16, 0xe5, 0xf9, 0xd2, 0x40, 0x81, 0xf3, 0x33, 0x20, 0xc1, 0xe1, 0x22,
+ 0xec, 0x26, 0xe7, 0x0f, 0x00, 0x00, 0xde, 0xc8, 0x41, 0x24, 0x40, 0xc4,
+ 0x0f, 0x2f, 0xbb, 0x81, 0x00, 0x3c, 0x0a, 0x0b, 0x50, 0xf5, 0xa8, 0xc4,
+ 0xcf, 0xe0, 0xbb, 0x08, 0xe4, 0x2b, 0x05, 0x0b, 0x07, 0xaa, 0x42, 0x24,
+ 0x57, 0x06, 0x06, 0x32, 0x02, 0xf0, 0x0c, 0x8d, 0xf3, 0x20, 0x36, 0x2e,
+ 0xd5, 0xe1, 0xf9, 0xee, 0xd8, 0xe2, 0xee, 0xcd, 0x14, 0x33, 0x4a, 0xed,
+ 0xb9, 0xb6, 0x11, 0xff, 0xec, 0x06, 0xd3, 0xe4, 0x29, 0x35, 0xe4, 0xf5,
+ 0xda, 0x4b, 0xae, 0x1f, 0xf6, 0x3f, 0x05, 0xc3, 0x23, 0xef, 0xc0, 0x3c,
+ 0x48, 0x2d, 0x10, 0xf9, 0xd6, 0xd3, 0x05, 0xdd, 0x54, 0x42, 0x43, 0x1f,
+ 0xcb, 0x2f, 0x12, 0xe0, 0x2c, 0xcc, 0xc7, 0x13, 0x23, 0x40, 0xa7, 0xbf,
+ 0x1a, 0xe3, 0xc9, 0x81, 0xdb, 0x27, 0x49, 0xa5, 0xcf, 0x38, 0x23, 0x3d,
+ 0x0f, 0x26, 0x0c, 0xff, 0x5a, 0x69, 0xdf, 0xe0, 0xf5, 0xbd, 0x3b, 0x51,
+ 0x50, 0xc8, 0xf9, 0x05, 0x0d, 0xf9, 0x1a, 0x0e, 0x51, 0x66, 0xb2, 0x1f,
+ 0xbb, 0x4d, 0x7f, 0x41, 0xe7, 0x10, 0x53, 0x5e, 0xca, 0x16, 0xef, 0x3f,
+ 0x97, 0xd6, 0x12, 0xcb, 0x59, 0x2d, 0x44, 0xa9, 0xe7, 0x4e, 0xa6, 0x4b,
+ 0x52, 0x18, 0xd0, 0xfe, 0xc3, 0x20, 0x7d, 0x1c, 0x43, 0x16, 0x65, 0x35,
+ 0x45, 0xa0, 0xd5, 0x0d, 0x58, 0xbf, 0xa6, 0x69, 0x6b, 0x28, 0xdf, 0xf3,
+ 0xa2, 0x57, 0x10, 0xd6, 0x16, 0xd3, 0x44, 0x0f, 0x17, 0xf0, 0xcd, 0x18,
+ 0xe9, 0xdb, 0xa7, 0x06, 0x2b, 0x54, 0xc9, 0x09, 0xfe, 0x34, 0x25, 0xf9,
+ 0xc0, 0x47, 0xc5, 0xd3, 0xd6, 0xc5, 0x43, 0xd2, 0x5a, 0x94, 0x49, 0x34,
+ 0x22, 0xb4, 0x07, 0xf8, 0x00, 0x0d, 0x4e, 0xeb, 0x04, 0xbc, 0x56, 0x15,
+ 0x28, 0xe0, 0xdc, 0x42, 0x06, 0xe2, 0x35, 0xb0, 0xa2, 0xb4, 0x4a, 0x43,
+ 0xd1, 0xc5, 0x18, 0x57, 0xfa, 0x29, 0x7f, 0x4b, 0x23, 0xdd, 0xf6, 0xd2,
+ 0xc1, 0x26, 0x1e, 0x61, 0x2b, 0x5b, 0xe5, 0x12, 0xe3, 0x06, 0x02, 0x27,
+ 0xc1, 0xd0, 0xe5, 0x4f, 0x27, 0x0a, 0x1b, 0x08, 0x7f, 0x41, 0x24, 0xd9,
+ 0xe5, 0x50, 0x16, 0xec, 0x23, 0xe9, 0x3b, 0xd0, 0x31, 0x47, 0xff, 0xdf,
+ 0x8b, 0x17, 0x04, 0xe9, 0xac, 0x99, 0xfb, 0x41, 0xc7, 0x48, 0x2e, 0xf3,
+ 0x1a, 0x0b, 0x4b, 0xc1, 0xda, 0x2d, 0xb8, 0xcc, 0x5e, 0x45, 0x97, 0x49,
+ 0xac, 0x51, 0xb1, 0xab, 0x47, 0xbd, 0x0f, 0xee, 0x59, 0x1f, 0xe8, 0x3b,
+ 0x53, 0xf2, 0xd6, 0xc5, 0x54, 0xdb, 0x48, 0xe5, 0x92, 0xcc, 0xb8, 0xb0,
+ 0x30, 0x11, 0x28, 0xbc, 0x9a, 0xff, 0x81, 0x2b, 0x5c, 0xec, 0xad, 0x64,
+ 0x2c, 0xf8, 0x29, 0xff, 0x99, 0xda, 0x28, 0x1f, 0xa8, 0xf2, 0x45, 0x1d,
+ 0xee, 0x15, 0x0c, 0xc1, 0x65, 0x23, 0x5f, 0xf6, 0xe4, 0x63, 0x0b, 0x24,
+ 0xdc, 0x4d, 0xea, 0x08, 0xcb, 0x04, 0xfc, 0xc1, 0x28, 0x86, 0x52, 0xd0,
+ 0x45, 0x42, 0xf0, 0x6c, 0xc5, 0x33, 0xc7, 0x81, 0xc8, 0x19, 0xe2, 0xf9,
+ 0xd8, 0x98, 0x4b, 0xe5, 0x04, 0xf8, 0x1a, 0x18, 0xaf, 0xc8, 0xfe, 0xf0,
+ 0xae, 0x10, 0x4b, 0x29, 0x8d, 0x10, 0xed, 0x6f, 0x4a, 0x3d, 0xb4, 0x5a,
+ 0x25, 0xf9, 0xf6, 0xcc, 0x3b, 0x0d, 0x34, 0x11, 0x32, 0x19, 0x28, 0xc1,
+ 0xb8, 0x02, 0xc5, 0x6e, 0xc1, 0xbc, 0x46, 0xd6, 0xfc, 0xc0, 0x16, 0x50,
+ 0xd7, 0x25, 0xc8, 0xe2, 0x53, 0x2d, 0x12, 0x14, 0x6d, 0xc6, 0x13, 0x0b,
+ 0xab, 0xd1, 0xc7, 0x2b, 0x02, 0x32, 0x28, 0x57, 0x24, 0x37, 0x89, 0x38,
+ 0xfb, 0xe1, 0x9b, 0x7f, 0x00, 0x25, 0x4a, 0xf4, 0xfe, 0xcc, 0x06, 0x2b,
+ 0xe8, 0xda, 0xd9, 0xe4, 0xf1, 0xd7, 0x9c, 0x63, 0xb2, 0x1d, 0x6e, 0xc0,
+ 0xa5, 0x65, 0xd2, 0x76, 0x5a, 0x10, 0xbb, 0x79, 0x3e, 0x19, 0xac, 0xaf,
+ 0x06, 0x0b, 0x29, 0x15, 0xc8, 0xf5, 0xf2, 0x0f, 0x4b, 0x36, 0x26, 0x21,
+ 0xc3, 0x32, 0x38, 0xac, 0x91, 0x02, 0xe8, 0xcc, 0x03, 0xc1, 0xe6, 0x1a,
+ 0xe8, 0x1e, 0x19, 0xf0, 0xf9, 0xdc, 0x36, 0x59, 0x46, 0x1e, 0x2d, 0x0e,
+ 0xba, 0xc5, 0xe6, 0xff, 0xde, 0xa6, 0x03, 0xdc, 0xd0, 0xf4, 0xaf, 0x35,
+ 0x34, 0x5f, 0xf9, 0x06, 0x31, 0x33, 0xe6, 0x29, 0x06, 0x40, 0x1d, 0x7f,
+ 0x39, 0x41, 0xfa, 0xcc, 0xae, 0x3b, 0x02, 0x29, 0x53, 0x20, 0xb9, 0x96,
+ 0xc5, 0x31, 0xf0, 0xf4, 0x18, 0xe4, 0xc4, 0x60, 0xcb, 0x28, 0xd4, 0xcd,
+ 0x2a, 0x06, 0x0f, 0xe2, 0x25, 0x38, 0xa6, 0x38, 0x19, 0x81, 0x9a, 0x45,
+ 0xdb, 0x09, 0xc2, 0x49, 0x30, 0x24, 0xb8, 0x09, 0xb7, 0xf4, 0x51, 0xf8,
+ 0xeb, 0xe9, 0x01, 0x86, 0x18, 0x03, 0x58, 0xe2, 0xd3, 0xc9, 0x47, 0xcf,
+ 0xd1, 0xcb, 0x0c, 0xa7, 0xb7, 0x29, 0xb9, 0x20, 0x75, 0x2d, 0x60, 0xdb,
+ 0xc1, 0xbb, 0x50, 0x31, 0xf6, 0xfd, 0xfc, 0x78, 0xe7, 0x4b, 0x3c, 0xc9,
+ 0xa9, 0x2a, 0xc3, 0xe5, 0xa3, 0x56, 0x0b, 0xee, 0x81, 0xbb, 0xf5, 0xf7,
+ 0x10, 0x3c, 0x39, 0x5c, 0xcd, 0x2f, 0x0f, 0xf3, 0xdc, 0x1f, 0x0a, 0x04,
+ 0x33, 0x37, 0xfe, 0xd9, 0xf2, 0x40, 0x1e, 0xbb, 0x52, 0xfd, 0x13, 0x10,
+ 0xee, 0xd4, 0xc0, 0xc9, 0xf2, 0x19, 0x53, 0x66, 0xc6, 0x58, 0xf3, 0x05,
+ 0x23, 0x61, 0x16, 0x50, 0x49, 0x2d, 0xcb, 0xc1, 0xea, 0x56, 0x0b, 0xe3,
+ 0xe3, 0x81, 0xfd, 0xd5, 0x17, 0xac, 0xc2, 0x43, 0xa2, 0x24, 0x3d, 0x4c,
+ 0x0d, 0x90, 0x0f, 0x20, 0x62, 0x2c, 0xc2, 0xd7, 0x01, 0xd4, 0x6e, 0x26,
+ 0xea, 0xab, 0xf8, 0xb4, 0xd2, 0x3b, 0x28, 0x9c, 0x97, 0xfb, 0x96, 0x1e,
+ 0x13, 0x11, 0x28, 0xe9, 0x5d, 0x6b, 0x23, 0xbd, 0xea, 0xde, 0xfb, 0x53,
+ 0x0f, 0xd4, 0xa0, 0x45, 0xd5, 0x16, 0xae, 0xde, 0xb4, 0x17, 0xa7, 0x03,
+ 0x46, 0xf4, 0x2a, 0xda, 0x03, 0x9e, 0x59, 0x53, 0x9f, 0xf7, 0x3c, 0x01,
+ 0x92, 0x16, 0xca, 0x78, 0x51, 0xd8, 0x3d, 0x2d, 0x04, 0xc2, 0xdf, 0x52,
+ 0xdf, 0xb3, 0xe2, 0xd9, 0x08, 0xb1, 0x10, 0x7f, 0x6b, 0xd0, 0xbd, 0xfd,
+ 0xb7, 0xad, 0xf9, 0xd5, 0x26, 0xf1, 0x52, 0x28, 0x24, 0x49, 0xb3, 0x7a,
+ 0x26, 0x65, 0x08, 0x02, 0x47, 0x4e, 0x0e, 0x35, 0xe4, 0xc4, 0x9f, 0x42,
+ 0x8f, 0xdd, 0x29, 0xa4, 0x5d, 0x35, 0x68, 0xd7, 0xf9, 0x2e, 0xca, 0x42,
+ 0x88, 0xb1, 0xe2, 0xbd, 0xe5, 0x30, 0xf1, 0x46, 0xf5, 0x83, 0x9d, 0x13,
+ 0x12, 0x66, 0xce, 0xfb, 0x2b, 0xd3, 0x0a, 0xfd, 0x02, 0x89, 0xa1, 0xd1,
+ 0xfd, 0x3a, 0x1c, 0xb4, 0x37, 0xcc, 0x40, 0xdb, 0x7f, 0x65, 0x38, 0x96,
+ 0x4e, 0x2a, 0x5c, 0x1a, 0xe7, 0x4d, 0x58, 0x37, 0x55, 0x79, 0xd9, 0xf5,
+ 0x81, 0x50, 0x0e, 0xb7, 0x1e, 0xc2, 0x2a, 0x1c, 0xb4, 0x16, 0x31, 0xc8,
+ 0xf7, 0xa6, 0xbd, 0x96, 0xf8, 0xb9, 0xbf, 0x03, 0x12, 0x0a, 0x31, 0xc9,
+ 0x54, 0x30, 0x69, 0x9f, 0x91, 0x29, 0x23, 0xb9, 0xca, 0x40, 0xe1, 0xd1,
+ 0xe0, 0x05, 0xe6, 0xb0, 0x0e, 0x1b, 0xd3, 0xf4, 0x25, 0x45, 0x2c, 0xe0,
+ 0x1f, 0xba, 0x38, 0xb4, 0xb8, 0x2e, 0x07, 0x9d, 0xbe, 0x46, 0x47, 0xc7,
+ 0xb7, 0x53, 0xcd, 0xdc, 0x00, 0xc1, 0x81, 0xf1, 0xf5, 0xba, 0xa5, 0x38,
+ 0x36, 0x6d, 0xf1, 0x94, 0x5b, 0x08, 0xa5, 0x12, 0xd3, 0x2e, 0x51, 0x62,
+ 0xd4, 0x1a, 0xf8, 0xe3, 0x12, 0x9f, 0xcb, 0xe3, 0xaa, 0xfb, 0xaa, 0xd4,
+ 0xd2, 0xc9, 0x06, 0x34, 0xf6, 0xc2, 0x35, 0x62, 0xb8, 0x4a, 0xcf, 0x3a,
+ 0x5a, 0x15, 0xfd, 0x65, 0xb3, 0xde, 0x10, 0xc5, 0x71, 0xa4, 0x6a, 0x9b,
+ 0x64, 0x55, 0xf2, 0x14, 0xd6, 0x7c, 0xf9, 0xb8, 0x04, 0xa7, 0x94, 0x41,
+ 0xff, 0x5f, 0x9d, 0x17, 0x9f, 0xcd, 0xba, 0x9c, 0xa0, 0x05, 0x1e, 0x1f,
+ 0x43, 0xe1, 0xeb, 0x16, 0x47, 0x0c, 0xca, 0xc3, 0x29, 0xe2, 0xa6, 0xd5,
+ 0xa6, 0x67, 0x12, 0xb6, 0xb8, 0x7f, 0xec, 0xd4, 0x47, 0xc1, 0x3a, 0x4a,
+ 0xf2, 0xa1, 0xdb, 0xd4, 0x2b, 0x52, 0xde, 0x96, 0xed, 0xed, 0xc5, 0x5c,
+ 0x70, 0x3f, 0xf4, 0xef, 0xed, 0xa9, 0xfc, 0x9f, 0x51, 0x44, 0xc3, 0x92,
+ 0xa2, 0xdb, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00,
+ 0x13, 0xe8, 0xff, 0xff, 0x0e, 0x8b, 0xff, 0xff, 0xff, 0x5b, 0xff, 0xff,
+ 0xdc, 0x95, 0xff, 0xff, 0x6e, 0x3c, 0x00, 0x00, 0x1b, 0x21, 0x00, 0x00,
+ 0xaa, 0xf9, 0xff, 0xff, 0x49, 0x34, 0x00, 0x00, 0xc7, 0xe5, 0xff, 0xff,
+ 0xbe, 0xad, 0xff, 0xff, 0x1e, 0x02, 0x00, 0x00, 0x87, 0x08, 0x00, 0x00,
+ 0x72, 0xd9, 0xff, 0xff, 0xc7, 0xef, 0xff, 0xff, 0x75, 0x98, 0xff, 0xff,
+ 0x2d, 0x3e, 0x00, 0x00, 0x94, 0x4d, 0x00, 0x00, 0x67, 0xb1, 0xff, 0xff,
+ 0xef, 0xf8, 0xff, 0xff, 0xcb, 0x60, 0x00, 0x00, 0x36, 0x85, 0x00, 0x00,
+ 0x24, 0xb7, 0xff, 0xff, 0x99, 0x30, 0x00, 0x00, 0x76, 0x1e, 0x00, 0x00,
+ 0xe8, 0x4d, 0x00, 0x00, 0x27, 0xbd, 0xff, 0xff, 0xfe, 0x7c, 0x00, 0x00,
+ 0x98, 0xfc, 0xff, 0xff, 0x5a, 0x0f, 0x00, 0x00, 0xe0, 0x13, 0x00, 0x00,
+ 0xcf, 0xc2, 0xff, 0xff, 0xed, 0x9a, 0xff, 0xff, 0xf9, 0x9b, 0xff, 0xff,
+ 0x9d, 0x49, 0xff, 0xff, 0xa0, 0x37, 0xff, 0xff, 0xce, 0x2f, 0xff, 0xff,
+ 0xab, 0x69, 0xff, 0xff, 0x63, 0xe9, 0xff, 0xff, 0xe5, 0x01, 0x00, 0x00,
+ 0x06, 0xc4, 0xff, 0xff, 0xa4, 0x15, 0x00, 0x00, 0xb7, 0xf4, 0xff, 0xff,
+ 0xab, 0x2f, 0x00, 0x00, 0x17, 0x35, 0x00, 0x00, 0xed, 0x0e, 0x00, 0x00,
+ 0x9e, 0xa1, 0xff, 0xff, 0x41, 0xba, 0xff, 0xff, 0x05, 0x57, 0x00, 0x00,
+ 0x18, 0xd4, 0xff, 0xff, 0x71, 0x17, 0x00, 0x00, 0x2c, 0x8e, 0x00, 0x00,
+ 0x6d, 0x9f, 0xff, 0xff, 0xa4, 0x4a, 0x00, 0x00, 0x0d, 0x3a, 0x00, 0x00,
+ 0x04, 0xe6, 0xff, 0xff, 0xa9, 0xf5, 0xff, 0xff, 0x06, 0x25, 0x00, 0x00,
+ 0x81, 0xec, 0xff, 0xff, 0xbc, 0x80, 0xff, 0xff, 0x46, 0x0b, 0x00, 0x00,
+ 0x6d, 0x3b, 0x00, 0x00, 0x98, 0xef, 0xff, 0xff, 0x37, 0x1c, 0x00, 0x00,
+ 0xf3, 0xe8, 0xff, 0xff, 0xa3, 0xa0, 0xff, 0xff, 0x8c, 0xb6, 0xff, 0xff,
+ 0x9a, 0xf6, 0xff, 0xff, 0x71, 0x9d, 0x00, 0x00, 0xcd, 0xa2, 0xff, 0xff,
+ 0x60, 0x62, 0xff, 0xff, 0x17, 0x17, 0x00, 0x00, 0xe3, 0x0b, 0x00, 0x00,
+ 0xf5, 0x70, 0x00, 0x00, 0x2a, 0x6c, 0xff, 0xff, 0xbb, 0xd1, 0xff, 0xff,
+ 0xa3, 0x96, 0xff, 0xff, 0x43, 0xfb, 0xff, 0xff, 0x79, 0x87, 0xff, 0xff,
+ 0x43, 0xf5, 0xff, 0xff, 0x16, 0x08, 0x00, 0x00, 0x47, 0x51, 0xff, 0xff,
+ 0x17, 0x0c, 0x00, 0x00, 0xd2, 0x72, 0x00, 0x00, 0x92, 0xf1, 0xff, 0xff,
+ 0xfa, 0x39, 0x00, 0x00, 0x0f, 0x40, 0x00, 0x00, 0x72, 0xab, 0xff, 0xff,
+ 0x69, 0xd9, 0xff, 0xff, 0xc3, 0x0f, 0x00, 0x00, 0xe7, 0xf1, 0xff, 0xff,
+ 0xf4, 0x84, 0xff, 0xff, 0xb1, 0x34, 0x00, 0x00, 0x09, 0x81, 0x00, 0x00,
+ 0x00, 0x08, 0x00, 0x00, 0x58, 0x6d, 0x00, 0x00, 0x6b, 0xa5, 0xff, 0xff,
+ 0x5a, 0x16, 0x00, 0x00, 0xf9, 0xd2, 0xff, 0xff, 0x6f, 0xa0, 0xff, 0xff,
+ 0x61, 0x0f, 0x00, 0x00, 0xc4, 0xb3, 0xff, 0xff, 0xbd, 0xb6, 0xff, 0xff,
+ 0xf5, 0xf7, 0xff, 0xff, 0x79, 0xd1, 0xff, 0xff, 0x17, 0xf5, 0xff, 0xff,
+ 0x27, 0xef, 0xff, 0xff, 0x7b, 0x6e, 0x00, 0x00, 0x03, 0x1d, 0x00, 0x00,
+ 0xb3, 0xbd, 0xff, 0xff, 0xa8, 0x75, 0xff, 0xff, 0xc9, 0x0e, 0x00, 0x00,
+ 0x97, 0x3e, 0x00, 0x00, 0xfd, 0xd5, 0xff, 0xff, 0x5a, 0x49, 0xff, 0xff,
+ 0xbe, 0xc4, 0xff, 0xff, 0x01, 0xba, 0xff, 0xff, 0x82, 0x0f, 0x00, 0x00,
+ 0x82, 0x20, 0x00, 0x00, 0xff, 0xcd, 0xff, 0xff, 0x31, 0xbf, 0xff, 0xff,
+ 0xae, 0x68, 0x00, 0x00, 0xde, 0xa5, 0xff, 0xff, 0xd5, 0x1c, 0x00, 0x00,
+ 0xdf, 0xd6, 0xff, 0xff, 0xc8, 0xe8, 0xff, 0xff, 0x9e, 0x86, 0x00, 0x00,
+ 0xba, 0x27, 0x00, 0x00, 0xec, 0x82, 0x00, 0x00, 0xae, 0xdd, 0xff, 0xff,
+ 0x04, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x22, 0x1d, 0x46, 0xd2,
+ 0x58, 0x2c, 0xd8, 0xae, 0xdb, 0xd8, 0xd4, 0x53, 0xec, 0x01, 0xf3, 0xa9,
+ 0x4c, 0x71, 0x3a, 0xdf, 0xe4, 0x35, 0x36, 0xe9, 0x52, 0x42, 0xa9, 0xf2,
+ 0xf9, 0xd2, 0xd4, 0x3d, 0xfb, 0x3d, 0x06, 0x49, 0xfa, 0x1a, 0x05, 0xb5,
+ 0xdf, 0x0a, 0x28, 0xc7, 0xf2, 0x2b, 0xfa, 0xfc, 0x19, 0xf9, 0x19, 0xfb,
+ 0xdc, 0x52, 0x20, 0x0f, 0xef, 0x2c, 0x47, 0x26, 0x1d, 0x57, 0x54, 0xd0,
+ 0x0b, 0xb4, 0x48, 0xc7, 0x48, 0x10, 0xce, 0x32, 0xed, 0x16, 0xfe, 0x42,
+ 0xd1, 0xd3, 0xe6, 0xe5, 0xf4, 0xaa, 0xe1, 0x2d, 0x7a, 0xf5, 0xd3, 0xe5,
+ 0x02, 0xc6, 0x5f, 0xef, 0xb8, 0x3d, 0x10, 0xd0, 0x1e, 0xff, 0x35, 0x0f,
+ 0x48, 0x15, 0x19, 0xbf, 0x0a, 0x39, 0x21, 0x49, 0xf9, 0x4f, 0xdb, 0xb3,
+ 0x2e, 0xb4, 0xb0, 0x3a, 0x3f, 0x08, 0x36, 0xc5, 0xe1, 0x30, 0xe8, 0x64,
+ 0x7f, 0x0b, 0x51, 0xcd, 0x23, 0xb6, 0xfb, 0x4a, 0xc3, 0x47, 0x53, 0x16,
+ 0xd7, 0x3e, 0xb4, 0xc7, 0x19, 0xa5, 0xb7, 0x37, 0xd8, 0xd0, 0xbe, 0x35,
+ 0x0b, 0x09, 0x8c, 0x2d, 0x9d, 0x3f, 0xcb, 0xc0, 0x54, 0x22, 0xbc, 0xac,
+ 0xf1, 0x15, 0x30, 0x22, 0xcf, 0xe4, 0xf7, 0x1c, 0x22, 0xd6, 0xc1, 0x54,
+ 0x16, 0xa7, 0xd5, 0x2f, 0x4d, 0x3d, 0xe7, 0xee, 0xb8, 0xfd, 0xac, 0x39,
+ 0x2f, 0x58, 0xaf, 0x36, 0xcc, 0x03, 0x84, 0x3f, 0x06, 0x57, 0xf7, 0x37,
+ 0x1f, 0x08, 0x38, 0xfb, 0x5d, 0xde, 0xba, 0x0d, 0xe8, 0x01, 0xf8, 0xb8,
+ 0xc2, 0x59, 0xf3, 0x0f, 0x81, 0xc3, 0xa5, 0xf0, 0x36, 0x42, 0xc0, 0x1b,
+ 0x0d, 0xac, 0x32, 0x02, 0x31, 0x4a, 0xe2, 0xea, 0xb3, 0x15, 0xcf, 0xd7,
+ 0xd1, 0xc1, 0xb7, 0x30, 0x39, 0x27, 0x5d, 0x45, 0xc7, 0xc0, 0x11, 0xfb,
+ 0x8c, 0xa8, 0xaf, 0xa2, 0x25, 0xe4, 0xa2, 0x1f, 0xdc, 0x36, 0xd6, 0x44,
+ 0xba, 0xde, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x94, 0x03, 0x00, 0x00, 0x56, 0xfc, 0xff, 0xff, 0xce, 0xde, 0xff, 0xff,
+ 0x04, 0x00, 0x00, 0x00, 0xb0, 0x01, 0x00, 0x00, 0x9a, 0xb3, 0xf3, 0x8a,
+ 0x0c, 0xc8, 0x03, 0x01, 0xeb, 0xf1, 0x0b, 0x20, 0xeb, 0x23, 0x38, 0xaa,
+ 0x53, 0x3b, 0x81, 0xf0, 0xf7, 0x0a, 0x21, 0xd4, 0x91, 0xdb, 0x08, 0xfb,
+ 0xdd, 0xf7, 0x05, 0x1b, 0xb6, 0x06, 0x3b, 0xe6, 0x13, 0x11, 0x9c, 0xed,
+ 0xa2, 0x40, 0x2e, 0x68, 0xfc, 0x7f, 0xdf, 0xa0, 0x5c, 0x28, 0x59, 0x54,
+ 0xc1, 0x2c, 0x3f, 0x45, 0xee, 0x81, 0xce, 0xf3, 0x92, 0x32, 0xc0, 0xfa,
+ 0x0d, 0xaf, 0xdd, 0xda, 0xff, 0x26, 0x05, 0xe6, 0x1d, 0x0f, 0x13, 0xc2,
+ 0x1b, 0xcd, 0x4c, 0xb1, 0x3a, 0x81, 0x75, 0x42, 0x36, 0x0d, 0x6b, 0x52,
+ 0x5a, 0x06, 0xb2, 0x5b, 0xed, 0x54, 0xb7, 0xdd, 0xae, 0x4d, 0x5d, 0x91,
+ 0x1e, 0x13, 0xca, 0x4c, 0x5f, 0x5e, 0x4e, 0x59, 0x64, 0xe1, 0x4b, 0x7f,
+ 0xe4, 0xba, 0xc4, 0x9e, 0x62, 0xb2, 0xaa, 0x24, 0xd1, 0x9e, 0x44, 0x1b,
+ 0x58, 0xf4, 0x5e, 0x5c, 0x90, 0xca, 0x6d, 0x26, 0xfc, 0x4a, 0x9f, 0xa5,
+ 0x75, 0x49, 0xfe, 0x74, 0x3b, 0xfe, 0x33, 0x83, 0xc0, 0x0a, 0xf6, 0xae,
+ 0xe4, 0xff, 0x0b, 0xcb, 0x0f, 0xca, 0xdb, 0x53, 0xc6, 0x9d, 0x5d, 0x5f,
+ 0x81, 0x90, 0x2d, 0x3b, 0x2a, 0x54, 0x37, 0xf2, 0x81, 0x47, 0xf7, 0xe1,
+ 0xb9, 0xde, 0x5d, 0xbc, 0xfa, 0xd7, 0x03, 0x19, 0xf7, 0xd5, 0x0a, 0x5b,
+ 0xfd, 0xbd, 0x2f, 0xe3, 0x1a, 0x15, 0xa8, 0xd3, 0x03, 0xce, 0xdf, 0xcc,
+ 0x36, 0xc1, 0x27, 0x9c, 0x04, 0x7f, 0xc8, 0x27, 0x3b, 0xcc, 0x16, 0x23,
+ 0xbb, 0xf3, 0x62, 0x9d, 0xad, 0x19, 0xac, 0x2d, 0xb6, 0xa8, 0xfb, 0xb1,
+ 0x5b, 0x3a, 0xee, 0x28, 0xcf, 0xd9, 0xe0, 0xd3, 0xb1, 0x3a, 0xed, 0xfd,
+ 0xd9, 0x28, 0x81, 0xe5, 0x3f, 0x17, 0xf8, 0xc5, 0xd9, 0x39, 0x2e, 0x0c,
+ 0xf9, 0xe8, 0x2c, 0xbe, 0x4f, 0x1f, 0xe1, 0xdc, 0xcd, 0xc7, 0xed, 0xb3,
+ 0xff, 0xf7, 0x19, 0x22, 0x39, 0x09, 0x46, 0xcf, 0x45, 0x67, 0x1f, 0xdf,
+ 0x7f, 0xbe, 0xfb, 0x91, 0xff, 0xc4, 0xe8, 0xe5, 0xe6, 0xc1, 0x02, 0x3e,
+ 0xa7, 0xfc, 0xed, 0x3a, 0x59, 0x45, 0x1b, 0x07, 0xc5, 0xb1, 0xc1, 0xed,
+ 0x7f, 0xc2, 0x0f, 0x5d, 0x13, 0xa1, 0x1b, 0xed, 0xdd, 0xac, 0xa4, 0x76,
+ 0x50, 0x03, 0xf0, 0x26, 0xdf, 0xd8, 0xce, 0x56, 0x76, 0x18, 0x1f, 0x8d,
+ 0x03, 0x7f, 0x5f, 0x54, 0xb7, 0x46, 0x9f, 0x51, 0x5b, 0x30, 0x3b, 0x39,
+ 0xe0, 0x18, 0xdb, 0xd2, 0x59, 0x01, 0xc2, 0x12, 0x3b, 0x30, 0x1f, 0x82,
+ 0x01, 0x7f, 0x67, 0xd9, 0x38, 0x47, 0xcf, 0xb0, 0x9b, 0xd2, 0x2b, 0x3d,
+ 0xff, 0xd5, 0xe9, 0x1c, 0x21, 0x8f, 0x58, 0xe6, 0xf3, 0xac, 0xf1, 0x0c,
+ 0x24, 0x24, 0x20, 0xbe, 0xf6, 0x7f, 0xca, 0xd9, 0x3a, 0x2a, 0x0b, 0xa2,
+ 0xea, 0x02, 0x71, 0x00, 0x81, 0xfe, 0xd2, 0x30, 0x11, 0x1c, 0xb8, 0x04,
+ 0xfe, 0x69, 0x78, 0x9e, 0x9f, 0x05, 0xe8, 0xb3, 0x55, 0xae, 0xfc, 0x09,
+ 0x48, 0xe5, 0x1e, 0x73, 0xfb, 0x13, 0xdb, 0x24, 0x33, 0xdf, 0x34, 0x36,
+ 0x81, 0xd8, 0x58, 0x61, 0x06, 0x49, 0x1c, 0x60, 0xc8, 0xfb, 0xa2, 0x42,
+ 0xd5, 0xc2, 0xce, 0xde, 0xed, 0xf3, 0xe5, 0xe4, 0x8a, 0xe0, 0xff, 0xff,
+ 0x04, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0xbf, 0x6b, 0x00, 0x00,
+ 0xbf, 0xda, 0xff, 0xff, 0x72, 0x86, 0x00, 0x00, 0xc3, 0x17, 0xfe, 0xff,
+ 0x79, 0xbf, 0xff, 0xff, 0xd9, 0x22, 0x00, 0x00, 0x5c, 0xf4, 0xff, 0xff,
+ 0x47, 0xeb, 0x00, 0x00, 0xc4, 0x2d, 0x00, 0x00, 0x5b, 0xb6, 0xff, 0xff,
+ 0x13, 0x3a, 0x00, 0x00, 0xb4, 0x9e, 0xff, 0xff, 0x99, 0x59, 0xff, 0xff,
+ 0xa0, 0x23, 0x00, 0x00, 0x59, 0x56, 0x00, 0x00, 0x84, 0x39, 0x00, 0x00,
+ 0xd6, 0xe0, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00,
+ 0x60, 0xf9, 0xc0, 0x02, 0x0c, 0x01, 0x1c, 0x03, 0x1b, 0xbe, 0x40, 0x38,
+ 0xed, 0x01, 0x0d, 0x1d, 0x15, 0x2f, 0xbb, 0xdf, 0x1c, 0xc8, 0xb7, 0x35,
+ 0x52, 0xef, 0x76, 0x01, 0xee, 0x3b, 0x01, 0x1e, 0x4e, 0x18, 0xfe, 0x2f,
+ 0xe7, 0xb1, 0x32, 0x29, 0x22, 0xdb, 0xf9, 0x4f, 0x2c, 0xd5, 0x2c, 0x20,
+ 0x35, 0xce, 0xf6, 0x1b, 0xe4, 0xab, 0xe1, 0x44, 0x05, 0x19, 0x50, 0x7f,
+ 0x32, 0xe1, 0x24, 0x37, 0x67, 0xd5, 0xb1, 0x22, 0xfe, 0x9e, 0x3f, 0x31,
+ 0x4e, 0x02, 0x2d, 0x6c, 0x3a, 0x1a, 0x0b, 0x0c, 0xff, 0x3d, 0x10, 0xe2,
+ 0x22, 0xdd, 0x13, 0x13, 0x2e, 0xd0, 0xd8, 0x6a, 0xf0, 0xef, 0x0b, 0x0e,
+ 0x0c, 0x22, 0xe8, 0x38, 0xef, 0xdb, 0x33, 0x28, 0x0e, 0xbf, 0xd4, 0x1c,
+ 0x2b, 0x12, 0x34, 0x2e, 0x19, 0x01, 0xc4, 0x07, 0xe7, 0xc7, 0xf5, 0xcf,
+ 0x08, 0xd7, 0x39, 0x66, 0xe1, 0xba, 0xf3, 0x21, 0xff, 0x17, 0xa0, 0xdd,
+ 0x42, 0xb8, 0xf9, 0xd9, 0x06, 0x0c, 0x87, 0xe6, 0x09, 0x03, 0x2e, 0x0e,
+ 0x2e, 0xed, 0x15, 0x17, 0xd3, 0xf8, 0xea, 0xea, 0x0a, 0xdf, 0x12, 0x51,
+ 0x1f, 0x36, 0xe3, 0xdc, 0xcc, 0xd7, 0xd8, 0x10, 0x13, 0x3e, 0xee, 0x2f,
+ 0xd1, 0xe9, 0xf8, 0x4e, 0x07, 0xd8, 0x15, 0x16, 0x23, 0x02, 0xd8, 0xbc,
+ 0x04, 0x21, 0x4f, 0x2e, 0xc7, 0x23, 0xcb, 0xf6, 0x07, 0xed, 0x4d, 0xd4,
+ 0xe7, 0xd3, 0xf5, 0x2b, 0xff, 0x11, 0xf2, 0xea, 0xe0, 0xc4, 0x57, 0x19,
+ 0x01, 0x42, 0xcb, 0xef, 0xcf, 0x1d, 0xe7, 0x3a, 0x07, 0x37, 0x2f, 0xbf,
+ 0x33, 0xec, 0xfc, 0x0b, 0x20, 0xbe, 0xd9, 0xe7, 0x0e, 0x24, 0x05, 0xd5,
+ 0x40, 0x08, 0xeb, 0xf4, 0x31, 0xe0, 0x17, 0x28, 0x28, 0xde, 0x0e, 0x33,
+ 0x08, 0x29, 0x3a, 0x27, 0x0c, 0xf4, 0x37, 0x16, 0xe3, 0x1e, 0x29, 0x5f,
+ 0x46, 0x2d, 0xbf, 0xba, 0xf9, 0x32, 0x06, 0x1e, 0x1c, 0x45, 0xdc, 0xcc,
+ 0xfe, 0x13, 0xf4, 0x7f, 0xfa, 0xf3, 0xed, 0xd0, 0xcc, 0xe3, 0x19, 0xd1,
+ 0x00, 0x0d, 0x4d, 0xf7, 0xd3, 0x19, 0x53, 0x0f, 0x37, 0xf0, 0x39, 0xcd,
+ 0xe9, 0x1a, 0xdd, 0x29, 0xce, 0xdf, 0xef, 0x3e, 0xec, 0x10, 0xb0, 0xf5,
+ 0x27, 0xd9, 0x20, 0x1f, 0x07, 0xe3, 0x1c, 0x17, 0xdc, 0xdf, 0x02, 0x05,
+ 0xe6, 0x18, 0xd3, 0x36, 0x15, 0xcd, 0x1c, 0x25, 0xe4, 0xed, 0xf8, 0xd7,
+ 0x10, 0xab, 0x2b, 0x05, 0x1e, 0x1e, 0xe1, 0xe7, 0x25, 0xf9, 0x02, 0x21,
+ 0x04, 0x04, 0xf5, 0xe5, 0x06, 0xf5, 0xc9, 0x33, 0x08, 0x25, 0x21, 0xed,
+ 0x23, 0x81, 0x06, 0x29, 0xe9, 0xfc, 0x36, 0xe1, 0x15, 0xd9, 0xe0, 0x34,
+ 0xe2, 0x22, 0x42, 0xdd, 0xfb, 0xdc, 0x30, 0x12, 0xfa, 0xfd, 0x2e, 0xf0,
+ 0x29, 0xd7, 0x26, 0xee, 0x23, 0x47, 0x1a, 0x09, 0xd5, 0xfa, 0x11, 0xfa,
+ 0x0e, 0x06, 0x03, 0x27, 0x04, 0xe5, 0xf2, 0x31, 0x1a, 0xee, 0xf3, 0x1c,
+ 0xf5, 0xb5, 0xd0, 0xd8, 0xeb, 0xd8, 0x05, 0x02, 0x06, 0xda, 0xe2, 0xe2,
+ 0x27, 0x00, 0xcc, 0xe7, 0x11, 0xba, 0x1c, 0xd7, 0x0c, 0x1e, 0x2a, 0x20,
+ 0x27, 0xae, 0x11, 0x14, 0xf3, 0xf0, 0xea, 0x18, 0xcf, 0x26, 0xf2, 0x3f,
+ 0x04, 0xe0, 0xfd, 0x2f, 0x32, 0xea, 0xfe, 0x30, 0x81, 0xd3, 0xc6, 0xe6,
+ 0x4b, 0x47, 0xb2, 0x3a, 0xda, 0xa4, 0xf6, 0x34, 0xe5, 0xf9, 0xe3, 0xf9,
+ 0x0c, 0xc6, 0x20, 0x4e, 0x01, 0x20, 0x08, 0x01, 0x4f, 0x12, 0x1e, 0x2a,
+ 0x39, 0xcc, 0x18, 0x04, 0x23, 0x05, 0x23, 0x1f, 0x35, 0x16, 0x15, 0xe0,
+ 0xc6, 0x09, 0x19, 0xe1, 0x08, 0xe7, 0x28, 0xf7, 0xfb, 0xed, 0x03, 0x38,
+ 0x75, 0x5c, 0xea, 0x24, 0xd1, 0xf5, 0xf8, 0xfb, 0x15, 0x35, 0xc3, 0x30,
+ 0xfb, 0x05, 0x26, 0x2c, 0xee, 0x34, 0xbf, 0x3c, 0x44, 0xdf, 0x0a, 0x21,
+ 0xf5, 0x0b, 0x06, 0xd6, 0xdb, 0xfa, 0x48, 0x11, 0x3f, 0x40, 0xe9, 0xa7,
+ 0xf3, 0x0a, 0x32, 0xd8, 0x03, 0x22, 0xf8, 0xe3, 0x92, 0x0a, 0xdc, 0xd4,
+ 0x57, 0x42, 0xed, 0xea, 0xf5, 0x85, 0x43, 0xec, 0x07, 0x26, 0xfe, 0xed,
+ 0x03, 0xdb, 0xe4, 0x35, 0x15, 0xd0, 0xf9, 0xf1, 0x3e, 0xbf, 0x1b, 0xc1,
+ 0x0e, 0xf0, 0xfd, 0x2d, 0x1a, 0x0d, 0x18, 0x07, 0x3a, 0x31, 0xc1, 0xe3,
+ 0xf5, 0xc4, 0xe2, 0x2d, 0x41, 0xea, 0x13, 0xf1, 0xf8, 0x0d, 0xe7, 0xcf,
+ 0x0e, 0xbb, 0xb7, 0x56, 0xfc, 0xfa, 0xf4, 0x38, 0x16, 0xf7, 0xf8, 0xf4,
+ 0xf5, 0xab, 0x13, 0x15, 0xcd, 0x49, 0x06, 0x09, 0xf8, 0xd1, 0x2b, 0x35,
+ 0xee, 0xac, 0xc0, 0xf2, 0xd2, 0x1a, 0xe2, 0x49, 0xea, 0x0a, 0xbf, 0x50,
+ 0xed, 0x11, 0x14, 0xe2, 0x33, 0xfd, 0x10, 0x0d, 0xb2, 0xaa, 0x10, 0xe0,
+ 0x32, 0x00, 0xef, 0x13, 0xbc, 0xdf, 0xf9, 0xeb, 0xd5, 0xb2, 0x31, 0x53,
+ 0x2c, 0xdd, 0xfb, 0x31, 0xe3, 0x5e, 0xbf, 0xf9, 0xaa, 0x15, 0x5a, 0xba,
+ 0x3b, 0xca, 0x44, 0x0e, 0xfb, 0xd6, 0x11, 0x41, 0x30, 0x05, 0xbb, 0x11,
+ 0x81, 0xec, 0x00, 0xc9, 0x06, 0x01, 0xd3, 0x1c, 0x0b, 0x0d, 0xb3, 0xfd,
+ 0x4f, 0xb0, 0xc9, 0x46, 0x21, 0xd0, 0xfa, 0x38, 0xe2, 0xf6, 0xd8, 0x29,
+ 0x06, 0x9d, 0x2f, 0x04, 0xff, 0x13, 0x1c, 0x2d, 0x9c, 0x17, 0x03, 0xdd,
+ 0x18, 0xd2, 0xbd, 0xf3, 0x27, 0x18, 0xfe, 0x0b, 0x15, 0xd2, 0xb2, 0x05,
+ 0x09, 0xfa, 0x4a, 0xad, 0xbd, 0xfc, 0xba, 0x53, 0xc4, 0xe5, 0xd6, 0xe9,
+ 0x07, 0xd5, 0xfa, 0xda, 0x00, 0xdc, 0xeb, 0xea, 0xe3, 0x02, 0xbd, 0x37,
+ 0xf4, 0x1c, 0x14, 0xf9, 0x3d, 0xe8, 0x43, 0xeb, 0xe4, 0xef, 0x09, 0xe4,
+ 0xa6, 0xea, 0x0b, 0x39, 0x11, 0xed, 0x10, 0xee, 0x0c, 0x23, 0x00, 0x34,
+ 0xc4, 0xde, 0xe3, 0xfc, 0xb1, 0xff, 0x0e, 0x0d, 0x33, 0x37, 0x0a, 0xd2,
+ 0x14, 0x0f, 0xe6, 0x45, 0xcf, 0x04, 0xdf, 0xe9, 0xce, 0xa9, 0x35, 0x54,
+ 0xfb, 0x18, 0xf3, 0xf7, 0xe4, 0x06, 0x01, 0x15, 0x1e, 0x19, 0x3b, 0xea,
+ 0xe8, 0x00, 0xff, 0x27, 0x1c, 0x0f, 0xe0, 0xa7, 0x07, 0x2b, 0x1c, 0x3d,
+ 0x21, 0xaf, 0x05, 0xaf, 0x81, 0x00, 0xbc, 0xeb, 0xca, 0x29, 0x1e, 0xdc,
+ 0xfe, 0xd2, 0xea, 0x3a, 0x29, 0x20, 0x26, 0xef, 0xb3, 0xe0, 0x10, 0x15,
+ 0x34, 0x2f, 0x29, 0xe4, 0x2a, 0xed, 0xff, 0x4e, 0x1c, 0xfa, 0xff, 0x99,
+ 0xcf, 0xab, 0xef, 0x21, 0xd6, 0x36, 0x3d, 0xde, 0x25, 0x17, 0xca, 0x23,
+ 0x55, 0x16, 0x07, 0x31, 0x41, 0xc3, 0xd5, 0xf8, 0x21, 0x14, 0x7f, 0xe1,
+ 0xc9, 0x34, 0xcc, 0x1d, 0x05, 0x26, 0xeb, 0x42, 0x07, 0x27, 0x18, 0xee,
+ 0x24, 0xeb, 0x1d, 0x32, 0x3f, 0xb3, 0x1e, 0xd3, 0x22, 0x0f, 0xc3, 0xc2,
+ 0x3c, 0x2a, 0x15, 0xd1, 0x21, 0xf9, 0x2e, 0xf0, 0xec, 0x25, 0x13, 0x47,
+ 0x33, 0xf1, 0xd0, 0x0d, 0xda, 0x30, 0xfa, 0x07, 0x53, 0xff, 0x48, 0xc2,
+ 0x09, 0x61, 0x35, 0x3c, 0x79, 0x07, 0xfa, 0x31, 0xd5, 0x56, 0xe5, 0xcf,
+ 0x52, 0x14, 0x4a, 0xd7, 0xd8, 0x15, 0xe1, 0x28, 0xfe, 0x2d, 0xda, 0xf3,
+ 0xea, 0xfd, 0x2b, 0xd8, 0x11, 0xfb, 0xca, 0x1b, 0x11, 0xe2, 0x46, 0x1e,
+ 0xff, 0x01, 0xfe, 0xd4, 0xe8, 0x09, 0xea, 0x2b, 0xe6, 0xe5, 0xe2, 0xab,
+ 0x24, 0x53, 0xf9, 0x3d, 0x01, 0xf4, 0x15, 0x4a, 0xc5, 0x1b, 0xa2, 0x12,
+ 0xe9, 0x38, 0x4c, 0xf5, 0x0d, 0xc4, 0x17, 0x20, 0xeb, 0xef, 0x18, 0x25,
+ 0xd7, 0xbe, 0xfe, 0xe9, 0x00, 0x00, 0xf5, 0xbb, 0x0f, 0xd7, 0x2c, 0xfe,
+ 0x44, 0x4f, 0xa8, 0x2e, 0xef, 0x1b, 0xc9, 0x25, 0xf1, 0x0b, 0x2d, 0xe6,
+ 0x20, 0xf1, 0x07, 0xc4, 0xf2, 0x38, 0xfd, 0xd0, 0x00, 0xee, 0x31, 0x10,
+ 0x11, 0x12, 0xf1, 0xe7, 0x2d, 0x2d, 0x37, 0x20, 0x38, 0x94, 0xd8, 0x23,
+ 0xea, 0xc3, 0xb5, 0x2a, 0xf8, 0xbf, 0xcd, 0xbd, 0xf1, 0xf3, 0x81, 0x27,
+ 0xbc, 0xdb, 0xfe, 0xca, 0xf8, 0x21, 0x25, 0x1f, 0x09, 0x31, 0x50, 0xd5,
+ 0x2e, 0xbd, 0xf2, 0xe3, 0xe7, 0x4a, 0x1a, 0x09, 0x20, 0x04, 0xc4, 0x0d,
+ 0x1c, 0x18, 0x40, 0xea, 0x30, 0x56, 0x36, 0x29, 0xe8, 0x92, 0x15, 0x3a,
+ 0x35, 0xcc, 0xd8, 0x20, 0xee, 0x3d, 0x1f, 0x09, 0x57, 0x14, 0xbd, 0xd9,
+ 0x2e, 0x0d, 0xae, 0x26, 0xb1, 0x33, 0xf1, 0x41, 0x3a, 0xeb, 0x64, 0x18,
+ 0xfc, 0x24, 0xe5, 0x08, 0xec, 0x36, 0xba, 0x43, 0xad, 0x07, 0x32, 0xeb,
+ 0x36, 0xf3, 0x3d, 0x23, 0x33, 0x57, 0x04, 0xed, 0x36, 0xa3, 0x26, 0xff,
+ 0x02, 0xee, 0xcd, 0xe2, 0xeb, 0xc1, 0xc2, 0x4c, 0x1c, 0x09, 0x89, 0xd0,
+ 0xc9, 0x2b, 0x0e, 0xdc, 0x16, 0xf9, 0x12, 0x01, 0xec, 0xe6, 0xec, 0x0a,
+ 0x18, 0x2c, 0xf5, 0x35, 0x15, 0xdf, 0x30, 0x17, 0x2e, 0x98, 0x47, 0xf3,
+ 0x20, 0xfc, 0x0b, 0x0b, 0xe9, 0x09, 0x38, 0x12, 0xf1, 0xdb, 0xdf, 0xd3,
+ 0x11, 0xd8, 0xe5, 0xa7, 0x06, 0xd5, 0x09, 0x21, 0xf5, 0xce, 0xcc, 0xbe,
+ 0x1f, 0xf1, 0x34, 0xe3, 0x14, 0xe5, 0xfd, 0xfa, 0xf9, 0x24, 0xf9, 0xed,
+ 0xee, 0x0c, 0x26, 0x1b, 0x2f, 0xea, 0xfe, 0x18, 0x35, 0x81, 0x4a, 0xf4,
+ 0x18, 0xf1, 0x25, 0xf7, 0x34, 0x00, 0x2b, 0x24, 0xff, 0x09, 0x10, 0xee,
+ 0x2d, 0xe4, 0x1e, 0xfc, 0x3c, 0x14, 0xe6, 0xec, 0xfb, 0x04, 0x1b, 0xc2,
+ 0xf0, 0x1c, 0xea, 0xe6, 0xd2, 0xb7, 0x55, 0x2d, 0xfb, 0x0a, 0xd6, 0x29,
+ 0xec, 0xee, 0x0a, 0x28, 0xf2, 0xfe, 0x29, 0xed, 0x39, 0xd7, 0x18, 0xe7,
+ 0x1a, 0xea, 0x39, 0x2c, 0x15, 0x02, 0x05, 0xf6, 0x38, 0xce, 0x15, 0xfc,
+ 0x06, 0xe8, 0x0e, 0xfe, 0x04, 0x0c, 0xf5, 0xed, 0x04, 0xf3, 0xc7, 0xd5,
+ 0xe0, 0x03, 0x19, 0xcd, 0xf1, 0x64, 0x1b, 0xd7, 0x40, 0xef, 0x04, 0xb7,
+ 0xb5, 0x4f, 0xfc, 0x14, 0xd2, 0xcd, 0x3c, 0xe0, 0xfb, 0x28, 0xd0, 0xdc,
+ 0xf3, 0x17, 0x7f, 0x45, 0xa4, 0x33, 0xdf, 0xe5, 0x22, 0xec, 0xf6, 0xe0,
+ 0x04, 0xee, 0xc8, 0x31, 0x20, 0x0d, 0x02, 0x3c, 0xf8, 0x6b, 0x34, 0x4e,
+ 0xcc, 0xf7, 0xd9, 0x14, 0x4d, 0x03, 0x16, 0xb8, 0x2a, 0xc2, 0xdb, 0x1c,
+ 0x0b, 0x24, 0xde, 0xd3, 0xf4, 0x24, 0xc8, 0xff, 0xda, 0x35, 0x06, 0x04,
+ 0x17, 0x42, 0x25, 0x3d, 0xf9, 0x1a, 0xfb, 0x0a, 0xf7, 0xdf, 0xcd, 0xe0,
+ 0xf5, 0x2f, 0x29, 0x24, 0x29, 0x3c, 0xb9, 0xeb, 0x02, 0x51, 0x21, 0x28,
+ 0xe5, 0xe2, 0xe4, 0xfb, 0x1b, 0xf3, 0xc6, 0x16, 0xdc, 0xed, 0xd9, 0x2e,
+ 0x40, 0x3d, 0xd0, 0x3b, 0x2c, 0xc6, 0xd3, 0x08, 0xcf, 0xc8, 0xaf, 0x1b,
+ 0x45, 0xe0, 0xfd, 0x19, 0xc6, 0xee, 0xde, 0x2b, 0xca, 0x10, 0xa0, 0xe3,
+ 0x2b, 0xe7, 0xe9, 0xc9, 0xd9, 0xf6, 0x9c, 0x45, 0x26, 0x4e, 0xd2, 0x45,
+ 0xd9, 0xbf, 0xeb, 0xed, 0xce, 0xf9, 0x98, 0x44, 0xd7, 0x10, 0x25, 0xf5,
+ 0xe3, 0xaa, 0xe1, 0x12, 0x1c, 0x18, 0xdc, 0x35, 0xc1, 0x1a, 0xfa, 0xe6,
+ 0xf6, 0xaf, 0x61, 0xc1, 0xc3, 0xfc, 0xfe, 0xf0, 0x45, 0x0b, 0x17, 0xe1,
+ 0xa3, 0xe7, 0xcc, 0x0c, 0xf2, 0x16, 0x50, 0xbe, 0x34, 0xef, 0x19, 0x1f,
+ 0x42, 0xcf, 0x07, 0xdd, 0x0f, 0xf8, 0xc1, 0x13, 0x09, 0xde, 0xfa, 0xd1,
+ 0xb0, 0xf5, 0x14, 0xfe, 0xe5, 0x4f, 0xd4, 0xec, 0xcf, 0x1e, 0xaf, 0x33,
+ 0xd5, 0xe1, 0x06, 0xf2, 0xeb, 0xd1, 0x33, 0x28, 0x5c, 0x21, 0x16, 0x33,
+ 0x28, 0x09, 0x2a, 0xc6, 0x32, 0xd4, 0x3b, 0x22, 0x1b, 0x4d, 0xe6, 0x35,
+ 0x53, 0xbc, 0xd9, 0x3c, 0x35, 0x28, 0x22, 0xd2, 0xf2, 0xa4, 0xec, 0x1d,
+ 0x1f, 0xab, 0xa8, 0xc7, 0xea, 0xd0, 0x2b, 0x54, 0xcd, 0x64, 0xe3, 0x36,
+ 0x36, 0x30, 0x58, 0x52, 0xc2, 0xef, 0x0c, 0x2e, 0x54, 0x00, 0xbb, 0x04,
+ 0x2e, 0x5c, 0xe9, 0xfe, 0xc8, 0xc4, 0x05, 0x34, 0xd7, 0x7f, 0xcb, 0x3b,
+ 0xd4, 0xdd, 0x33, 0x4d, 0x9d, 0x18, 0x47, 0x64, 0xe8, 0x29, 0xf8, 0xa4,
+ 0xef, 0xaf, 0xd3, 0x0a, 0xd9, 0xe6, 0x03, 0xeb, 0xdb, 0xa8, 0xce, 0x51,
+ 0xc8, 0x2f, 0x00, 0x97, 0xe0, 0x10, 0x30, 0x04, 0xd3, 0xf8, 0xc2, 0x22,
+ 0x8f, 0x49, 0x35, 0xdb, 0x08, 0x1a, 0x0b, 0x59, 0xc9, 0xdd, 0xa9, 0xf7,
+ 0xc4, 0x4d, 0xef, 0x55, 0xab, 0x25, 0x56, 0x48, 0xf8, 0xa2, 0xcf, 0xea,
+ 0xf3, 0xd3, 0x36, 0x6e, 0xea, 0x49, 0x0e, 0xfe, 0xe2, 0xbd, 0x33, 0x3b,
+ 0xb9, 0xb7, 0x10, 0xba, 0x4b, 0x7f, 0xdf, 0x2c, 0x0e, 0x28, 0x2d, 0x04,
+ 0x07, 0x22, 0xba, 0x5c, 0xf7, 0x0e, 0x2f, 0x41, 0x42, 0xc2, 0xea, 0xfc,
+ 0xc1, 0x41, 0xfb, 0x54, 0x00, 0x2f, 0xa6, 0xed, 0x17, 0xc2, 0xea, 0xc9,
+ 0x9f, 0xe3, 0xd0, 0xfa, 0xf0, 0xd7, 0xcc, 0xd4, 0x2a, 0xfb, 0x19, 0xf7,
+ 0x0a, 0x9a, 0x5b, 0x9f, 0x20, 0x46, 0x04, 0x33, 0xa8, 0xd1, 0x42, 0xfc,
+ 0xb2, 0x70, 0x9e, 0xf1, 0xdf, 0x03, 0xe0, 0x46, 0x18, 0xdf, 0x99, 0x1c,
+ 0xe2, 0xec, 0x12, 0x7b, 0xf3, 0xee, 0xef, 0xed, 0xf2, 0x21, 0xc1, 0x59,
+ 0xd8, 0x0c, 0xc7, 0xe7, 0xa7, 0x40, 0xa0, 0x05, 0x30, 0x2a, 0xfc, 0xc7,
+ 0x20, 0x0c, 0x81, 0xf1, 0xe3, 0xd1, 0xad, 0x4b, 0x2b, 0xe8, 0x9e, 0x24,
+ 0x3a, 0xae, 0x17, 0xc5, 0xc7, 0xa2, 0xde, 0xd9, 0xf1, 0xdf, 0xb4, 0xfd,
+ 0xe8, 0xc5, 0x43, 0x75, 0x0b, 0x06, 0x16, 0xca, 0xf2, 0xce, 0x34, 0x00,
+ 0xe7, 0xd1, 0x00, 0x16, 0xb5, 0x15, 0xcd, 0xff, 0x56, 0x00, 0x22, 0x01,
+ 0x2e, 0x27, 0xa7, 0xea, 0xe7, 0x41, 0xb9, 0x3b, 0xaa, 0xe9, 0xca, 0x73,
+ 0xe5, 0xff, 0xee, 0xac, 0x06, 0xfc, 0x26, 0xfe, 0x15, 0xca, 0x35, 0x9b,
+ 0x36, 0xa3, 0x07, 0x68, 0x5b, 0x08, 0xaf, 0x0e, 0x3f, 0x0f, 0x98, 0x37,
+ 0xd4, 0xbf, 0xb3, 0xb7, 0xc5, 0xd3, 0x15, 0x10, 0x50, 0xc5, 0xd0, 0x35,
+ 0xd2, 0x0d, 0xcf, 0xb8, 0x32, 0x34, 0xfe, 0xe8, 0x09, 0xd3, 0x40, 0xc9,
+ 0x41, 0xf0, 0x1c, 0xaf, 0x0a, 0x31, 0xcf, 0xf9, 0x42, 0x43, 0xfd, 0x15,
+ 0xd8, 0xc1, 0xe6, 0x4b, 0x0d, 0xe6, 0xcd, 0xd7, 0x25, 0x37, 0x18, 0xb5,
+ 0x95, 0x2a, 0x3d, 0xd6, 0xf1, 0xc4, 0x3d, 0x2a, 0x53, 0xbf, 0xbf, 0xdd,
+ 0xde, 0x66, 0x50, 0xec, 0xc3, 0x01, 0x41, 0xc3, 0xd2, 0xe8, 0x21, 0xe8,
+ 0xea, 0xb6, 0xf4, 0x1c, 0xfe, 0x58, 0x3e, 0x20, 0x94, 0xaf, 0xff, 0x1f,
+ 0xfb, 0xc0, 0x02, 0x40, 0x45, 0xd8, 0xd7, 0xe5, 0xc2, 0x57, 0x19, 0xd2,
+ 0xcb, 0x12, 0xf2, 0x20, 0x23, 0x0e, 0x11, 0x0e, 0x4d, 0x23, 0xe1, 0xf6,
+ 0x2e, 0x14, 0x0c, 0x1f, 0xc1, 0x39, 0x28, 0x0a, 0xdc, 0x23, 0xea, 0x01,
+ 0x45, 0xc4, 0x17, 0x14, 0x20, 0x50, 0xe7, 0x0f, 0x81, 0xce, 0xc7, 0xcb,
+ 0xe4, 0xd6, 0xe2, 0x3f, 0x03, 0x15, 0x13, 0xfb, 0x26, 0xfc, 0x30, 0xf8,
+ 0xcc, 0x32, 0x1c, 0x39, 0x2d, 0x13, 0xde, 0xec, 0x01, 0xc8, 0x39, 0xf7,
+ 0xd1, 0xe4, 0x19, 0xff, 0xba, 0x22, 0xf2, 0x10, 0x2d, 0xcf, 0x40, 0xf2,
+ 0xe6, 0xe8, 0x12, 0xed, 0x36, 0xf4, 0xdf, 0x09, 0xa0, 0xcd, 0x0f, 0xec,
+ 0xf7, 0x21, 0x53, 0x21, 0xec, 0xe3, 0x43, 0xc8, 0xd7, 0x32, 0xb9, 0x3a,
+ 0xc4, 0xe2, 0x01, 0x3c, 0x19, 0xe8, 0x41, 0x37, 0x1b, 0xcb, 0xf9, 0xe6,
+ 0x22, 0x4b, 0xbf, 0xd8, 0x3b, 0x9e, 0xc8, 0x03, 0x71, 0xb6, 0x2d, 0x1f,
+ 0xb9, 0x39, 0x09, 0x14, 0x42, 0xf8, 0x3e, 0x08, 0xc2, 0xff, 0x15, 0xcf,
+ 0xf1, 0x2c, 0xe6, 0x05, 0xec, 0x35, 0x1a, 0xf0, 0x03, 0xf3, 0xf4, 0xfa,
+ 0xf6, 0x0c, 0x55, 0x4c, 0x31, 0xcb, 0x20, 0x2d, 0xc9, 0x35, 0x47, 0x1e,
+ 0x31, 0xd5, 0xc2, 0xd7, 0x05, 0x41, 0xe3, 0x1c, 0x7f, 0x1d, 0x1a, 0x14,
+ 0x27, 0x3c, 0xc6, 0x28, 0x59, 0xd3, 0x38, 0x26, 0xbe, 0x50, 0xe3, 0x0a,
+ 0xc4, 0x1e, 0x30, 0x18, 0x09, 0x1d, 0x2f, 0x18, 0xcf, 0xdb, 0xf7, 0x3b,
+ 0xfa, 0xe1, 0x53, 0xf4, 0x2c, 0x11, 0x02, 0xcb, 0x1d, 0x1b, 0xe6, 0xf4,
+ 0xd9, 0xe1, 0x06, 0xbf, 0xf9, 0x0c, 0x3b, 0xe8, 0x60, 0x2e, 0xd8, 0xe3,
+ 0x14, 0x52, 0xed, 0x24, 0x57, 0x48, 0x20, 0xe4, 0xc0, 0xfa, 0xca, 0xf8,
+ 0x10, 0xd8, 0xfa, 0xd3, 0xd7, 0xc4, 0x37, 0x00, 0xe8, 0xa3, 0xb7, 0xd2,
+ 0xd6, 0xa3, 0x9c, 0xe5, 0x26, 0x2f, 0x16, 0x38, 0x0d, 0x10, 0x4c, 0xee,
+ 0x0f, 0xb1, 0x32, 0xe8, 0x0c, 0xc7, 0xeb, 0x1d, 0xb6, 0xda, 0x1e, 0xf1,
+ 0xf5, 0xd1, 0xdf, 0x3c, 0xa6, 0x96, 0x05, 0x11, 0x1c, 0xf2, 0xd3, 0xb4,
+ 0x1c, 0x94, 0x20, 0x24, 0x39, 0x41, 0xf6, 0x3f, 0x1b, 0xa5, 0xd2, 0x12,
+ 0x06, 0xfb, 0x8a, 0x11, 0x01, 0xcb, 0xcc, 0x4e, 0xcf, 0x02, 0x17, 0xd6,
+ 0x16, 0xb4, 0x29, 0x5f, 0x34, 0x20, 0xa4, 0xc3, 0xbf, 0x33, 0xce, 0xf0,
+ 0xf3, 0xf2, 0x0d, 0xff, 0x15, 0xd5, 0xdb, 0x7f, 0x02, 0x1f, 0xc5, 0xee,
+ 0xf2, 0x96, 0x11, 0xfe, 0x15, 0xdd, 0x0e, 0xd0, 0xca, 0x18, 0x42, 0xe2,
+ 0x0c, 0xa6, 0xfb, 0xa7, 0x1e, 0xfe, 0xe0, 0xdb, 0x12, 0xf6, 0x3a, 0x13,
+ 0xf5, 0xf5, 0x14, 0xec, 0x30, 0xd8, 0xa2, 0xeb, 0xaa, 0x26, 0xf1, 0x42,
+ 0x35, 0xe1, 0x47, 0x1a, 0xe3, 0xab, 0x05, 0x50, 0xd8, 0xf5, 0xcc, 0xfa,
+ 0xf7, 0xad, 0x17, 0x18, 0xc3, 0xf6, 0xcb, 0xde, 0x4d, 0x05, 0xdc, 0xf8,
+ 0xf6, 0xa0, 0x14, 0xbb, 0x39, 0xad, 0xda, 0x13, 0x08, 0x22, 0x27, 0xe7,
+ 0x09, 0xc3, 0xc7, 0x09, 0x3f, 0x04, 0xcf, 0xf2, 0xef, 0xaf, 0xff, 0x03,
+ 0x89, 0x48, 0xa1, 0xe6, 0xca, 0xea, 0x1d, 0x91, 0xf1, 0xf5, 0xbc, 0xa5,
+ 0x09, 0x11, 0x39, 0x07, 0xdd, 0x0a, 0xc2, 0x2a, 0x43, 0x2d, 0xbc, 0xc0,
+ 0xcd, 0xae, 0x14, 0xfb, 0x11, 0x9f, 0x02, 0x04, 0x0b, 0x44, 0x08, 0xbf,
+ 0xc2, 0x1b, 0xb9, 0x1b, 0xbf, 0xfc, 0x36, 0x33, 0x07, 0xca, 0xce, 0xb7,
+ 0xfc, 0x0f, 0xfd, 0x28, 0x53, 0x04, 0xed, 0xb1, 0xfc, 0xcf, 0xb7, 0xdf,
+ 0xe2, 0x00, 0x12, 0xd0, 0x07, 0xff, 0x16, 0x20, 0xfc, 0x3d, 0x1d, 0xe4,
+ 0x29, 0x08, 0xe8, 0xd8, 0x52, 0xc7, 0x31, 0xfb, 0xb9, 0x34, 0x24, 0xe2,
+ 0xf8, 0x0d, 0xc8, 0x13, 0xed, 0xc9, 0xfb, 0x3d, 0x62, 0x81, 0xdc, 0x01,
+ 0x02, 0xdd, 0xa2, 0xe1, 0x1f, 0xc5, 0x41, 0xfa, 0xdf, 0x02, 0x99, 0xdc,
+ 0x2c, 0xa7, 0xdf, 0xe3, 0xcc, 0xba, 0xdf, 0xe8, 0x30, 0xc6, 0xea, 0x22,
+ 0xe5, 0xcc, 0x12, 0xa9, 0xe3, 0x4e, 0xe2, 0x34, 0xc5, 0x38, 0xcd, 0xbd,
+ 0xde, 0xd0, 0x06, 0x4c, 0x50, 0xf2, 0xb5, 0xd6, 0x1e, 0xee, 0x39, 0xc1,
+ 0x9f, 0x00, 0x23, 0x01, 0x06, 0xf3, 0xe1, 0x1c, 0x62, 0xa3, 0xb3, 0x98,
+ 0x11, 0x1f, 0x27, 0xe3, 0xf5, 0x25, 0xcf, 0x02, 0x05, 0x2b, 0xc3, 0x3e,
+ 0x1e, 0x8d, 0xf5, 0xd0, 0x6a, 0x3d, 0x32, 0xcf, 0xd1, 0xc4, 0xf6, 0xa7,
+ 0x50, 0xbf, 0xb6, 0x4e, 0x39, 0xba, 0xf9, 0x4d, 0x35, 0x30, 0xe2, 0xcb,
+ 0xc5, 0xa6, 0x0e, 0xfe, 0x40, 0x4f, 0xe8, 0xb2, 0x1f, 0xaa, 0xbe, 0xb1,
+ 0x56, 0x8c, 0xce, 0x19, 0x05, 0xfc, 0xf7, 0x05, 0x03, 0xf1, 0xde, 0x35,
+ 0x0a, 0xc6, 0x0e, 0xc9, 0xd7, 0x0d, 0xf4, 0x1a, 0x0d, 0x5d, 0x0b, 0xe4,
+ 0xe7, 0x49, 0xc3, 0xf5, 0x7f, 0xe1, 0x14, 0xd8, 0x1c, 0x0e, 0x26, 0xeb,
+ 0x38, 0xef, 0x0e, 0xe7, 0x06, 0xf0, 0xeb, 0xd8, 0x44, 0xb7, 0xca, 0xa1,
+ 0x2e, 0x00, 0xb5, 0x11, 0xfb, 0x21, 0xc2, 0x17, 0xe0, 0x57, 0x7f, 0xc4,
+ 0xc0, 0xf4, 0x15, 0x50, 0xf1, 0xdd, 0x23, 0xb2, 0xaf, 0xd1, 0xbb, 0x68,
+ 0x46, 0x0a, 0x0e, 0xf0, 0xdb, 0x26, 0x06, 0x4e, 0x4d, 0xda, 0xeb, 0xd8,
+ 0xb3, 0xd2, 0x91, 0x18, 0xf2, 0x10, 0x46, 0xcb, 0x01, 0xd1, 0x23, 0x38,
+ 0x49, 0xf4, 0x24, 0x27, 0xd5, 0x0a, 0xda, 0x0f, 0xcf, 0x6a, 0x79, 0x44,
+ 0xc6, 0xe7, 0x10, 0x1a, 0xcb, 0x1d, 0x35, 0x58, 0x12, 0xf4, 0xf4, 0xfd,
+ 0xbb, 0x40, 0xdd, 0x4e, 0x31, 0xf3, 0x0e, 0xe0, 0x37, 0x1d, 0xf0, 0xfd,
+ 0xfb, 0xc6, 0x98, 0x5e, 0xfd, 0x08, 0x00, 0x14, 0x2c, 0xed, 0xed, 0xdd,
+ 0xb5, 0x48, 0xb0, 0xd4, 0x39, 0x5c, 0x28, 0x4b, 0xbe, 0x38, 0xe8, 0x17,
+ 0x15, 0xda, 0x3c, 0xed, 0x0e, 0x37, 0xa5, 0x47, 0xcd, 0x19, 0xd9, 0xe3,
+ 0xdd, 0xdc, 0x04, 0x26, 0x49, 0x27, 0xc5, 0x2c, 0xc0, 0xb8, 0x99, 0x2c,
+ 0x36, 0x3c, 0xca, 0xd2, 0x08, 0xa8, 0xce, 0x46, 0x37, 0xf5, 0xb3, 0x26,
+ 0x08, 0x40, 0xf9, 0x21, 0x34, 0xe5, 0x03, 0xc7, 0x18, 0x19, 0x01, 0xf6,
+ 0xbb, 0xdd, 0xce, 0xb9, 0x0b, 0xd4, 0xfb, 0x3d, 0x23, 0xf3, 0xf1, 0xe8,
+ 0xce, 0xd1, 0xf1, 0xd3, 0xad, 0xdd, 0x1c, 0xdf, 0xce, 0x11, 0xd7, 0xea,
+ 0xf4, 0xfe, 0xdf, 0x05, 0xd5, 0xd1, 0xe3, 0xc2, 0x9e, 0x0e, 0xc5, 0xb6,
+ 0xee, 0xe4, 0xf3, 0x42, 0x48, 0x19, 0x02, 0xb2, 0x1d, 0xfc, 0xd2, 0xf4,
+ 0x96, 0xe1, 0xfb, 0x15, 0xd2, 0x1a, 0x06, 0x1e, 0x0e, 0x1a, 0x23, 0x98,
+ 0xec, 0x16, 0xc3, 0xd4, 0xb3, 0xa4, 0xcc, 0xd1, 0xc6, 0x44, 0x12, 0xde,
+ 0xf2, 0x08, 0xe7, 0xab, 0xdb, 0xdd, 0x24, 0xb7, 0x98, 0xb0, 0xda, 0x16,
+ 0x24, 0x0f, 0xd3, 0xfe, 0xf2, 0x04, 0x39, 0xc8, 0x00, 0xd1, 0xdd, 0x0e,
+ 0x81, 0xfb, 0x38, 0xe8, 0x06, 0x05, 0x06, 0x3a, 0xed, 0xe3, 0xd6, 0xd6,
+ 0xd5, 0x0a, 0xd8, 0xba, 0xbc, 0xe5, 0x06, 0xbd, 0x22, 0x3f, 0xd8, 0x06,
+ 0x2a, 0x4a, 0xd8, 0xa7, 0x07, 0xe8, 0xe7, 0x0d, 0x98, 0xc2, 0x1f, 0xe6,
+ 0x8a, 0xcd, 0x02, 0xc2, 0x4b, 0xad, 0xbe, 0xc6, 0x98, 0x4f, 0x25, 0xf0,
+ 0x2d, 0xa2, 0xeb, 0xe9, 0x0d, 0xc0, 0xea, 0xea, 0x17, 0xb1, 0xbc, 0xd4,
+ 0xc6, 0xf7, 0x4b, 0x2d, 0x3d, 0x55, 0x38, 0xdd, 0x05, 0x01, 0x0a, 0xf0,
+ 0x1f, 0xd8, 0x8e, 0x9d, 0x18, 0x68, 0x17, 0x24, 0x0a, 0x81, 0xf4, 0x93,
+ 0xdc, 0x16, 0x3a, 0xce, 0xa9, 0xf8, 0x10, 0xbc, 0xaf, 0xe7, 0xab, 0xd4,
+ 0xc9, 0xef, 0x3a, 0x00, 0xbf, 0xce, 0xea, 0xd0, 0xee, 0xd2, 0x61, 0x59,
+ 0xdb, 0x0b, 0xcd, 0xfd, 0xf6, 0x14, 0xd7, 0x25, 0x48, 0x95, 0xf1, 0xcf,
+ 0x04, 0x3c, 0x05, 0x04, 0x24, 0xf8, 0x02, 0x30, 0x18, 0x1e, 0x95, 0x19,
+ 0x8c, 0xd2, 0x0d, 0xdb, 0x25, 0x8e, 0x3e, 0xb8, 0xa7, 0x0a, 0xba, 0x13,
+ 0x26, 0x26, 0x4e, 0x37, 0xcd, 0x00, 0x23, 0x0b, 0xe9, 0x96, 0xfa, 0x43,
+ 0xd5, 0x21, 0x0b, 0x43, 0x5f, 0x4b, 0xdd, 0x27, 0x13, 0xf2, 0xdc, 0x2c,
+ 0x21, 0xdd, 0x88, 0xe5, 0xd1, 0xd9, 0x34, 0xc1, 0xda, 0xb3, 0xad, 0xa9,
+ 0xb1, 0x13, 0x2e, 0xee, 0x3f, 0xee, 0x0c, 0x29, 0xf6, 0x11, 0xd2, 0x00,
+ 0x0b, 0x46, 0x54, 0xca, 0x92, 0x46, 0x1c, 0xc6, 0x4d, 0xca, 0x34, 0xe7,
+ 0x15, 0x54, 0x9c, 0x46, 0x2a, 0xff, 0xe2, 0x0e, 0xf7, 0x15, 0xe1, 0xe9,
+ 0xdb, 0xfa, 0x37, 0xe3, 0xb4, 0x14, 0x30, 0x45, 0xea, 0x4c, 0x05, 0xba,
+ 0xd9, 0x01, 0x39, 0xe0, 0x55, 0x94, 0xf3, 0x1d, 0x02, 0xf3, 0x0a, 0x45,
+ 0xd9, 0x7f, 0x2f, 0xfb, 0x0c, 0xba, 0xc1, 0x25, 0x40, 0xa1, 0x1b, 0xc5,
+ 0x0d, 0x1a, 0xb2, 0x06, 0xe9, 0x23, 0xe4, 0xac, 0xc2, 0x09, 0x22, 0x58,
+ 0xeb, 0x2b, 0xd9, 0x0e, 0x23, 0x2c, 0x2a, 0x2a, 0xe4, 0x63, 0x07, 0xd6,
+ 0xc4, 0x05, 0xba, 0x27, 0x44, 0xd4, 0xeb, 0x4e, 0xd7, 0x1c, 0xe5, 0x74,
+ 0x20, 0x25, 0x1f, 0x53, 0xd7, 0x4b, 0x41, 0x2a, 0x26, 0x19, 0x0b, 0xd1,
+ 0x9a, 0xf6, 0x14, 0x51, 0x21, 0x34, 0x2b, 0xe8, 0x19, 0x4c, 0x34, 0x4a,
+ 0x04, 0x1f, 0x11, 0x39, 0xef, 0xee, 0x25, 0xfe, 0x36, 0x45, 0x10, 0x98,
+ 0x28, 0xf0, 0xe5, 0xfd, 0x2c, 0x34, 0x81, 0xd0, 0xc3, 0xf0, 0x1c, 0x38,
+ 0xf1, 0x0f, 0x11, 0x0d, 0x28, 0xb1, 0x33, 0xf4, 0xe9, 0xde, 0xb9, 0x09,
+ 0xf0, 0x3b, 0x12, 0xd9, 0x32, 0xbe, 0xc3, 0xb5, 0xdb, 0xe4, 0x4d, 0xe8,
+ 0x23, 0xfa, 0x99, 0x1f, 0xf0, 0xeb, 0x4c, 0xef, 0x2e, 0xd3, 0xf2, 0xf6,
+ 0x0f, 0xbb, 0x0e, 0x5c, 0xe9, 0xec, 0x93, 0xdf, 0x1b, 0xed, 0x0d, 0x34,
+ 0xac, 0xd1, 0x12, 0xd6, 0x40, 0xd7, 0xcf, 0x3b, 0xe1, 0xe3, 0x9a, 0x03,
+ 0x1d, 0xcb, 0x35, 0x03, 0xd9, 0xe5, 0x1d, 0xe7, 0x4d, 0xd1, 0xd9, 0x61,
+ 0xbb, 0xf5, 0xe6, 0x29, 0x2d, 0x33, 0xe2, 0xe5, 0xb7, 0xd2, 0x05, 0x13,
+ 0x34, 0xe8, 0x33, 0x01, 0xfd, 0x25, 0xb9, 0xfc, 0xf5, 0x30, 0x32, 0xb6,
+ 0x0b, 0x0f, 0xfd, 0xea, 0x01, 0xfc, 0x41, 0x4d, 0x1d, 0xd1, 0xbe, 0x4b,
+ 0x2a, 0x0e, 0xf1, 0xf7, 0xe3, 0xea, 0x0e, 0xbf, 0x06, 0xbb, 0xf3, 0xef,
+ 0x37, 0x09, 0xaa, 0x55, 0x3d, 0x1e, 0xdd, 0xe9, 0x20, 0x55, 0x13, 0x41,
+ 0x26, 0x5b, 0x05, 0xd1, 0x38, 0x3c, 0x06, 0xc9, 0x1c, 0xd1, 0x71, 0xda,
+ 0xe7, 0x69, 0x3d, 0x21, 0xb7, 0x51, 0xc2, 0x6b, 0x6d, 0x60, 0x20, 0xa0,
+ 0xfd, 0x05, 0xc7, 0x1a, 0x13, 0xee, 0x4d, 0xd9, 0x36, 0x15, 0x16, 0xc7,
+ 0x0f, 0xfb, 0xc6, 0xd8, 0x1e, 0xe6, 0x55, 0xc9, 0xf1, 0x71, 0xe0, 0xa5,
+ 0x51, 0x3d, 0x14, 0xcb, 0x3c, 0xbf, 0x4e, 0x05, 0xff, 0x1a, 0x1d, 0x18,
+ 0xd2, 0x58, 0x3e, 0xbf, 0xe7, 0x2a, 0x0b, 0xd7, 0x08, 0x4b, 0x5a, 0x2f,
+ 0xb2, 0xd2, 0xff, 0x0f, 0x32, 0xfa, 0xeb, 0xb9, 0x31, 0xcc, 0x2b, 0x5f,
+ 0xc1, 0x9c, 0x22, 0x07, 0x40, 0x4f, 0x14, 0xa5, 0xc9, 0x7f, 0x22, 0xfd,
+ 0x2b, 0x10, 0xde, 0xed, 0x3f, 0xfc, 0x3a, 0x10, 0x3e, 0x0f, 0x4a, 0xa8,
+ 0x37, 0x0e, 0x27, 0x31, 0xca, 0xec, 0x3d, 0x78, 0xd9, 0x58, 0xf3, 0xe4,
+ 0xeb, 0xe7, 0x9e, 0x99, 0x94, 0x23, 0x23, 0x52, 0xfd, 0x06, 0x1e, 0xf0,
+ 0xc4, 0x29, 0x13, 0xed, 0xbc, 0xc4, 0xad, 0x9e, 0xa5, 0xf3, 0x35, 0xcd,
+ 0x0d, 0xe9, 0x2a, 0xfa, 0x31, 0x3e, 0xfe, 0x37, 0x08, 0x3e, 0x04, 0xcd,
+ 0xde, 0xe6, 0x2d, 0x46, 0x0d, 0x33, 0x05, 0x22, 0x29, 0x02, 0x2b, 0x05,
+ 0xfc, 0x1e, 0x04, 0xd0, 0x19, 0x36, 0x3c, 0x13, 0x04, 0xdd, 0xda, 0xee,
+ 0x03, 0x35, 0xd0, 0x32, 0xf9, 0xde, 0xda, 0xf1, 0x07, 0x39, 0xfa, 0x7f,
+ 0xf3, 0x13, 0xfa, 0xd8, 0xd1, 0x18, 0xd3, 0x1f, 0xe0, 0xe5, 0x17, 0xc9,
+ 0xfd, 0xdd, 0x0d, 0xfe, 0x0d, 0x3c, 0x01, 0x1a, 0xfc, 0xfb, 0xf3, 0xfc,
+ 0xed, 0x2d, 0x05, 0x1f, 0xeb, 0x09, 0x40, 0x43, 0x21, 0xcb, 0x13, 0x2b,
+ 0x26, 0xe1, 0x01, 0xed, 0x35, 0x0f, 0xe1, 0xdf, 0xf2, 0x2c, 0xd2, 0x3d,
+ 0xeb, 0xfe, 0xfe, 0xdf, 0xfc, 0x4f, 0xec, 0x2c, 0x15, 0x08, 0x28, 0xdd,
+ 0x01, 0x27, 0x25, 0x01, 0xc6, 0xfa, 0x2b, 0xce, 0x33, 0x44, 0xeb, 0xf1,
+ 0xd8, 0x01, 0x35, 0x0b, 0x2c, 0x53, 0x24, 0x09, 0xd6, 0x0d, 0xf5, 0xe1,
+ 0xe1, 0x2a, 0xfc, 0x36, 0xcb, 0x07, 0x27, 0xe4, 0x30, 0x5c, 0xf9, 0x61,
+ 0x09, 0x15, 0x1e, 0xf6, 0x15, 0x3d, 0x00, 0x0a, 0x02, 0xee, 0xf0, 0xf8,
+ 0x30, 0xd0, 0xff, 0x18, 0x1a, 0x0c, 0x01, 0x31, 0xe9, 0xf8, 0xde, 0xe2,
+ 0x20, 0x12, 0x56, 0xf7, 0xe0, 0xf5, 0xa8, 0xeb, 0x13, 0x35, 0xfb, 0x3d,
+ 0x00, 0xd2, 0xf6, 0x2c, 0x28, 0x11, 0xcb, 0xc1, 0xe1, 0xcb, 0x27, 0x03,
+ 0x39, 0x4c, 0x14, 0xe2, 0xf6, 0xf5, 0x22, 0xfc, 0x11, 0xfe, 0x07, 0x24,
+ 0x1f, 0xb9, 0xea, 0x05, 0x39, 0x39, 0xe2, 0x3a, 0x22, 0x16, 0xc9, 0x02,
+ 0x5f, 0x2b, 0x4e, 0x1c, 0x1d, 0xea, 0xdb, 0xfa, 0x1b, 0x07, 0x08, 0x0e,
+ 0xd8, 0x14, 0x1c, 0x1a, 0x15, 0x0b, 0xc2, 0xda, 0x22, 0xc8, 0xe6, 0x18,
+ 0x2b, 0x2f, 0xe8, 0x13, 0xf3, 0x0f, 0x7f, 0x37, 0x2b, 0x1b, 0x09, 0x13,
+ 0xf2, 0x04, 0xe9, 0x22, 0x11, 0x44, 0xeb, 0x27, 0xd8, 0x67, 0xe0, 0x3b,
+ 0xf8, 0xf5, 0x4b, 0xed, 0x01, 0xe8, 0xa5, 0xd8, 0x2b, 0x37, 0xff, 0xf0,
+ 0x02, 0x47, 0x3f, 0x26, 0x28, 0xe4, 0xf6, 0xf2, 0x38, 0xfa, 0x00, 0x19,
+ 0x3c, 0x0f, 0x10, 0x4e, 0x96, 0x26, 0x4b, 0x01, 0x32, 0xbb, 0x12, 0x1e,
+ 0x02, 0xfa, 0x1c, 0xe0, 0xf7, 0xbb, 0xff, 0x37, 0x98, 0xf6, 0x04, 0xf3,
+ 0x09, 0xc1, 0xf1, 0x37, 0xff, 0x05, 0xbd, 0x3a, 0x25, 0x12, 0x18, 0xfa,
+ 0x0c, 0x63, 0x23, 0x02, 0x5b, 0x1d, 0x9c, 0xdf, 0xc6, 0x13, 0x17, 0x2d,
+ 0x52, 0xd5, 0x2e, 0x32, 0xd8, 0xc5, 0x07, 0x07, 0x45, 0xd1, 0x19, 0xc0,
+ 0xbd, 0x7f, 0xe1, 0xdf, 0x56, 0xd2, 0x07, 0x49, 0xf2, 0x12, 0xc8, 0xf4,
+ 0x30, 0x11, 0xd5, 0x18, 0xb4, 0xf1, 0xa9, 0xdb, 0xf2, 0x01, 0xc0, 0x02,
+ 0x8c, 0xf0, 0x3c, 0xb5, 0xc4, 0x9d, 0xca, 0x2b, 0x01, 0x3d, 0xed, 0xa4,
+ 0x4f, 0x66, 0xb0, 0x24, 0xb6, 0xc7, 0xe3, 0x43, 0x17, 0x97, 0x4b, 0x1d,
+ 0x24, 0x13, 0xcb, 0xe2, 0xf5, 0x2c, 0xd9, 0x36, 0x2a, 0x26, 0x44, 0xfd,
+ 0x26, 0xd0, 0xd2, 0xc9, 0x28, 0xc3, 0xb6, 0xfc, 0xb2, 0x5e, 0x14, 0xd9,
+ 0x13, 0x29, 0xc1, 0xc3, 0x34, 0x04, 0xcb, 0x1d, 0x2c, 0x30, 0x2d, 0x02,
+ 0xa8, 0x24, 0xf9, 0xd1, 0xb1, 0xcb, 0x44, 0x18, 0x16, 0x18, 0xa0, 0xff,
+ 0x24, 0x32, 0x18, 0x0c, 0x58, 0xfa, 0xda, 0x02, 0x1b, 0xea, 0xd2, 0xd2,
+ 0xe4, 0xee, 0x06, 0xd9, 0x35, 0x27, 0xd6, 0xc7, 0x25, 0xc4, 0x47, 0x1d,
+ 0xb2, 0x48, 0xf1, 0x1b, 0x0a, 0x72, 0xff, 0xb8, 0xea, 0xe4, 0x1f, 0xb9,
+ 0xa2, 0x48, 0xc1, 0x3f, 0xef, 0xb1, 0x36, 0x41, 0x87, 0xdb, 0xf8, 0x22,
+ 0xd7, 0x47, 0x3d, 0xf4, 0xf2, 0xf2, 0x07, 0xed, 0xf6, 0x04, 0xc9, 0x50,
+ 0x32, 0xf7, 0x53, 0xab, 0x68, 0x7f, 0xb8, 0x02, 0x5b, 0xd1, 0xde, 0x27,
+ 0xe0, 0x11, 0x31, 0x09, 0x36, 0x10, 0xd0, 0x28, 0xd6, 0xa8, 0x1d, 0xbd,
+ 0x8f, 0xf1, 0xe9, 0xfc, 0xc9, 0xd5, 0x49, 0x4b, 0x88, 0xe7, 0xa0, 0xd0,
+ 0xa9, 0xc9, 0x22, 0x4d, 0xf0, 0xf1, 0x4f, 0xfe, 0x1a, 0x22, 0x08, 0x2d,
+ 0x24, 0x00, 0xe6, 0xc2, 0x4d, 0x7d, 0x2e, 0x12, 0x0b, 0x42, 0x01, 0x0c,
+ 0xd1, 0x60, 0xea, 0xc0, 0x03, 0xe7, 0xfe, 0xc1, 0x1a, 0xd1, 0x12, 0xe1,
+ 0x34, 0x08, 0x0a, 0x3e, 0x19, 0x47, 0xf1, 0x9d, 0x38, 0xea, 0xe2, 0x2d,
+ 0x11, 0xe9, 0xc8, 0xe8, 0x31, 0x41, 0xda, 0x3d, 0xf0, 0x1b, 0x20, 0x37,
+ 0x18, 0x02, 0x03, 0x34, 0x25, 0xbe, 0x1f, 0x44, 0x1c, 0x31, 0xc1, 0x18,
+ 0xb9, 0xed, 0xbb, 0x1f, 0x1c, 0x06, 0xdc, 0xd9, 0xe3, 0x00, 0xd9, 0x3d,
+ 0xdd, 0xd4, 0xfc, 0x54, 0x02, 0x0e, 0xc4, 0xdc, 0x27, 0xdf, 0xbc, 0xea,
+ 0x00, 0xfb, 0xe2, 0xb2, 0xda, 0x22, 0xcf, 0x00, 0xd0, 0xea, 0x07, 0xe3,
+ 0xe5, 0x2b, 0xed, 0x67, 0xee, 0xfd, 0x4a, 0x24, 0x2a, 0x18, 0xf8, 0xdd,
+ 0xb7, 0xca, 0xfb, 0xcb, 0xdf, 0xe1, 0xe7, 0xd2, 0xfa, 0x23, 0x1e, 0x20,
+ 0x3a, 0x2f, 0x3a, 0xdb, 0xeb, 0xfb, 0xf5, 0x81, 0xef, 0xf1, 0xbc, 0x2e,
+ 0xc7, 0xe0, 0x25, 0xdc, 0xbc, 0xc7, 0xd0, 0x1b, 0x05, 0x18, 0x18, 0xf3,
+ 0xd0, 0x18, 0xe3, 0x68, 0xef, 0xee, 0xe4, 0x17, 0x12, 0xfa, 0x3c, 0x32,
+ 0xa6, 0xe8, 0xf4, 0x1c, 0xd2, 0x35, 0xf6, 0x24, 0xca, 0x26, 0x16, 0x02,
+ 0xe7, 0x1e, 0x2b, 0xed, 0xe9, 0x01, 0x9f, 0xf6, 0x36, 0x07, 0x65, 0x2d,
+ 0xe7, 0xe8, 0xe1, 0xf9, 0xeb, 0x31, 0x31, 0x41, 0x01, 0x1d, 0xce, 0x1b,
+ 0xfb, 0xf4, 0x3b, 0x42, 0xc3, 0x26, 0x0f, 0x3a, 0xfa, 0x15, 0x30, 0x31,
+ 0x96, 0xc2, 0xf8, 0x1f, 0x11, 0xd6, 0x21, 0xe3, 0x2a, 0xf9, 0x19, 0x44,
+ 0x39, 0xc1, 0xc4, 0x28, 0x07, 0xf1, 0xf7, 0x13, 0xeb, 0x11, 0x7f, 0x0c,
+ 0xca, 0xe5, 0x1e, 0xb7, 0xe5, 0x18, 0xfc, 0x0b, 0xda, 0xe6, 0xe4, 0x0d,
+ 0xd3, 0x0a, 0xf9, 0x4f, 0xd9, 0x3c, 0x1a, 0x23, 0xe3, 0x29, 0x0f, 0x55,
+ 0xf2, 0x13, 0x0a, 0xd3, 0x22, 0xce, 0xca, 0xf8, 0x00, 0x21, 0x1d, 0xe9,
+ 0xee, 0xd4, 0x0a, 0x23, 0x35, 0xfd, 0xec, 0x12, 0x0e, 0x3b, 0x37, 0x36,
+ 0xd3, 0x02, 0x1e, 0xcb, 0x43, 0x08, 0xfa, 0x1f, 0x18, 0x29, 0x18, 0xda,
+ 0xfd, 0x36, 0xe0, 0xe9, 0xc7, 0x7d, 0xd9, 0xf8, 0xd8, 0xb4, 0xfa, 0x4f,
+ 0x31, 0x2b, 0xec, 0xf3, 0xfd, 0x11, 0x9c, 0x0c, 0x1c, 0x4c, 0xbc, 0x06,
+ 0x20, 0x2f, 0x1f, 0x00, 0x24, 0x30, 0xd9, 0xfd, 0x29, 0x40, 0x21, 0x19,
+ 0xfa, 0xfe, 0xdf, 0xeb, 0xf6, 0xf6, 0x3f, 0x24, 0x24, 0x2a, 0xc2, 0x0b,
+ 0xc0, 0x22, 0x35, 0x3f, 0x0f, 0x21, 0x4d, 0x2e, 0x14, 0x81, 0x24, 0x34,
+ 0xf8, 0x3d, 0xb6, 0xe1, 0xd6, 0xe1, 0x2c, 0xff, 0x3d, 0x4d, 0x92, 0xe7,
+ 0xc4, 0x18, 0xa5, 0x1c, 0x0d, 0x6b, 0xb6, 0x32, 0x24, 0x2c, 0x3b, 0x0f,
+ 0x13, 0x1b, 0x24, 0xfc, 0xda, 0x29, 0x2b, 0x16, 0xf6, 0x61, 0x25, 0x01,
+ 0xe0, 0x23, 0x2b, 0xee, 0x07, 0x21, 0x50, 0xb2, 0xf5, 0xdf, 0x1b, 0x1d,
+ 0xe7, 0x2e, 0xd3, 0xed, 0xef, 0xa6, 0x96, 0xf5, 0x31, 0x25, 0xa4, 0x1a,
+ 0x1a, 0x24, 0xe6, 0x31, 0xf9, 0x42, 0xf1, 0x36, 0xc8, 0xbe, 0x65, 0xdb,
+ 0x19, 0x2c, 0xe0, 0x32, 0x22, 0x19, 0xe8, 0x09, 0xd4, 0xd5, 0xee, 0x6c,
+ 0xac, 0x15, 0x54, 0xd6, 0x56, 0x7d, 0xd9, 0xc5, 0x4b, 0xa0, 0xa8, 0xe4,
+ 0x25, 0x32, 0xb4, 0x65, 0x28, 0x28, 0xfe, 0x0c, 0x41, 0x3b, 0xad, 0xd5,
+ 0x30, 0xf2, 0xec, 0xec, 0x6e, 0xc8, 0xe3, 0x64, 0xc1, 0x1f, 0xcb, 0x17,
+ 0x2d, 0x1e, 0x0b, 0x65, 0xf2, 0xed, 0xae, 0xef, 0xfb, 0x39, 0x15, 0x32,
+ 0xb6, 0x3d, 0x1d, 0xf9, 0xd1, 0x43, 0xe9, 0x3a, 0x75, 0x16, 0x13, 0xd7,
+ 0x32, 0x06, 0xe3, 0x12, 0x38, 0xc7, 0x5e, 0xd0, 0x05, 0xa3, 0x85, 0xd4,
+ 0x17, 0x54, 0xcc, 0x0e, 0x57, 0x1a, 0xf0, 0x04, 0xc2, 0x4f, 0xeb, 0xf5,
+ 0x50, 0x4e, 0x3a, 0xf7, 0x37, 0x1e, 0x05, 0xd1, 0xe7, 0x5d, 0x23, 0x66,
+ 0xd2, 0xfa, 0x02, 0x23, 0xe8, 0x40, 0x06, 0x24, 0x4f, 0xc4, 0xc3, 0x5c,
+ 0x0b, 0x0d, 0x1c, 0xe8, 0x50, 0x00, 0x5a, 0xcb, 0x21, 0xbb, 0x81, 0xf2,
+ 0x03, 0x4f, 0x24, 0x33, 0x5c, 0xbd, 0x1e, 0x52, 0xae, 0x50, 0x03, 0xd7,
+ 0xe5, 0x29, 0x09, 0x24, 0x4d, 0xcc, 0xdb, 0xf0, 0x52, 0x23, 0xf1, 0x0c,
+ 0xc9, 0x34, 0x27, 0x2f, 0x2f, 0x03, 0xe6, 0xf4, 0x56, 0x8f, 0xdc, 0x4b,
+ 0x1c, 0xee, 0xd8, 0x4b, 0x6c, 0xc3, 0x68, 0xed, 0x4f, 0x16, 0xbb, 0x15,
+ 0xe2, 0xf2, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00,
+ 0xfd, 0xa8, 0xff, 0xff, 0x30, 0xc9, 0xff, 0xff, 0xf7, 0x13, 0x00, 0x00,
+ 0x99, 0xcc, 0xff, 0xff, 0xf8, 0x1d, 0x00, 0x00, 0x8c, 0x1e, 0x00, 0x00,
+ 0xc8, 0xba, 0xff, 0xff, 0x12, 0xe2, 0xff, 0xff, 0xaf, 0xee, 0xff, 0xff,
+ 0x2b, 0xdf, 0xff, 0xff, 0x2b, 0xfe, 0xff, 0xff, 0xc7, 0x1e, 0x00, 0x00,
+ 0x7d, 0x34, 0x00, 0x00, 0x83, 0x0d, 0x00, 0x00, 0x1b, 0xc4, 0xff, 0xff,
+ 0x48, 0x40, 0x00, 0x00, 0x0c, 0x4f, 0x00, 0x00, 0xde, 0x38, 0x00, 0x00,
+ 0x88, 0xe7, 0xff, 0xff, 0xc0, 0x87, 0x00, 0x00, 0x8c, 0x53, 0x00, 0x00,
+ 0x71, 0xb0, 0xff, 0xff, 0x78, 0x22, 0x00, 0x00, 0x0c, 0xba, 0xff, 0xff,
+ 0x42, 0xb3, 0xff, 0xff, 0x5a, 0xbd, 0xff, 0xff, 0x91, 0xfc, 0xff, 0xff,
+ 0xd0, 0xff, 0xff, 0xff, 0xd0, 0x0a, 0x00, 0x00, 0x65, 0xca, 0xff, 0xff,
+ 0x75, 0xae, 0xff, 0xff, 0x1c, 0x9a, 0xff, 0xff, 0x6e, 0xf3, 0xff, 0xff,
+ 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x90, 0xd3, 0x2b, 0x17,
+ 0x1c, 0xea, 0xd3, 0x17, 0x34, 0xd4, 0xcb, 0xe6, 0x24, 0x27, 0x02, 0x02,
+ 0x9e, 0x30, 0x2b, 0x24, 0x41, 0xa2, 0xda, 0x59, 0x34, 0x52, 0x34, 0xca,
+ 0x29, 0xad, 0x4c, 0x7f, 0x97, 0x3d, 0xc1, 0x6a, 0x66, 0x03, 0x1d, 0x92,
+ 0x22, 0x50, 0xc6, 0x69, 0xea, 0x5f, 0xf9, 0x07, 0xd0, 0x0b, 0xa8, 0xd3,
+ 0xa2, 0x60, 0x67, 0x25, 0xc5, 0x32, 0xbb, 0xfe, 0xac, 0xe2, 0x81, 0x1e,
+ 0xb4, 0xd6, 0x54, 0x0e, 0x2f, 0x7f, 0xe2, 0x48, 0x2c, 0xc2, 0xf4, 0xdf,
+ 0x01, 0x38, 0xc9, 0xd0, 0x02, 0x13, 0x64, 0xb3, 0xc6, 0xea, 0x34, 0x49,
+ 0x61, 0xe1, 0xcf, 0xd4, 0x53, 0xd1, 0x61, 0x25, 0x92, 0x0b, 0xcf, 0x0c,
+ 0xf2, 0x68, 0x22, 0x35, 0x09, 0x89, 0xb9, 0xfa, 0x92, 0x51, 0x53, 0xfb,
+ 0x0b, 0xee, 0x2e, 0x34, 0xea, 0xfa, 0xdd, 0xaa, 0x47, 0x45, 0xa9, 0x48,
+ 0x2b, 0xc0, 0xe0, 0x7f, 0xf0, 0xe5, 0x3a, 0xf8, 0xeb, 0xfb, 0xba, 0x05,
+ 0xf5, 0xb0, 0xe7, 0x2e, 0x06, 0x1e, 0xae, 0x24, 0xb8, 0xfd, 0x7f, 0x0b,
+ 0xd0, 0xaa, 0xcb, 0x38, 0xd5, 0xd6, 0xc9, 0xe5, 0x2b, 0x11, 0x1e, 0xe8,
+ 0x2d, 0x1a, 0x47, 0x7f, 0xfa, 0xe3, 0x09, 0xb5, 0x0b, 0xf9, 0xc1, 0xed,
+ 0xbd, 0x17, 0x54, 0xfa, 0x19, 0xbb, 0x9e, 0x47, 0xef, 0x0f, 0xc2, 0xd2,
+ 0xb4, 0x43, 0xf7, 0x43, 0x19, 0xe8, 0x30, 0x20, 0xf9, 0x15, 0xf7, 0x1d,
+ 0xe7, 0x26, 0x21, 0xe8, 0xa1, 0x81, 0xd4, 0x1a, 0xea, 0x0b, 0x5a, 0x2a,
+ 0xdb, 0x53, 0x02, 0xda, 0x4a, 0xe7, 0xd0, 0xff, 0xd3, 0x13, 0xe9, 0x4f,
+ 0x4e, 0x15, 0x29, 0x46, 0x18, 0xaf, 0x3b, 0xcb, 0xf5, 0xbc, 0x03, 0x34,
+ 0xa9, 0x15, 0x07, 0xf4, 0xac, 0x2a, 0xbf, 0xed, 0xf4, 0xdf, 0x7f, 0x22,
+ 0x94, 0xb8, 0xfa, 0xb3, 0x25, 0xcd, 0x06, 0x51, 0x4f, 0x13, 0x07, 0xa1,
+ 0x1e, 0xcb, 0xda, 0x0b, 0x0b, 0xb1, 0xa1, 0x2f, 0x93, 0x02, 0x6f, 0x7e,
+ 0x41, 0x26, 0xdd, 0xd9, 0xfb, 0x7f, 0x5d, 0x7d, 0x6b, 0xe1, 0x3b, 0x72,
+ 0x59, 0x9a, 0x64, 0x2c, 0xf5, 0xae, 0x74, 0xf4, 0xe6, 0x1c, 0xb3, 0x26,
+ 0xed, 0x4d, 0xce, 0xd0, 0x53, 0x0c, 0xd7, 0xe8, 0x55, 0xc0, 0x81, 0xe0,
+ 0xcb, 0xe5, 0xdd, 0xa6, 0xe3, 0xe7, 0x2b, 0xf9, 0xbf, 0xdd, 0xda, 0xfe,
+ 0xb9, 0xaf, 0xd5, 0x43, 0x1d, 0xca, 0xb0, 0xfa, 0xb5, 0xf4, 0xc4, 0xdd,
+ 0x4b, 0x41, 0x41, 0x81, 0x60, 0x01, 0xd2, 0x98, 0x48, 0xfb, 0x41, 0x36,
+ 0x11, 0xc9, 0x1d, 0x47, 0x00, 0xd1, 0xd8, 0xda, 0xc9, 0xde, 0x62, 0xfa,
+ 0xac, 0x68, 0x41, 0x56, 0xb2, 0x7f, 0x39, 0xf8, 0xbb, 0x4d, 0xdf, 0x13,
+ 0x36, 0x1e, 0x78, 0xb7, 0xd4, 0xb1, 0x24, 0xfc, 0x28, 0x30, 0x56, 0x35,
+ 0xe2, 0x96, 0x93, 0xb4, 0x41, 0xb0, 0x4f, 0x01, 0x3f, 0x9b, 0x0b, 0x2a,
+ 0x0f, 0x05, 0x26, 0xaa, 0x4c, 0xb5, 0xb3, 0x0b, 0x49, 0x27, 0xca, 0xe7,
+ 0xf9, 0xa5, 0x20, 0x1b, 0x0b, 0x07, 0x48, 0xca, 0x08, 0x81, 0x4d, 0xfb,
+ 0x34, 0xc8, 0x52, 0xee, 0x24, 0xe4, 0xef, 0x2c, 0xd8, 0x30, 0xf8, 0x59,
+ 0xa0, 0x9b, 0xc0, 0x67, 0xf3, 0x81, 0xe0, 0xf8, 0xf7, 0x44, 0x16, 0xcf,
+ 0xd5, 0x12, 0x35, 0x2b, 0xed, 0xe6, 0x5e, 0x59, 0x32, 0x15, 0x02, 0x3a,
+ 0xe1, 0x3e, 0x40, 0xd1, 0xd5, 0xc2, 0xcf, 0x41, 0xdc, 0xea, 0x81, 0x6d,
+ 0x10, 0x06, 0xa3, 0xd7, 0xbf, 0x37, 0xec, 0x9c, 0x33, 0xbe, 0xec, 0xad,
+ 0xd8, 0x87, 0xf9, 0x57, 0x21, 0x0b, 0x4c, 0xee, 0x12, 0xec, 0xc0, 0x10,
+ 0xd5, 0x23, 0x0b, 0x40, 0x07, 0xc2, 0x3f, 0xed, 0x48, 0x44, 0x18, 0xe9,
+ 0xc3, 0x49, 0x39, 0xb9, 0xb9, 0xf2, 0xea, 0xe6, 0x11, 0xc3, 0x33, 0x7f,
+ 0x34, 0x5f, 0x18, 0x1c, 0x70, 0x0e, 0x92, 0x41, 0xcc, 0xe4, 0x90, 0x5d,
+ 0x55, 0xbc, 0xf9, 0x20, 0x54, 0xfd, 0xc5, 0x6d, 0xab, 0xb9, 0xa3, 0x2a,
+ 0x7f, 0xc3, 0xe2, 0xde, 0x35, 0xab, 0xa0, 0x62, 0x3e, 0xde, 0x2f, 0x52,
+ 0x1b, 0xd5, 0x0b, 0x00, 0x05, 0x23, 0xcf, 0x36, 0xd3, 0x66, 0x2a, 0x81,
+ 0x2b, 0xc3, 0x36, 0xc4, 0x2e, 0x49, 0xff, 0xe9, 0x9c, 0xde, 0xb0, 0xea,
+ 0x31, 0x08, 0x2a, 0xcd, 0xec, 0xfb, 0xfb, 0xe3, 0x14, 0xef, 0xbf, 0xea,
+ 0xd5, 0x07, 0xe3, 0x00, 0xe3, 0x15, 0x02, 0x93, 0x34, 0xd8, 0x0f, 0xe1,
+ 0x46, 0x4e, 0x1a, 0x13, 0xbb, 0x51, 0x00, 0xe9, 0x3b, 0x1c, 0xb3, 0x81,
+ 0xf6, 0x12, 0x37, 0xea, 0xca, 0xd6, 0x26, 0x8a, 0x0d, 0xbc, 0xfd, 0xd1,
+ 0x94, 0x5e, 0x42, 0xd3, 0x18, 0x70, 0x97, 0x81, 0x0c, 0xe8, 0x61, 0x15,
+ 0x1f, 0x0c, 0x00, 0x00, 0x4e, 0x3c, 0x68, 0xb1, 0x10, 0x5e, 0x4a, 0x2d,
+ 0xcc, 0xf2, 0x1b, 0x34, 0x2f, 0x35, 0x2c, 0xbd, 0xb5, 0x12, 0x7f, 0x4d,
+ 0x72, 0x94, 0x24, 0x69, 0xe5, 0xc0, 0x6f, 0x5c, 0xfa, 0xca, 0xdc, 0xf1,
+ 0x6a, 0x18, 0x71, 0xc8, 0x05, 0x43, 0xb8, 0x55, 0x81, 0x0d, 0xfe, 0xec,
+ 0x04, 0xb8, 0xd8, 0x13, 0x4d, 0xe1, 0x10, 0x3f, 0xb8, 0x63, 0x07, 0x4a,
+ 0x5d, 0x34, 0x57, 0xcc, 0xf0, 0x47, 0x3a, 0x20, 0xfb, 0xc7, 0x2e, 0x60,
+ 0x0f, 0xc5, 0x49, 0x49, 0xb0, 0x17, 0xab, 0xb5, 0x95, 0x6e, 0xc1, 0x03,
+ 0xd6, 0xe1, 0xfd, 0x10, 0x5c, 0xc0, 0x30, 0xd7, 0x55, 0xdb, 0x63, 0x20,
+ 0xe0, 0x01, 0xca, 0x0c, 0x16, 0x05, 0x05, 0x7f, 0x51, 0x26, 0xd3, 0x74,
+ 0x4a, 0xe8, 0x32, 0xc4, 0x2a, 0xf4, 0x90, 0xff, 0xe7, 0xfa, 0x4f, 0xe3,
+ 0xc7, 0x29, 0x81, 0x3c, 0x29, 0xdf, 0x33, 0x3d, 0x07, 0x0e, 0x35, 0x89,
+ 0xd9, 0xc8, 0x52, 0xcf, 0x1a, 0x04, 0x0b, 0x38, 0x30, 0xf6, 0xc2, 0x0a,
+ 0xd5, 0xee, 0xf4, 0xde, 0x20, 0x81, 0x25, 0x59, 0x25, 0x39, 0x05, 0x1f,
+ 0xe0, 0x2f, 0x54, 0x55, 0x14, 0x25, 0xe0, 0x14, 0x43, 0x35, 0x5e, 0x42,
+ 0x31, 0x54, 0x55, 0xf5, 0xfa, 0xa4, 0x15, 0x17, 0xe4, 0xb8, 0x81, 0x0e,
+ 0x1b, 0x41, 0x51, 0xb4, 0xc4, 0x39, 0x2d, 0x12, 0x46, 0xe8, 0x07, 0x23,
+ 0x85, 0x44, 0xf2, 0xda, 0x69, 0x44, 0xf8, 0xa8, 0x4a, 0x3c, 0xff, 0x27,
+ 0x7f, 0x53, 0xea, 0x51, 0x91, 0x41, 0x43, 0x30, 0x37, 0xc7, 0x06, 0x11,
+ 0xe9, 0x50, 0x01, 0x50, 0x14, 0x68, 0xb9, 0xa5, 0xb0, 0x72, 0x14, 0x1d,
+ 0x83, 0xbf, 0x0d, 0xe5, 0x40, 0x41, 0xf5, 0x8e, 0x22, 0xcf, 0xff, 0xde,
+ 0x20, 0xfe, 0x27, 0xdf, 0xc6, 0x30, 0x0b, 0xb4, 0x4b, 0x46, 0xed, 0x08,
+ 0xf5, 0x23, 0x06, 0xf5, 0xc0, 0x13, 0x3e, 0x9c, 0xeb, 0x17, 0xef, 0x81,
+ 0xcc, 0x18, 0xda, 0xe1, 0xe5, 0xa6, 0xe4, 0x2f, 0xab, 0xe7, 0xdb, 0x63,
+ 0x3f, 0x0f, 0xad, 0x45, 0xbc, 0x22, 0xaf, 0x16, 0x91, 0xb2, 0xdc, 0xd6,
+ 0x38, 0x88, 0xfe, 0xf8, 0xbe, 0x89, 0xfc, 0x48, 0xe3, 0x81, 0xc8, 0x44,
+ 0x0f, 0xce, 0x3f, 0x82, 0x61, 0xcd, 0x2a, 0xbc, 0x57, 0x0b, 0x51, 0xd5,
+ 0x2a, 0x53, 0x81, 0x81, 0x58, 0xc6, 0x31, 0x6d, 0x0f, 0x9c, 0x65, 0x1a,
+ 0x20, 0xd7, 0xcd, 0x8b, 0x68, 0x3d, 0xb6, 0x03, 0x81, 0x4a, 0xd1, 0x5d,
+ 0x08, 0xc9, 0x47, 0xe7, 0xf0, 0x1c, 0xad, 0x65, 0xf0, 0x09, 0x49, 0xe3,
+ 0x27, 0xb2, 0xe0, 0x42, 0x60, 0xda, 0x41, 0x47, 0x1a, 0xff, 0xca, 0xf2,
+ 0xf7, 0xa9, 0x23, 0xf7, 0x0f, 0x78, 0x1f, 0x00, 0xea, 0x02, 0x4d, 0x4b,
+ 0xf4, 0x27, 0x3b, 0xb9, 0x1c, 0xc0, 0xe2, 0x20, 0xbc, 0x3c, 0x1b, 0x94,
+ 0x0a, 0xe4, 0x1b, 0x29, 0xd2, 0x29, 0xd2, 0x81, 0xd8, 0xe9, 0xd9, 0x2a,
+ 0xff, 0xeb, 0xc8, 0xff, 0xe6, 0xef, 0x17, 0x22, 0x3c, 0x81, 0x23, 0x4f,
+ 0xdd, 0xee, 0x3a, 0x06, 0xb2, 0x8a, 0xb9, 0x28, 0x16, 0xc6, 0xc1, 0xf0,
+ 0xb3, 0x31, 0x3a, 0x45, 0xad, 0x95, 0x70, 0xf5, 0xb4, 0x16, 0x0c, 0x41,
+ 0xb2, 0xc8, 0xdb, 0x45, 0xe4, 0x03, 0x64, 0xf8, 0x7c, 0x37, 0x25, 0x81,
+ 0x01, 0x18, 0x18, 0x70, 0xfd, 0x2b, 0x4d, 0x1e, 0x40, 0xb9, 0x60, 0x9c,
+ 0x61, 0x62, 0xf8, 0x3c, 0x3e, 0x58, 0xc8, 0x55, 0xe8, 0xbb, 0x40, 0xa9,
+ 0x96, 0x53, 0xf9, 0x24, 0x62, 0x6c, 0x79, 0xaa, 0x24, 0x06, 0x13, 0xed,
+ 0x62, 0x78, 0x3e, 0x5f, 0xfa, 0x04, 0xb4, 0x15, 0x81, 0x81, 0xbe, 0xbd,
+ 0xaa, 0xe6, 0x5c, 0x18, 0xb8, 0x08, 0xb9, 0x71, 0xdb, 0x2e, 0x8c, 0x8f,
+ 0x23, 0xe0, 0x3b, 0x81, 0xb7, 0x0e, 0xf7, 0x5c, 0x9c, 0x41, 0x50, 0xab,
+ 0x3e, 0xf9, 0x4a, 0xbc, 0xed, 0xd1, 0x67, 0xc0, 0x1d, 0xbf, 0x54, 0xf8,
+ 0x30, 0x15, 0x0b, 0xb8, 0xf9, 0x34, 0x03, 0x1f, 0xc7, 0x47, 0x19, 0xe2,
+ 0xeb, 0x13, 0x57, 0x19, 0xe5, 0xd4, 0xb3, 0x3f, 0xb5, 0x33, 0x3c, 0x81,
+ 0xe1, 0x15, 0x52, 0xae, 0x29, 0xad, 0x13, 0x0d, 0x02, 0x41, 0xfa, 0x98,
+ 0x02, 0x15, 0x9e, 0x69, 0xf8, 0x44, 0x8a, 0xb2, 0x17, 0xe5, 0xe5, 0xd9,
+ 0xb1, 0xcc, 0xce, 0xed, 0x25, 0x81, 0x2f, 0x5f, 0x63, 0x02, 0x50, 0x5a,
+ 0x49, 0xff, 0xe7, 0x3b, 0xe1, 0xbc, 0xd6, 0xaf, 0xee, 0xba, 0xbd, 0x02,
+ 0xf8, 0x06, 0x37, 0xab, 0xed, 0xd3, 0x81, 0xf2, 0x0d, 0xb3, 0xae, 0x1e,
+ 0xc1, 0x2d, 0x18, 0x65, 0xac, 0xec, 0xcb, 0xcf, 0x2d, 0xc7, 0xc4, 0xfd,
+ 0x01, 0x28, 0x0a, 0xe8, 0xe8, 0x36, 0x29, 0xce, 0x0b, 0xdf, 0x47, 0xba,
+ 0xe9, 0x03, 0xf3, 0x02, 0xe0, 0x3e, 0x30, 0xad, 0x4b, 0x7f, 0xf5, 0xdf,
+ 0x02, 0x0d, 0xf0, 0xdc, 0xb4, 0x44, 0xd7, 0xe4, 0xe2, 0x2b, 0x1e, 0x73,
+ 0x57, 0x91, 0x5a, 0xef, 0xa5, 0xb4, 0x14, 0x17, 0xa9, 0x05, 0x01, 0x43,
+ 0x3c, 0xf6, 0xf6, 0xc5, 0xf7, 0xb8, 0xe8, 0x7f, 0xcc, 0x2b, 0x0c, 0x2d,
+ 0x2f, 0xd2, 0x6d, 0x30, 0xe2, 0x1d, 0xcd, 0x49, 0xe3, 0x57, 0x4d, 0xdb,
+ 0x49, 0x7c, 0xde, 0x2d, 0x4b, 0x31, 0xf2, 0xc8, 0xbf, 0xd2, 0x32, 0xac,
+ 0x52, 0xff, 0xbf, 0x81, 0x83, 0x49, 0x08, 0x85, 0xf6, 0xda, 0x16, 0xf3,
+ 0xd4, 0xe9, 0x29, 0xf7, 0x24, 0x14, 0xf3, 0x33, 0x10, 0x27, 0x7f, 0xdd,
+ 0xde, 0xe6, 0x08, 0xd8, 0x49, 0xd4, 0xcb, 0x02, 0xb6, 0xca, 0xbb, 0x47,
+ 0xba, 0xed, 0xd3, 0xce, 0x50, 0xd8, 0xbe, 0x67, 0xbf, 0x36, 0x81, 0xa2,
+ 0x6c, 0xdf, 0x5a, 0xf3, 0x58, 0xd5, 0xdb, 0xb3, 0x1f, 0x55, 0x2e, 0xb4,
+ 0x10, 0xc6, 0xdf, 0xdf, 0xf3, 0x17, 0x47, 0x9a, 0xd4, 0x8a, 0xfd, 0xe8,
+ 0x11, 0x07, 0xc5, 0x5c, 0xe9, 0x88, 0x04, 0x93, 0x9b, 0xe5, 0x44, 0xd3,
+ 0xc0, 0xc2, 0xa9, 0x73, 0xbf, 0x06, 0xed, 0x03, 0x49, 0xd3, 0xf2, 0x6c,
+ 0x9b, 0x02, 0x57, 0x23, 0xd7, 0xc3, 0x81, 0xfa, 0x0f, 0x45, 0x5a, 0xa9,
+ 0xf6, 0x14, 0x0b, 0x14, 0xaf, 0x27, 0x50, 0x68, 0xb1, 0xe0, 0x81, 0xc1,
+ 0xb4, 0xfa, 0x6c, 0x2e, 0x50, 0x24, 0xb6, 0x30, 0x0d, 0xc5, 0xfc, 0xcf,
+ 0x5b, 0x0f, 0xd4, 0x19, 0xd0, 0x3b, 0xc4, 0x3e, 0x4a, 0x58, 0x0b, 0x24,
+ 0x2a, 0x7f, 0x4a, 0x24, 0x4b, 0x22, 0x3b, 0xaf, 0x46, 0xe2, 0x70, 0x42,
+ 0xc8, 0x03, 0x63, 0x64, 0xd3, 0x4d, 0xd3, 0xf9, 0xca, 0xb1, 0x64, 0x13,
+ 0x4c, 0x0b, 0x44, 0xcb, 0xd1, 0xe2, 0x1b, 0xcb, 0xcb, 0xe7, 0xd5, 0x4c,
+ 0x23, 0xf3, 0x81, 0xcb, 0xe9, 0xe3, 0x4b, 0x49, 0xbc, 0x29, 0x31, 0x3a,
+ 0x31, 0x90, 0xe5, 0x41, 0x14, 0xab, 0x28, 0xf9, 0x36, 0xe0, 0x4b, 0x08,
+ 0xba, 0xe2, 0x3e, 0xdc, 0x67, 0xa7, 0xd2, 0x51, 0x17, 0xcc, 0x1a, 0x54,
+ 0x1b, 0xc5, 0x01, 0xef, 0x3a, 0x42, 0x5c, 0x7f, 0x2a, 0xcf, 0x6d, 0x47,
+ 0xb3, 0x1f, 0x25, 0xe2, 0xc7, 0x4f, 0xdc, 0x81, 0x32, 0x2a, 0x19, 0xd9,
+ 0xbd, 0xbe, 0xbe, 0x2c, 0x53, 0x8f, 0xd1, 0x2b, 0x42, 0xdf, 0x9e, 0x1d,
+ 0x89, 0x5f, 0xbd, 0x4d, 0xd0, 0x52, 0xe1, 0xbc, 0x4e, 0x1a, 0xed, 0x3a,
+ 0x31, 0x0c, 0xd1, 0x16, 0x64, 0x7f, 0xe4, 0x16, 0xeb, 0xc9, 0x29, 0x62,
+ 0xbd, 0xad, 0xbb, 0xa2, 0xc0, 0xa0, 0x16, 0xc7, 0x3f, 0x39, 0x00, 0xcc,
+ 0xbd, 0x58, 0x03, 0xec, 0x9f, 0xc8, 0x20, 0xbf, 0xf4, 0xdb, 0x4c, 0x64,
+ 0xd9, 0x4f, 0x1a, 0x06, 0x19, 0x54, 0x02, 0xc1, 0xab, 0x06, 0x27, 0xe3,
+ 0xeb, 0xf4, 0x09, 0x4b, 0x2e, 0x44, 0x96, 0xef, 0x9c, 0x65, 0x15, 0xf0,
+ 0xfd, 0x3a, 0x94, 0x7f, 0xe5, 0xa4, 0x29, 0xc7, 0x0f, 0xd0, 0x0d, 0x5f,
+ 0x03, 0x81, 0xfd, 0x77, 0xed, 0xcd, 0x29, 0xdf, 0x22, 0x07, 0x33, 0xe7,
+ 0x5a, 0x25, 0xaf, 0x0e, 0x00, 0x12, 0x0a, 0x05, 0x0d, 0xb0, 0x2e, 0x3d,
+ 0x3b, 0x28, 0x3f, 0xb5, 0xab, 0xb4, 0xf1, 0x14, 0x04, 0x81, 0x1d, 0x34,
+ 0x19, 0x38, 0x20, 0x5a, 0x15, 0x2e, 0x0e, 0x1d, 0x4b, 0xca, 0xf7, 0xfe,
+ 0x4b, 0xd2, 0x59, 0x5c, 0xfb, 0xc1, 0x4d, 0x7a, 0x50, 0xad, 0x2c, 0xf6,
+ 0x27, 0x59, 0x6f, 0x32, 0x3e, 0xb5, 0xbb, 0xdb, 0x81, 0x91, 0x49, 0xac,
+ 0x39, 0xb1, 0xc8, 0x4b, 0x55, 0x56, 0x3b, 0x5e, 0x44, 0x5a, 0xa1, 0xf0,
+ 0xec, 0x9a, 0x9d, 0x30, 0x56, 0x41, 0xd3, 0xf8, 0xd9, 0xe0, 0x09, 0xa1,
+ 0x20, 0xcc, 0x19, 0xeb, 0x06, 0x39, 0x52, 0xe7, 0xe0, 0xe5, 0xd1, 0xc4,
+ 0xed, 0x26, 0xca, 0xe4, 0xf6, 0x57, 0x81, 0xe4, 0xe5, 0xd6, 0x89, 0x24,
+ 0x81, 0xe9, 0xfd, 0x0e, 0xd3, 0x1c, 0xcd, 0xe9, 0x95, 0xad, 0x1f, 0x3e,
+ 0xee, 0x3b, 0x23, 0xe4, 0x18, 0xf2, 0xd5, 0xa2, 0x45, 0xe9, 0xc0, 0xdb,
+ 0xd0, 0x46, 0x4d, 0x54, 0xb8, 0x84, 0x1f, 0xe8, 0x47, 0xf5, 0x4a, 0x7f,
+ 0x16, 0xcd, 0x43, 0xa8, 0xcd, 0x36, 0xab, 0x48, 0xfb, 0xae, 0x23, 0xd8,
+ 0x54, 0x57, 0xd7, 0x51, 0xed, 0x36, 0xb2, 0xd6, 0x46, 0xb5, 0x54, 0x56,
+ 0xed, 0x00, 0xd9, 0xbc, 0xde, 0xbc, 0x64, 0x12, 0xbe, 0xb5, 0xb6, 0x1d,
+ 0x69, 0x39, 0x90, 0xfc, 0xf2, 0xd9, 0xd5, 0x29, 0x3e, 0xe5, 0xf6, 0xbc,
+ 0xde, 0xff, 0xba, 0x39, 0xb0, 0x81, 0x57, 0x08, 0x02, 0x05, 0xf4, 0x33,
+ 0x81, 0x9d, 0x0e, 0x2a, 0x18, 0xe2, 0x3b, 0x22, 0xd9, 0x0a, 0xdc, 0x31,
+ 0xe9, 0xdf, 0x17, 0x40, 0xf1, 0xe2, 0x40, 0x17, 0x05, 0xe1, 0xda, 0xfd,
+ 0x9e, 0x19, 0xff, 0x69, 0x14, 0xae, 0xc2, 0x59, 0x1b, 0xcc, 0xe1, 0x74,
+ 0x6c, 0x37, 0x43, 0x5a, 0xeb, 0x9a, 0xae, 0x6b, 0x24, 0x07, 0x16, 0xe3,
+ 0x34, 0x1d, 0xec, 0xf5, 0xdf, 0x25, 0x8d, 0x2e, 0x59, 0xa0, 0xeb, 0x17,
+ 0xa0, 0x81, 0xc9, 0x46, 0x36, 0x98, 0xcc, 0x29, 0xa3, 0x29, 0x3d, 0xde,
+ 0x3c, 0x81, 0xdc, 0x24, 0xe6, 0xec, 0x9b, 0x9a, 0xa3, 0xf0, 0x4b, 0x23,
+ 0xfa, 0x04, 0x43, 0x6a, 0xbd, 0xa5, 0x60, 0xbf, 0x54, 0xf7, 0x0e, 0x22,
+ 0xa7, 0x01, 0x09, 0x36, 0x9a, 0x2d, 0xe4, 0xf7, 0x37, 0x0f, 0x50, 0x7f,
+ 0x3e, 0xec, 0x3e, 0x4f, 0x49, 0x3b, 0xfa, 0xeb, 0x50, 0xf5, 0xd4, 0xda,
+ 0x2d, 0xc4, 0x09, 0x2f, 0x16, 0xfc, 0x41, 0xe7, 0x4f, 0xdd, 0x22, 0xef,
+ 0x01, 0xed, 0x15, 0x87, 0xda, 0xb3, 0x47, 0x5d, 0xc6, 0x32, 0x7c, 0x2f,
+ 0xeb, 0x07, 0xd4, 0x38, 0x47, 0x60, 0x42, 0xa2, 0xa9, 0x02, 0x3c, 0x71,
+ 0x30, 0x8b, 0xba, 0x7f, 0x7a, 0xfb, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00,
+ 0x00, 0x01, 0x00, 0x00, 0x0a, 0xe8, 0xff, 0xff, 0xd4, 0x0d, 0x00, 0x00,
+ 0x5a, 0xd8, 0xff, 0xff, 0x2f, 0xf8, 0xff, 0xff, 0x4e, 0x2d, 0x00, 0x00,
+ 0x71, 0xf8, 0xff, 0xff, 0x62, 0xe8, 0xff, 0xff, 0x49, 0x23, 0x00, 0x00,
+ 0xf6, 0x9e, 0xff, 0xff, 0x68, 0x5a, 0x00, 0x00, 0xd0, 0x11, 0x00, 0x00,
+ 0xa8, 0xd3, 0xff, 0xff, 0x3c, 0x03, 0x00, 0x00, 0x55, 0xef, 0xff, 0xff,
+ 0x1d, 0x35, 0x00, 0x00, 0x2c, 0xd0, 0xff, 0xff, 0xb4, 0xf2, 0xff, 0xff,
+ 0x16, 0x13, 0x00, 0x00, 0x4b, 0x11, 0x00, 0x00, 0x24, 0xe3, 0xff, 0xff,
+ 0x45, 0xb3, 0xff, 0xff, 0xe2, 0xbe, 0xff, 0xff, 0xa0, 0xe7, 0xff, 0xff,
+ 0xe3, 0xf9, 0xff, 0xff, 0x18, 0x9f, 0xff, 0xff, 0x0b, 0xea, 0xff, 0xff,
+ 0x9a, 0xd5, 0xff, 0xff, 0x54, 0x1e, 0x00, 0x00, 0x6d, 0x63, 0x00, 0x00,
+ 0x7d, 0xf8, 0xff, 0xff, 0x17, 0xf1, 0xff, 0xff, 0x9d, 0x06, 0x00, 0x00,
+ 0x73, 0x2c, 0x00, 0x00, 0x8a, 0xa3, 0xff, 0xff, 0x61, 0xd5, 0xff, 0xff,
+ 0xcc, 0x15, 0x00, 0x00, 0x45, 0xfe, 0xff, 0xff, 0x56, 0x0e, 0x00, 0x00,
+ 0x8b, 0x5b, 0x00, 0x00, 0x9c, 0xf3, 0xff, 0xff, 0xb5, 0xf8, 0xff, 0xff,
+ 0x45, 0xed, 0xff, 0xff, 0xb7, 0x1e, 0x00, 0x00, 0x2d, 0x28, 0x00, 0x00,
+ 0xb1, 0x4f, 0x00, 0x00, 0x44, 0xed, 0xff, 0xff, 0x84, 0x8c, 0xff, 0xff,
+ 0x3a, 0x06, 0x00, 0x00, 0xd9, 0xb8, 0xff, 0xff, 0xb9, 0x24, 0x00, 0x00,
+ 0x5b, 0x27, 0x00, 0x00, 0x9d, 0xde, 0xff, 0xff, 0x06, 0xfa, 0xff, 0xff,
+ 0xa5, 0xb7, 0xff, 0xff, 0xe0, 0xf1, 0xff, 0xff, 0x40, 0x31, 0x00, 0x00,
+ 0x01, 0x35, 0x00, 0x00, 0x47, 0xe0, 0xff, 0xff, 0x05, 0x31, 0x00, 0x00,
+ 0xaf, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x1f, 0x00, 0x00,
+ 0x07, 0xbc, 0xff, 0xff, 0x1a, 0xca, 0xff, 0xff, 0x86, 0xfc, 0xff, 0xff,
+ 0x04, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x7a, 0x64, 0x67, 0x64,
+ 0xd8, 0x1c, 0x70, 0x96, 0x3e, 0xd7, 0x11, 0x29, 0xa4, 0x37, 0xa0, 0x0f,
+ 0xe8, 0xc0, 0x8c, 0xd6, 0x43, 0x2c, 0x7b, 0xe2, 0x7e, 0x0f, 0x77, 0xb3,
+ 0xf0, 0xd1, 0x3a, 0x14, 0x43, 0xbd, 0x2d, 0xf2, 0xe8, 0x4d, 0x71, 0x8a,
+ 0x1e, 0xc5, 0xd7, 0xdc, 0x7f, 0xfb, 0xc5, 0xd4, 0x94, 0x66, 0x65, 0x36,
+ 0x58, 0xfc, 0xf6, 0x48, 0x70, 0x56, 0x08, 0x5c, 0x77, 0xad, 0xf1, 0x3f,
+ 0xe2, 0xef, 0xba, 0xda, 0x47, 0xbf, 0x1a, 0x1b, 0xd8, 0x3b, 0x63, 0xe1,
+ 0x16, 0x9a, 0x36, 0xc5, 0x41, 0x35, 0x30, 0x21, 0x0a, 0xb4, 0x2d, 0x32,
+ 0x05, 0x65, 0xdf, 0x2a, 0x2f, 0xf6, 0x90, 0x50, 0xab, 0x44, 0xfb, 0x43,
+ 0x47, 0x48, 0xe9, 0xd2, 0xcc, 0x62, 0xb9, 0x3f, 0xde, 0x35, 0x20, 0x2a,
+ 0xd7, 0xfa, 0xe6, 0xf8, 0xd5, 0x81, 0xce, 0x07, 0x2e, 0xaa, 0x4a, 0xd8,
+ 0x9c, 0xf9, 0x90, 0xa4, 0x12, 0xfd, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00,
+ 0x08, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0xbb, 0xff, 0xff, 0xff,
+ 0x26, 0xfd, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x80, 0xc4, 0xff, 0xff,
+ 0x84, 0xc4, 0xff, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x4d, 0x4c, 0x49, 0x52,
+ 0x20, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x65, 0x64, 0x2e, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,
+ 0x18, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x08, 0x00, 0x04, 0x00,
+ 0x0e, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0xc8, 0x04, 0x00, 0x00, 0xcc, 0x04, 0x00, 0x00, 0xd0, 0x04, 0x00, 0x00,
+ 0x04, 0x00, 0x00, 0x00, 0x6d, 0x61, 0x69, 0x6e, 0x00, 0x00, 0x00, 0x00,
+ 0x13, 0x00, 0x00, 0x00, 0x64, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00,
+ 0xb0, 0x03, 0x00, 0x00, 0x6c, 0x03, 0x00, 0x00, 0x1c, 0x03, 0x00, 0x00,
+ 0xe8, 0x02, 0x00, 0x00, 0xa4, 0x02, 0x00, 0x00, 0x6c, 0x02, 0x00, 0x00,
+ 0x30, 0x02, 0x00, 0x00, 0x0c, 0x02, 0x00, 0x00, 0xc0, 0x01, 0x00, 0x00,
+ 0x7c, 0x01, 0x00, 0x00, 0x3c, 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x00,
+ 0xcc, 0x00, 0x00, 0x00, 0x94, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00,
+ 0x3c, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xe2, 0xfc, 0xff, 0xff,
+ 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x14, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xfa, 0xfd, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00,
+ 0x5a, 0xfe, 0xff, 0xff, 0x0c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x36, 0xfd, 0xff, 0xff,
+ 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x14, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x4e, 0xfe, 0xff, 0xff,
+ 0x00, 0x00, 0x80, 0x3f, 0x01, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x66, 0xfd, 0xff, 0xff,
+ 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x00,
+ 0x14, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xc4, 0xc5, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0x22, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x9a, 0xfd, 0xff, 0xff, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08,
+ 0x14, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0x46, 0xfe, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00,
+ 0x22, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00,
+ 0x05, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xd2, 0xfd, 0xff, 0xff,
+ 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x10, 0x00, 0x00, 0x00,
+ 0x14, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x30, 0xc6, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, 0xfd, 0xff, 0xff,
+ 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00,
+ 0x1c, 0x00, 0x00, 0x00, 0x08, 0xfd, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00,
+ 0x07, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x3e, 0xfe, 0xff, 0xff,
+ 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x24, 0x00, 0x00, 0x00,
+ 0x28, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xa2, 0xfd, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00,
+ 0x1f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00,
+ 0x92, 0xfd, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
+ 0x18, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x84, 0xfd, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x0a, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x08, 0x00, 0x04, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x5a, 0xfe, 0xff, 0xff,
+ 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x1c, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00,
+ 0x08, 0x00, 0x04, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x3f,
+ 0x01, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x1b, 0x00, 0x00, 0x00, 0x1e, 0xff, 0xff, 0xff, 0x14, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x08, 0x10, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x7c, 0xc7, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x1b, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xc6, 0xfe, 0xff, 0xff,
+ 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x1c, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00,
+ 0x08, 0x00, 0x07, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
+ 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0x19, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
+ 0x92, 0xff, 0xff, 0xff, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b,
+ 0x10, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0xf0, 0xc7, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xd6, 0xfe, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
+ 0x18, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xc8, 0xfe, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0x17, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x0e, 0x00, 0x18, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0c, 0x00,
+ 0x0b, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x05, 0x24, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x72, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x62, 0xff, 0xff, 0xff,
+ 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00,
+ 0x1c, 0x00, 0x00, 0x00, 0x54, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x16, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00,
+ 0x11, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,
+ 0x1a, 0x00, 0x14, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x04, 0x00,
+ 0x0e, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05,
+ 0x34, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x0e, 0x00, 0x18, 0x00, 0x17, 0x00, 0x10, 0x00, 0x0c, 0x00,
+ 0x08, 0x00, 0x04, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,
+ 0x14, 0x00, 0x00, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x04, 0x00,
+ 0x0e, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
+ 0x24, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x10, 0x00,
+ 0x00, 0x00, 0x0c, 0x00, 0x08, 0x00, 0x07, 0x00, 0x0c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0xa0, 0x36, 0x00, 0x00,
+ 0x44, 0x36, 0x00, 0x00, 0xbc, 0x35, 0x00, 0x00, 0x48, 0x35, 0x00, 0x00,
+ 0xf4, 0x31, 0x00, 0x00, 0x98, 0x2e, 0x00, 0x00, 0xc4, 0x2c, 0x00, 0x00,
+ 0xe0, 0x2a, 0x00, 0x00, 0xcc, 0x29, 0x00, 0x00, 0xa8, 0x28, 0x00, 0x00,
+ 0x3c, 0x28, 0x00, 0x00, 0xc8, 0x27, 0x00, 0x00, 0x74, 0x21, 0x00, 0x00,
+ 0x18, 0x1b, 0x00, 0x00, 0xc4, 0x17, 0x00, 0x00, 0x60, 0x14, 0x00, 0x00,
+ 0x8c, 0x12, 0x00, 0x00, 0xa8, 0x10, 0x00, 0x00, 0x94, 0x0f, 0x00, 0x00,
+ 0x70, 0x0e, 0x00, 0x00, 0x64, 0x0d, 0x00, 0x00, 0xc8, 0x0c, 0x00, 0x00,
+ 0xbc, 0x0b, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0x14, 0x0a, 0x00, 0x00,
+ 0x90, 0x09, 0x00, 0x00, 0x6c, 0x08, 0x00, 0x00, 0xc0, 0x07, 0x00, 0x00,
+ 0x34, 0x07, 0x00, 0x00, 0xa8, 0x06, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00,
+ 0x00, 0x05, 0x00, 0x00, 0xf4, 0x03, 0x00, 0x00, 0x70, 0x03, 0x00, 0x00,
+ 0x4c, 0x02, 0x00, 0x00, 0x98, 0x01, 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00,
+ 0x80, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x12, 0xca, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
+ 0x3c, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
+ 0x50, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x04, 0x00, 0x00, 0x00, 0xf4, 0xc9, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00,
+ 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x81, 0x80, 0x80, 0x3b,
+ 0x1b, 0x00, 0x00, 0x00, 0x53, 0x74, 0x61, 0x74, 0x65, 0x66, 0x75, 0x6c,
+ 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x65, 0x64, 0x43,
+ 0x61, 0x6c, 0x6c, 0x5f, 0x31, 0x3a, 0x30, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x8a, 0xca, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
+ 0x3c, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
+ 0x60, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x6c, 0xca, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00,
+ 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x81, 0x80, 0x80, 0x3b,
+ 0x2a, 0x00, 0x00, 0x00, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79,
+ 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x65, 0x6d, 0x6f,
+ 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f,
+ 0x31, 0x2f, 0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x31, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x12, 0xcb, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x09, 0x60, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xf4, 0xca, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x80, 0x3b, 0x29, 0x00, 0x00, 0x00, 0x62, 0x61, 0x62, 0x79,
+ 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31,
+ 0x2f, 0x65, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74,
+ 0x70, 0x75, 0x74, 0x5f, 0x31, 0x2f, 0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61,
+ 0x78, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x9a, 0xcb, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x18, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
+ 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x88, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x7c, 0xcb, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0xf4, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xe6, 0x83, 0x95, 0x3d, 0x52, 0x00, 0x00, 0x00,
+ 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73,
+ 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x65, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e,
+ 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x31, 0x2f, 0x4d, 0x61,
+ 0x74, 0x4d, 0x75, 0x6c, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72,
+ 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x65, 0x6d,
+ 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74,
+ 0x5f, 0x31, 0x2f, 0x42, 0x69, 0x61, 0x73, 0x41, 0x64, 0x64, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x4a, 0xcc, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x09, 0xf8, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x2c, 0xcc, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x06, 0x42, 0x14, 0x3d, 0xbd, 0x00, 0x00, 0x00,
+ 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73,
+ 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x32, 0x5f, 0x66, 0x63, 0x31, 0x5f,
+ 0x31, 0x2f, 0x4d, 0x61, 0x74, 0x4d, 0x75, 0x6c, 0x3b, 0x62, 0x61, 0x62,
+ 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f,
+ 0x31, 0x2f, 0x6d, 0x32, 0x5f, 0x66, 0x63, 0x31, 0x5f, 0x31, 0x2f, 0x42,
+ 0x69, 0x61, 0x73, 0x41, 0x64, 0x64, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f,
+ 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f,
+ 0x6d, 0x32, 0x5f, 0x62, 0x6e, 0x5f, 0x66, 0x63, 0x5f, 0x31, 0x2f, 0x62,
+ 0x61, 0x74, 0x63, 0x68, 0x6e, 0x6f, 0x72, 0x6d, 0x2f, 0x6d, 0x75, 0x6c,
+ 0x5f, 0x31, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f,
+ 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x32, 0x5f, 0x72,
+ 0x65, 0x6c, 0x75, 0x5f, 0x66, 0x63, 0x5f, 0x31, 0x2f, 0x52, 0x65, 0x6c,
+ 0x75, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66,
+ 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x32, 0x5f, 0x62, 0x6e,
+ 0x5f, 0x66, 0x63, 0x5f, 0x31, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x6e,
+ 0x6f, 0x72, 0x6d, 0x2f, 0x61, 0x64, 0x64, 0x5f, 0x31, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00,
+ 0x6a, 0xcd, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x09, 0x58, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x20, 0x00, 0x00, 0x00, 0x4c, 0xcd, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x33, 0x92, 0x2f, 0x3c, 0x1e, 0x00, 0x00, 0x00,
+ 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73,
+ 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x32, 0x5f, 0x67, 0x61, 0x70, 0x5f,
+ 0x31, 0x2f, 0x4d, 0x65, 0x61, 0x6e, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0xea, 0xcd, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00,
+ 0x44, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
+ 0xd8, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x25, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
+ 0xd4, 0xcd, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x0b, 0x23, 0x00, 0x3d, 0x9a, 0x00, 0x00, 0x00,
+ 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73,
+ 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x32, 0x5f, 0x72, 0x65, 0x6c, 0x75,
+ 0x32, 0x5f, 0x31, 0x2f, 0x52, 0x65, 0x6c, 0x75, 0x3b, 0x62, 0x61, 0x62,
+ 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f,
+ 0x31, 0x2f, 0x6d, 0x32, 0x5f, 0x62, 0x6e, 0x32, 0x5f, 0x31, 0x2f, 0x62,
+ 0x61, 0x74, 0x63, 0x68, 0x6e, 0x6f, 0x72, 0x6d, 0x2f, 0x61, 0x64, 0x64,
+ 0x5f, 0x31, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f,
+ 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x32, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x32, 0x5f, 0x31, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x6f,
+ 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f,
+ 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f,
+ 0x6d, 0x32, 0x5f, 0x62, 0x6e, 0x32, 0x5f, 0x31, 0x2f, 0x62, 0x61, 0x74,
+ 0x63, 0x68, 0x6e, 0x6f, 0x72, 0x6d, 0x2f, 0x73, 0x75, 0x62, 0x00, 0x00,
+ 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00,
+ 0x14, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0xf2, 0xce, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00,
+ 0x48, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
+ 0x68, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x25, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0xdc, 0xce, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x6d, 0x18, 0x11, 0x3d,
+ 0x25, 0x00, 0x00, 0x00, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79,
+ 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x32, 0x5f,
+ 0x70, 0x6f, 0x6f, 0x6c, 0x31, 0x5f, 0x31, 0x2f, 0x4d, 0x61, 0x78, 0x50,
+ 0x6f, 0x6f, 0x6c, 0x32, 0x64, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
+ 0x10, 0x00, 0x00, 0x00, 0x8a, 0xcf, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00,
+ 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0xd8, 0x00, 0x00, 0x00,
+ 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x4b, 0x00, 0x00, 0x00,
+ 0x28, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x74, 0xcf, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x6d, 0x18, 0x11, 0x3d, 0x9a, 0x00, 0x00, 0x00, 0x62, 0x61, 0x62, 0x79,
+ 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31,
+ 0x2f, 0x6d, 0x32, 0x5f, 0x72, 0x65, 0x6c, 0x75, 0x31, 0x5f, 0x31, 0x2f,
+ 0x52, 0x65, 0x6c, 0x75, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72,
+ 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x32,
+ 0x5f, 0x62, 0x6e, 0x31, 0x5f, 0x31, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68,
+ 0x6e, 0x6f, 0x72, 0x6d, 0x2f, 0x61, 0x64, 0x64, 0x5f, 0x31, 0x3b, 0x62,
+ 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65,
+ 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x32, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x31,
+ 0x5f, 0x31, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x6f, 0x6c, 0x75, 0x74, 0x69,
+ 0x6f, 0x6e, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f,
+ 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x32, 0x5f, 0x62,
+ 0x6e, 0x31, 0x5f, 0x31, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x6e, 0x6f,
+ 0x72, 0x6d, 0x2f, 0x73, 0x75, 0x62, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00,
+ 0x10, 0x00, 0x00, 0x00, 0x92, 0xd0, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x18, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00,
+ 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x60, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x74, 0xd0, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x81, 0x80, 0x80, 0x3b,
+ 0x26, 0x00, 0x00, 0x00, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79,
+ 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x63, 0x72, 0x79,
+ 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x31, 0x2f, 0x53, 0x6f,
+ 0x66, 0x74, 0x6d, 0x61, 0x78, 0x31, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x1a, 0xd1, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
+ 0x40, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
+ 0x60, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0xfc, 0xd0, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00,
+ 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x80, 0x3b, 0x25, 0x00, 0x00, 0x00, 0x62, 0x61, 0x62, 0x79,
+ 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31,
+ 0x2f, 0x63, 0x72, 0x79, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f,
+ 0x31, 0x2f, 0x53, 0x6f, 0x66, 0x74, 0x6d, 0x61, 0x78, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0xa2, 0xd1, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x09, 0x80, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x84, 0xd1, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xdc, 0xd6, 0x84, 0x3d, 0x4a, 0x00, 0x00, 0x00, 0x62, 0x61, 0x62, 0x79,
+ 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31,
+ 0x2f, 0x63, 0x72, 0x79, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f,
+ 0x31, 0x2f, 0x4d, 0x61, 0x74, 0x4d, 0x75, 0x6c, 0x3b, 0x62, 0x61, 0x62,
+ 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f,
+ 0x31, 0x2f, 0x63, 0x72, 0x79, 0x5f, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74,
+ 0x5f, 0x31, 0x2f, 0x42, 0x69, 0x61, 0x73, 0x41, 0x64, 0x64, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x4a, 0xd2, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x09, 0xf8, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x2c, 0xd2, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x12, 0xba, 0x9b, 0x3c, 0xbd, 0x00, 0x00, 0x00,
+ 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73,
+ 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x66, 0x63, 0x31, 0x5f,
+ 0x31, 0x2f, 0x4d, 0x61, 0x74, 0x4d, 0x75, 0x6c, 0x3b, 0x62, 0x61, 0x62,
+ 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f,
+ 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x66, 0x63, 0x31, 0x5f, 0x31, 0x2f, 0x42,
+ 0x69, 0x61, 0x73, 0x41, 0x64, 0x64, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f,
+ 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f,
+ 0x6d, 0x31, 0x5f, 0x62, 0x6e, 0x5f, 0x66, 0x63, 0x5f, 0x31, 0x2f, 0x62,
+ 0x61, 0x74, 0x63, 0x68, 0x6e, 0x6f, 0x72, 0x6d, 0x2f, 0x6d, 0x75, 0x6c,
+ 0x5f, 0x31, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f,
+ 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x72,
+ 0x65, 0x6c, 0x75, 0x5f, 0x66, 0x63, 0x5f, 0x31, 0x2f, 0x52, 0x65, 0x6c,
+ 0x75, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66,
+ 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x62, 0x6e,
+ 0x5f, 0x66, 0x63, 0x5f, 0x31, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x6e,
+ 0x6f, 0x72, 0x6d, 0x2f, 0x61, 0x64, 0x64, 0x5f, 0x31, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00,
+ 0x6a, 0xd3, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x09, 0x58, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x4c, 0xd3, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x50, 0x0d, 0xf8, 0x3b, 0x1e, 0x00, 0x00, 0x00,
+ 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73,
+ 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x67, 0x61, 0x70, 0x5f,
+ 0x31, 0x2f, 0x4d, 0x65, 0x61, 0x6e, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0xea, 0xd3, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00,
+ 0x44, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
+ 0xd8, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x12, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00,
+ 0xd4, 0xd3, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xb5, 0x6c, 0x00, 0x3d, 0x9a, 0x00, 0x00, 0x00,
+ 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73,
+ 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x72, 0x65, 0x6c, 0x75,
+ 0x33, 0x5f, 0x31, 0x2f, 0x52, 0x65, 0x6c, 0x75, 0x3b, 0x62, 0x61, 0x62,
+ 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f,
+ 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x62, 0x6e, 0x33, 0x5f, 0x31, 0x2f, 0x62,
+ 0x61, 0x74, 0x63, 0x68, 0x6e, 0x6f, 0x72, 0x6d, 0x2f, 0x61, 0x64, 0x64,
+ 0x5f, 0x31, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f,
+ 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x33, 0x5f, 0x31, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x6f,
+ 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f,
+ 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f,
+ 0x6d, 0x31, 0x5f, 0x62, 0x6e, 0x33, 0x5f, 0x31, 0x2f, 0x62, 0x61, 0x74,
+ 0x63, 0x68, 0x6e, 0x6f, 0x72, 0x6d, 0x2f, 0x73, 0x75, 0x62, 0x00, 0x00,
+ 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0xf2, 0xd4, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00,
+ 0x48, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
+ 0x68, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x12, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
+ 0xdc, 0xd4, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x5e, 0x28, 0x0c, 0x3d,
+ 0x25, 0x00, 0x00, 0x00, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79,
+ 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f,
+ 0x70, 0x6f, 0x6f, 0x6c, 0x32, 0x5f, 0x31, 0x2f, 0x4d, 0x61, 0x78, 0x50,
+ 0x6f, 0x6f, 0x6c, 0x32, 0x64, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x8a, 0xd5, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00,
+ 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0xd8, 0x00, 0x00, 0x00,
+ 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x25, 0x00, 0x00, 0x00,
+ 0x14, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x74, 0xd5, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x5e, 0x28, 0x0c, 0x3d, 0x9a, 0x00, 0x00, 0x00, 0x62, 0x61, 0x62, 0x79,
+ 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31,
+ 0x2f, 0x6d, 0x31, 0x5f, 0x72, 0x65, 0x6c, 0x75, 0x32, 0x5f, 0x31, 0x2f,
+ 0x52, 0x65, 0x6c, 0x75, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72,
+ 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31,
+ 0x5f, 0x62, 0x6e, 0x32, 0x5f, 0x31, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68,
+ 0x6e, 0x6f, 0x72, 0x6d, 0x2f, 0x61, 0x64, 0x64, 0x5f, 0x31, 0x3b, 0x62,
+ 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65,
+ 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x32,
+ 0x5f, 0x31, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x6f, 0x6c, 0x75, 0x74, 0x69,
+ 0x6f, 0x6e, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f,
+ 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x62,
+ 0x6e, 0x32, 0x5f, 0x31, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x6e, 0x6f,
+ 0x72, 0x6d, 0x2f, 0x73, 0x75, 0x62, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x92, 0xd6, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00,
+ 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x68, 0x00, 0x00, 0x00,
+ 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x25, 0x00, 0x00, 0x00,
+ 0x14, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x7c, 0xd6, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0xba, 0x9d, 0x1a, 0x3d, 0x25, 0x00, 0x00, 0x00,
+ 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73,
+ 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x70, 0x6f, 0x6f, 0x6c,
+ 0x31, 0x5f, 0x31, 0x2f, 0x4d, 0x61, 0x78, 0x50, 0x6f, 0x6f, 0x6c, 0x32,
+ 0x64, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x25, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x2a, 0xd7, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00,
+ 0x28, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x09, 0xd8, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x4b, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00,
+ 0x10, 0x00, 0x00, 0x00, 0x14, 0xd7, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00,
+ 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xba, 0x9d, 0x1a, 0x3d,
+ 0x9b, 0x00, 0x00, 0x00, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79,
+ 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f,
+ 0x72, 0x65, 0x6c, 0x75, 0x31, 0x5f, 0x31, 0x2f, 0x52, 0x65, 0x6c, 0x75,
+ 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75,
+ 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x62, 0x6e, 0x31,
+ 0x5f, 0x31, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x6e, 0x6f, 0x72, 0x6d,
+ 0x2f, 0x61, 0x64, 0x64, 0x5f, 0x31, 0x3b, 0x62, 0x61, 0x62, 0x79, 0x5f,
+ 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x31, 0x2f,
+ 0x6d, 0x31, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x31, 0x5f, 0x31, 0x2f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x6f, 0x6c, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x3b, 0x62,
+ 0x61, 0x62, 0x79, 0x5f, 0x63, 0x72, 0x79, 0x5f, 0x66, 0x75, 0x73, 0x65,
+ 0x64, 0x5f, 0x31, 0x2f, 0x6d, 0x31, 0x5f, 0x62, 0x6e, 0x31, 0x5f, 0x31,
+ 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x6e, 0x6f, 0x72, 0x6d, 0x2f, 0x73,
+ 0x75, 0x62, 0x31, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x4b, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x8a, 0xd8, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00,
+ 0xe8, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
+ 0xf4, 0x00, 0x00, 0x00, 0x04, 0xd8, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00,
+ 0x8c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x5c, 0x3b, 0xe9, 0x3b, 0x82, 0x1c, 0x8a, 0x3b, 0x9b, 0xbe, 0x08, 0x3c,
+ 0x87, 0x1d, 0x31, 0x3c, 0x19, 0xbf, 0x8a, 0x3c, 0xbb, 0xf1, 0x32, 0x3c,
+ 0x6f, 0x79, 0xd5, 0x3b, 0xd2, 0x62, 0xd9, 0x3c, 0xc6, 0x3e, 0x23, 0x3c,
+ 0x17, 0x91, 0x2d, 0x3c, 0x84, 0xb2, 0x8a, 0x3c, 0xc4, 0x3e, 0xbc, 0x3c,
+ 0x7d, 0xb2, 0x8f, 0x3c, 0x84, 0xb0, 0x08, 0x3c, 0x48, 0x42, 0x79, 0x3c,
+ 0xaa, 0xbb, 0x64, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x74, 0x66, 0x6c, 0x2e,
+ 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x31, 0x37, 0x00, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0xaa, 0xd9, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00,
+ 0xe4, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02,
+ 0xf0, 0x00, 0x00, 0x00, 0x24, 0xd9, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00,
+ 0x88, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x82, 0x25, 0xea, 0x37,
+ 0x2a, 0xa7, 0x8a, 0x37, 0xe3, 0x47, 0x09, 0x38, 0x57, 0xcf, 0x31, 0x38,
+ 0x64, 0x4a, 0x8b, 0x38, 0x61, 0xa5, 0x33, 0x38, 0xc0, 0x4f, 0xd6, 0x37,
+ 0x10, 0x3d, 0xda, 0x38, 0xa9, 0xe2, 0x23, 0x38, 0x57, 0x3f, 0x2e, 0x38,
+ 0xc2, 0x3d, 0x8b, 0x38, 0xc0, 0xfb, 0xbc, 0x38, 0xc0, 0x42, 0x90, 0x38,
+ 0xbe, 0x39, 0x09, 0x38, 0x85, 0x3c, 0x7a, 0x38, 0x4c, 0xa1, 0x65, 0x38,
+ 0x13, 0x00, 0x00, 0x00, 0x74, 0x66, 0x6c, 0x2e, 0x70, 0x73, 0x65, 0x75,
+ 0x64, 0x6f, 0x5f, 0x71, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x31, 0x36, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xba, 0xda, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0xa8, 0x01, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0xb4, 0x01, 0x00, 0x00,
+ 0x34, 0xda, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x76, 0x58, 0xda, 0x3a, 0xb8, 0x58, 0xd1, 0x3a,
+ 0x5a, 0xf9, 0xc8, 0x3a, 0x5c, 0x21, 0x06, 0x3b, 0xbe, 0x14, 0xee, 0x3a,
+ 0x68, 0x9e, 0x05, 0x3b, 0xd1, 0x3e, 0x1f, 0x3b, 0xa1, 0x03, 0x14, 0x3b,
+ 0x52, 0xb1, 0xbc, 0x3a, 0x66, 0x78, 0xf5, 0x3a, 0x8f, 0x05, 0xf4, 0x3a,
+ 0xd7, 0x07, 0x0a, 0x3b, 0x11, 0x80, 0x1c, 0x3b, 0xb1, 0xf0, 0x49, 0x3b,
+ 0xd6, 0x23, 0x69, 0x3b, 0x30, 0x02, 0x0d, 0x3b, 0x2f, 0x2b, 0xf3, 0x3a,
+ 0xe8, 0x75, 0xc4, 0x3a, 0x50, 0xf5, 0xe5, 0x3a, 0xc4, 0x64, 0x8c, 0x3a,
+ 0x78, 0xac, 0xbf, 0x3a, 0x5b, 0xb4, 0x00, 0x3b, 0x6f, 0xd2, 0x24, 0x3b,
+ 0xf0, 0x1f, 0x88, 0x3a, 0x2e, 0xca, 0xfc, 0x3a, 0x01, 0x92, 0x04, 0x3b,
+ 0xaf, 0xe1, 0x0a, 0x3b, 0x26, 0x50, 0xc1, 0x3a, 0x1a, 0x19, 0xbf, 0x3a,
+ 0x2e, 0xba, 0xf9, 0x3a, 0x30, 0x8a, 0x20, 0x3b, 0x8f, 0x00, 0x36, 0x3b,
+ 0x13, 0x00, 0x00, 0x00, 0x74, 0x66, 0x6c, 0x2e, 0x70, 0x73, 0x65, 0x75,
+ 0x64, 0x6f, 0x5f, 0x71, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x31, 0x35, 0x00,
+ 0x04, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x9a, 0xdc, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0xa4, 0x01, 0x00, 0x00,
+ 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xb0, 0x01, 0x00, 0x00,
+ 0x14, 0xdc, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x08, 0x01, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
+ 0xbe, 0xdf, 0x83, 0x38, 0xb4, 0xe0, 0x7c, 0x38, 0xa6, 0xc3, 0x72, 0x38,
+ 0x6b, 0x05, 0xa2, 0x38, 0x2a, 0xcb, 0x8f, 0x38, 0x3c, 0x67, 0xa1, 0x38,
+ 0xce, 0x5b, 0xc0, 0x38, 0xc1, 0xca, 0xb2, 0x38, 0xda, 0xed, 0x63, 0x38,
+ 0xab, 0x41, 0x94, 0x38, 0xb1, 0x61, 0x93, 0x38, 0x85, 0xbb, 0xa6, 0x38,
+ 0xed, 0x0a, 0xbd, 0x38, 0x6c, 0xee, 0xf3, 0x38, 0x33, 0xcf, 0x0c, 0x39,
+ 0x63, 0x54, 0xaa, 0x38, 0xcc, 0xdd, 0x92, 0x38, 0xf1, 0x4f, 0x6d, 0x38,
+ 0x41, 0xe3, 0x8a, 0x38, 0x3b, 0x96, 0x29, 0x38, 0xb0, 0x87, 0x67, 0x38,
+ 0x96, 0x77, 0x9b, 0x38, 0x47, 0x18, 0xc7, 0x38, 0x2a, 0x6e, 0x24, 0x38,
+ 0x5f, 0xad, 0x98, 0x38, 0x05, 0x23, 0xa0, 0x38, 0xa9, 0xc2, 0xa7, 0x38,
+ 0xa3, 0x82, 0x69, 0x38, 0xae, 0xd5, 0x66, 0x38, 0xdc, 0xd3, 0x96, 0x38,
+ 0x15, 0xec, 0xc1, 0x38, 0xf1, 0xd8, 0xdb, 0x38, 0x13, 0x00, 0x00, 0x00,
+ 0x74, 0x66, 0x6c, 0x2e, 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x31, 0x34, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x6a, 0xde, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x14, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x09, 0x34, 0x03, 0x00, 0x00, 0xe4, 0xdd, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x0c, 0x02, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x40, 0x00, 0x00, 0x00, 0xc9, 0x1c, 0x4e, 0x3a, 0x10, 0xbf, 0x8f, 0x3a,
+ 0xff, 0x23, 0xaf, 0x3a, 0x23, 0x5e, 0xc5, 0x3a, 0x15, 0xa7, 0xa6, 0x3a,
+ 0xa6, 0x98, 0xba, 0x3a, 0xe9, 0x2f, 0x84, 0x3a, 0x4a, 0xe6, 0x85, 0x3a,
+ 0x04, 0xa7, 0x82, 0x3a, 0x5f, 0x37, 0xa0, 0x3a, 0xfa, 0x34, 0x80, 0x3a,
+ 0x70, 0x94, 0xa8, 0x3a, 0x00, 0x8f, 0x8e, 0x3a, 0xa2, 0xaf, 0x9b, 0x3a,
+ 0xc6, 0xe8, 0x76, 0x3a, 0xab, 0x37, 0x91, 0x3a, 0x42, 0xce, 0x87, 0x3a,
+ 0x67, 0x90, 0x9e, 0x3a, 0xae, 0x48, 0x60, 0x3a, 0x43, 0xc5, 0x84, 0x3a,
+ 0x7b, 0xb0, 0x88, 0x3a, 0x1b, 0xd9, 0x9f, 0x3a, 0x54, 0x5d, 0x90, 0x3a,
+ 0xbe, 0x46, 0x81, 0x3a, 0xb4, 0x11, 0x85, 0x3a, 0xe6, 0xa0, 0x49, 0x3a,
+ 0x9c, 0x13, 0x4c, 0x3a, 0x02, 0x2d, 0x86, 0x3a, 0x8b, 0xdc, 0xc6, 0x3a,
+ 0xc7, 0x61, 0x9f, 0x3a, 0xb9, 0x2c, 0xbe, 0x3a, 0x5c, 0x92, 0x7d, 0x3a,
+ 0xf1, 0x86, 0x99, 0x3a, 0xc2, 0xad, 0x99, 0x3a, 0xf0, 0x44, 0x8f, 0x3a,
+ 0x6a, 0xb2, 0x76, 0x3a, 0x91, 0x61, 0x8a, 0x3a, 0x2e, 0x89, 0x54, 0x3a,
+ 0x2a, 0x58, 0x99, 0x3a, 0x23, 0xcc, 0x84, 0x3a, 0x3d, 0x2d, 0xad, 0x3a,
+ 0x41, 0xf7, 0x7e, 0x3a, 0xc7, 0xf3, 0x55, 0x3a, 0x3a, 0xa4, 0xb6, 0x3a,
+ 0x8c, 0xca, 0x89, 0x3a, 0x9d, 0x63, 0x58, 0x3a, 0x6b, 0x0a, 0xbb, 0x3a,
+ 0x42, 0x34, 0x9b, 0x3a, 0x93, 0xd8, 0x6e, 0x3a, 0x28, 0x7d, 0x41, 0x3a,
+ 0x7c, 0x07, 0x4a, 0x3a, 0x12, 0x1c, 0x6c, 0x3a, 0x97, 0x32, 0x8c, 0x3a,
+ 0xb5, 0x71, 0xa1, 0x3a, 0x7b, 0x2b, 0x77, 0x3a, 0x03, 0x5e, 0x89, 0x3a,
+ 0x98, 0x3c, 0x52, 0x3a, 0x30, 0xef, 0xd0, 0x3a, 0x7d, 0x33, 0xad, 0x3a,
+ 0x9e, 0xb0, 0x69, 0x3a, 0xc6, 0x42, 0x82, 0x3a, 0xa4, 0xd0, 0x74, 0x3a,
+ 0xd5, 0xb0, 0x90, 0x3a, 0x16, 0x26, 0x9b, 0x3a, 0x13, 0x00, 0x00, 0x00,
+ 0x74, 0x66, 0x6c, 0x2e, 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x31, 0x33, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x40, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0xca, 0xe1, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x14, 0x00, 0x00, 0x00, 0x24, 0x03, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x02, 0x30, 0x03, 0x00, 0x00, 0x44, 0xe1, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00,
+ 0x7c, 0xb0, 0xe1, 0x37, 0x4f, 0x66, 0x1d, 0x38, 0x9b, 0xc6, 0x3f, 0x38,
+ 0x35, 0x1d, 0x58, 0x38, 0x4e, 0x7b, 0x36, 0x38, 0xce, 0x51, 0x4c, 0x38,
+ 0x17, 0xbe, 0x10, 0x38, 0x1b, 0x9e, 0x12, 0x38, 0xe1, 0x0f, 0x0f, 0x38,
+ 0x17, 0x6f, 0x2f, 0x38, 0x60, 0x62, 0x0c, 0x38, 0x85, 0x97, 0x38, 0x38,
+ 0x5d, 0x19, 0x1c, 0x38, 0x32, 0x79, 0x2a, 0x38, 0x3b, 0x2e, 0x07, 0x38,
+ 0xaf, 0x02, 0x1f, 0x38, 0x6c, 0xb4, 0x14, 0x38, 0xf2, 0x9f, 0x2d, 0x38,
+ 0x3a, 0x96, 0xf5, 0x37, 0xa0, 0x61, 0x11, 0x38, 0x22, 0xac, 0x15, 0x38,
+ 0xdf, 0x07, 0x2f, 0x38, 0x9b, 0x13, 0x1e, 0x38, 0x25, 0x8e, 0x0d, 0x38,
+ 0x54, 0xb5, 0x11, 0x38, 0x92, 0xc7, 0xdc, 0x37, 0xcf, 0x75, 0xdf, 0x37,
+ 0x8b, 0xeb, 0x12, 0x38, 0xef, 0xbf, 0x59, 0x38, 0x35, 0x85, 0x2e, 0x38,
+ 0xe4, 0x3c, 0x50, 0x38, 0x06, 0xd4, 0x0a, 0x38, 0x03, 0x1c, 0x28, 0x38,
+ 0x83, 0x46, 0x28, 0x38, 0x95, 0xe0, 0x1c, 0x38, 0x78, 0x10, 0x07, 0x38,
+ 0x5b, 0x86, 0x17, 0x38, 0x11, 0xb9, 0xe8, 0x37, 0xca, 0xe8, 0x27, 0x38,
+ 0x28, 0x69, 0x11, 0x38, 0x18, 0xa0, 0x3d, 0x38, 0x6c, 0x97, 0x0b, 0x38,
+ 0x1b, 0x46, 0xea, 0x37, 0x39, 0xfd, 0x47, 0x38, 0xfe, 0xe0, 0x16, 0x38,
+ 0x32, 0xf1, 0xec, 0x37, 0x62, 0xce, 0x4c, 0x38, 0x1a, 0xf2, 0x29, 0x38,
+ 0x1a, 0xc4, 0x02, 0x38, 0xe9, 0xdd, 0xd3, 0x37, 0xe6, 0x37, 0xdd, 0x37,
+ 0x95, 0x44, 0x01, 0x38, 0x8c, 0x83, 0x19, 0x38, 0x48, 0xc7, 0x30, 0x38,
+ 0xc1, 0x52, 0x07, 0x38, 0x26, 0x6a, 0x16, 0x38, 0x94, 0x34, 0xe6, 0x37,
+ 0x81, 0xc7, 0x64, 0x38, 0xf0, 0xa6, 0x3d, 0x38, 0xe0, 0xe2, 0xff, 0x37,
+ 0x1d, 0xa2, 0x0e, 0x38, 0xb4, 0x08, 0x06, 0x38, 0x0a, 0x6f, 0x1e, 0x38,
+ 0x96, 0xe2, 0x29, 0x38, 0x13, 0x00, 0x00, 0x00, 0x74, 0x66, 0x6c, 0x2e,
+ 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x31, 0x32, 0x00, 0x01, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00,
+ 0x1a, 0xe5, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00,
+ 0x28, 0x06, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
+ 0x34, 0x06, 0x00, 0x00, 0x94, 0xe4, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00,
+ 0x0c, 0x04, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0xcf, 0x20, 0x03, 0x3c,
+ 0x8b, 0x7e, 0x05, 0x3c, 0xc2, 0x57, 0x9a, 0x3b, 0xeb, 0xac, 0x06, 0x3c,
+ 0x86, 0xb7, 0x2e, 0x3c, 0x1b, 0x0d, 0xed, 0x3b, 0x37, 0xbe, 0x12, 0x3c,
+ 0xcb, 0x99, 0x2c, 0x3c, 0x26, 0xa7, 0xea, 0x3b, 0x6f, 0x45, 0x33, 0x3c,
+ 0x4a, 0x2e, 0x13, 0x3c, 0x0b, 0x38, 0x6b, 0x3c, 0xea, 0xd6, 0x2d, 0x3c,
+ 0x9a, 0xb1, 0x16, 0x3c, 0xa0, 0xc4, 0x59, 0x3c, 0xb4, 0x74, 0x1b, 0x3c,
+ 0xf5, 0xe9, 0x24, 0x3c, 0xf1, 0x14, 0xea, 0x3b, 0x88, 0xbf, 0x78, 0x3c,
+ 0xff, 0xca, 0x3e, 0x3c, 0x27, 0x01, 0x1b, 0x3c, 0xf3, 0xcb, 0x16, 0x3c,
+ 0xae, 0xd2, 0x00, 0x3c, 0xbe, 0x1e, 0x34, 0x3c, 0xe1, 0x62, 0x3f, 0x3c,
+ 0xe3, 0x8d, 0x40, 0x3c, 0x99, 0x2e, 0x7c, 0x3c, 0x5c, 0x42, 0x1a, 0x3c,
+ 0x44, 0xc0, 0x29, 0x3c, 0x5f, 0xed, 0x83, 0x3c, 0x11, 0xad, 0x5b, 0x3c,
+ 0x70, 0x67, 0x89, 0x3c, 0xcb, 0x6e, 0x00, 0x3c, 0x26, 0x36, 0x03, 0x3c,
+ 0xa9, 0x63, 0x14, 0x3c, 0x77, 0x48, 0x23, 0x3c, 0x6a, 0x55, 0x86, 0x3c,
+ 0x5c, 0xdd, 0xff, 0x3b, 0xe9, 0x75, 0x0e, 0x3c, 0x61, 0xf8, 0x1d, 0x3c,
+ 0x56, 0xa5, 0x39, 0x3c, 0x3e, 0x60, 0x17, 0x3c, 0x36, 0x86, 0x3f, 0x3c,
+ 0xe4, 0xa5, 0x45, 0x3c, 0xa5, 0xca, 0x80, 0x3c, 0x43, 0x68, 0x0d, 0x3c,
+ 0xc5, 0x65, 0x30, 0x3c, 0xf0, 0xb2, 0x12, 0x3c, 0x45, 0x94, 0x20, 0x3c,
+ 0x43, 0xd1, 0x86, 0x3c, 0x5a, 0x55, 0x2e, 0x3c, 0x5b, 0xac, 0x23, 0x3c,
+ 0x37, 0xb6, 0x2a, 0x3c, 0xf4, 0xce, 0x0d, 0x3c, 0x3f, 0x23, 0x26, 0x3c,
+ 0x56, 0x83, 0x11, 0x3c, 0xdd, 0x4f, 0x27, 0x3c, 0x9d, 0x8b, 0x3f, 0x3c,
+ 0x05, 0x24, 0x48, 0x3c, 0xc2, 0x63, 0x20, 0x3c, 0xbc, 0x39, 0x38, 0x3c,
+ 0x56, 0x66, 0xd1, 0x3b, 0xfa, 0x44, 0x39, 0x3c, 0x00, 0x63, 0x07, 0x3c,
+ 0x72, 0xc9, 0x08, 0x3c, 0x71, 0x7b, 0x3d, 0x3c, 0x13, 0xe6, 0x27, 0x3c,
+ 0x2b, 0x67, 0x41, 0x3c, 0x3a, 0x18, 0x0e, 0x3c, 0x08, 0x83, 0xa2, 0x3b,
+ 0x9e, 0x4e, 0x1a, 0x3c, 0xfd, 0x9a, 0x75, 0x3c, 0x7c, 0xea, 0x40, 0x3c,
+ 0x0c, 0x69, 0x19, 0x3c, 0x7d, 0xaf, 0xdb, 0x3c, 0x3f, 0x24, 0xf7, 0x3b,
+ 0xcb, 0x10, 0x03, 0x3c, 0x01, 0xfc, 0x1c, 0x3c, 0x22, 0x4c, 0x46, 0x3c,
+ 0x6b, 0xf3, 0x71, 0x3c, 0x3e, 0xca, 0xc7, 0x3b, 0xd8, 0x34, 0xe8, 0x3b,
+ 0xf3, 0xbc, 0x18, 0x3c, 0x0e, 0x36, 0xfa, 0x3b, 0x62, 0x9c, 0x3d, 0x3c,
+ 0x66, 0x11, 0xe0, 0x3b, 0x4b, 0x0e, 0x31, 0x3c, 0xd0, 0xdb, 0x1e, 0x3c,
+ 0xed, 0xbb, 0x3e, 0x3c, 0x49, 0x46, 0x30, 0x3c, 0x42, 0x6f, 0x23, 0x3c,
+ 0x7b, 0x28, 0x2f, 0x3c, 0x59, 0xfd, 0x32, 0x3c, 0x62, 0xad, 0x39, 0x3c,
+ 0xd9, 0xa1, 0xd0, 0x3b, 0x72, 0x5e, 0x1e, 0x3c, 0x4c, 0x4c, 0x14, 0x3c,
+ 0x0d, 0x3e, 0x18, 0x3c, 0xcb, 0x64, 0x1d, 0x3c, 0xab, 0xec, 0x4a, 0x3c,
+ 0xd1, 0xc8, 0xa4, 0x3b, 0x23, 0x7a, 0xe4, 0x3b, 0x55, 0x85, 0x7b, 0x3c,
+ 0xbc, 0x0e, 0x0a, 0x3c, 0x65, 0x07, 0x0d, 0x3c, 0x5e, 0x32, 0x4d, 0x3c,
+ 0x0e, 0x6c, 0x4a, 0x3c, 0x2d, 0xa8, 0x4c, 0x3c, 0xdd, 0x7d, 0x08, 0x3c,
+ 0xa0, 0xfb, 0x2c, 0x3c, 0xc7, 0x7a, 0x2b, 0x3c, 0x38, 0x20, 0x51, 0x3c,
+ 0xfa, 0x49, 0x39, 0x3c, 0x73, 0x21, 0xf7, 0x3b, 0x8f, 0xcd, 0x5f, 0x3c,
+ 0x53, 0x4a, 0x3e, 0x3c, 0x20, 0xc0, 0x0b, 0x3c, 0xf4, 0x7f, 0xef, 0x3b,
+ 0xe2, 0x25, 0x4e, 0x3c, 0x2f, 0x43, 0xc9, 0x3c, 0xb1, 0xb8, 0x42, 0x3c,
+ 0x1b, 0xc0, 0x37, 0x3c, 0x23, 0x5c, 0x4a, 0x3c, 0x80, 0x57, 0x0b, 0x3c,
+ 0x41, 0xa9, 0xec, 0x3b, 0xa8, 0x47, 0x1a, 0x3c, 0xe8, 0x00, 0xdd, 0x3b,
+ 0x14, 0xe8, 0x26, 0x3c, 0x13, 0x00, 0x00, 0x00, 0x74, 0x66, 0x6c, 0x2e,
+ 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x31, 0x31, 0x00, 0x02, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00,
+ 0x40, 0x00, 0x00, 0x00, 0x72, 0xeb, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x14, 0x00, 0x00, 0x00, 0x24, 0x06, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x02, 0x30, 0x06, 0x00, 0x00, 0xec, 0xea, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x08, 0x04, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x34, 0x1d, 0x7e, 0x38,
+ 0x88, 0x59, 0x81, 0x38, 0x0b, 0x8d, 0x15, 0x38, 0x85, 0x7e, 0x82, 0x38,
+ 0xe0, 0x4a, 0xa9, 0x38, 0x06, 0xb1, 0x65, 0x38, 0xe7, 0x2f, 0x8e, 0x38,
+ 0xf6, 0x3d, 0xa7, 0x38, 0x21, 0x5e, 0x63, 0x38, 0x96, 0xb4, 0xad, 0x38,
+ 0x7f, 0x9c, 0x8e, 0x38, 0x86, 0xea, 0xe3, 0x38, 0x3d, 0x71, 0xa8, 0x38,
+ 0xe3, 0x03, 0x92, 0x38, 0xce, 0x01, 0xd3, 0x38, 0x24, 0xa1, 0x96, 0x38,
+ 0x39, 0xcb, 0x9f, 0x38, 0x76, 0xd0, 0x62, 0x38, 0x7b, 0x06, 0xf1, 0x38,
+ 0x93, 0xde, 0xb8, 0x38, 0x2d, 0x31, 0x96, 0x38, 0x6b, 0x1d, 0x92, 0x38,
+ 0x97, 0xa5, 0x79, 0x38, 0x26, 0x87, 0xae, 0x38, 0xbe, 0x71, 0xb9, 0x38,
+ 0x77, 0x93, 0xba, 0x38, 0x41, 0x5a, 0xf4, 0x38, 0x4f, 0x78, 0x95, 0x38,
+ 0x16, 0x7b, 0xa4, 0x38, 0xa1, 0xa9, 0xff, 0x38, 0x15, 0xdb, 0xd4, 0x38,
+ 0x5a, 0x23, 0x05, 0x39, 0x05, 0xe4, 0x78, 0x38, 0x8f, 0x46, 0x7e, 0x38,
+ 0x43, 0xc8, 0x8f, 0x38, 0xb1, 0x36, 0x9e, 0x38, 0xbb, 0x29, 0x02, 0x39,
+ 0xbf, 0xeb, 0x77, 0x38, 0xa2, 0x09, 0x8a, 0x38, 0xd5, 0x10, 0x99, 0x38,
+ 0xd3, 0xe1, 0xb3, 0x38, 0x1b, 0xad, 0x92, 0x38, 0xfa, 0x93, 0xb9, 0x38,
+ 0xfc, 0x82, 0xbf, 0x38, 0x05, 0x96, 0xf9, 0x38, 0x5b, 0x04, 0x89, 0x38,
+ 0xc3, 0xeb, 0xaa, 0x38, 0xf9, 0x24, 0x8e, 0x38, 0xfd, 0x97, 0x9b, 0x38,
+ 0xbc, 0xa1, 0x02, 0x39, 0xc0, 0xeb, 0xa8, 0x38, 0x7b, 0x97, 0x9e, 0x38,
+ 0x66, 0x69, 0xa5, 0x38, 0xdc, 0x67, 0x89, 0x38, 0xc9, 0xfa, 0xa0, 0x38,
+ 0xcc, 0xfe, 0x8c, 0x38, 0x11, 0x1e, 0xa2, 0x38, 0x36, 0x99, 0xb9, 0x38,
+ 0x4d, 0xed, 0xc1, 0x38, 0xfb, 0x68, 0x9b, 0x38, 0x83, 0x81, 0xb2, 0x38,
+ 0x07, 0xe6, 0x4a, 0x38, 0x75, 0x84, 0xb3, 0x38, 0xf2, 0x2e, 0x83, 0x38,
+ 0x43, 0x8a, 0x84, 0x38, 0x70, 0x99, 0xb7, 0x38, 0x9e, 0xaf, 0xa2, 0x38,
+ 0x00, 0x66, 0xbb, 0x38, 0xdc, 0xae, 0x89, 0x38, 0x63, 0x77, 0x1d, 0x38,
+ 0x2f, 0x84, 0x95, 0x38, 0xeb, 0xfa, 0xed, 0x38, 0x30, 0xed, 0xba, 0x38,
+ 0xbe, 0xa5, 0x94, 0x38, 0x6e, 0xdd, 0x54, 0x39, 0xf7, 0x77, 0x6f, 0x38,
+ 0x2b, 0xfe, 0x7d, 0x38, 0x4b, 0x1c, 0x98, 0x38, 0x11, 0x24, 0xc0, 0x38,
+ 0x65, 0x70, 0xea, 0x38, 0x50, 0x96, 0x41, 0x38, 0x44, 0xff, 0x60, 0x38,
+ 0xfd, 0xfe, 0x93, 0x38, 0x60, 0x71, 0x72, 0x38, 0x5b, 0xb9, 0xb7, 0x38,
+ 0x82, 0x1c, 0x59, 0x38, 0x0e, 0x8f, 0xab, 0x38, 0x34, 0xed, 0x99, 0x38,
+ 0xf9, 0xcf, 0xb8, 0x38, 0x41, 0xcd, 0xaa, 0x38, 0x48, 0x5c, 0x9e, 0x38,
+ 0x53, 0xb8, 0xa9, 0x38, 0xbd, 0x6e, 0xad, 0x38, 0x9f, 0xe9, 0xb3, 0x38,
+ 0xa4, 0x27, 0x4a, 0x38, 0xbb, 0x73, 0x99, 0x38, 0xa0, 0xb1, 0x8f, 0x38,
+ 0x07, 0x84, 0x93, 0x38, 0xd4, 0x81, 0x98, 0x38, 0xd3, 0x9f, 0xc4, 0x38,
+ 0x1c, 0xab, 0x1f, 0x38, 0x34, 0x62, 0x5d, 0x38, 0x3f, 0xb6, 0xf3, 0x38,
+ 0x74, 0xc5, 0x85, 0x38, 0x7f, 0xa6, 0x88, 0x38, 0x77, 0xd3, 0xc6, 0x38,
+ 0x34, 0x23, 0xc4, 0x38, 0x90, 0x4d, 0xc6, 0x38, 0x07, 0x41, 0x84, 0x38,
+ 0xc2, 0x9c, 0xa7, 0x38, 0xdc, 0x27, 0xa6, 0x38, 0x16, 0xa2, 0xca, 0x38,
+ 0x4d, 0x89, 0xb3, 0x38, 0x41, 0x75, 0x6f, 0x38, 0xc6, 0xda, 0xd8, 0x38,
+ 0xe6, 0x61, 0xb8, 0x38, 0x63, 0x69, 0x87, 0x38, 0x69, 0x10, 0x68, 0x38,
+ 0x6b, 0xbf, 0xc7, 0x38, 0x8d, 0x03, 0x43, 0x39, 0x0c, 0xad, 0xbc, 0x38,
+ 0xa8, 0x0b, 0xb2, 0x38, 0xc8, 0x13, 0xc4, 0x38, 0x03, 0x04, 0x87, 0x38,
+ 0x46, 0x50, 0x65, 0x38, 0x71, 0x7d, 0x95, 0x38, 0x5f, 0x24, 0x56, 0x38,
+ 0x81, 0xb9, 0xa1, 0x38, 0x13, 0x00, 0x00, 0x00, 0x74, 0x66, 0x6c, 0x2e,
+ 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x31, 0x30, 0x00, 0x01, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00,
+ 0xc2, 0xf1, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00,
+ 0x40, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
+ 0x4c, 0x00, 0x00, 0x00, 0x3c, 0xf1, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00,
+ 0x1c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0xc4, 0x26, 0x3b,
+ 0x16, 0xce, 0x22, 0x3b, 0x12, 0x00, 0x00, 0x00, 0x74, 0x66, 0x6c, 0x2e,
+ 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x39, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x80, 0x00, 0x00, 0x00, 0x32, 0xf2, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x14, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x02, 0x48, 0x00, 0x00, 0x00, 0xac, 0xf1, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xd8, 0xe3, 0x4a, 0x38,
+ 0x39, 0x12, 0x46, 0x38, 0x12, 0x00, 0x00, 0x00, 0x74, 0x66, 0x6c, 0x2e,
+ 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x38, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x9a, 0xf2, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00,
+ 0xe8, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
+ 0xf4, 0x00, 0x00, 0x00, 0x14, 0xf2, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00,
+ 0x8c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x3d, 0x6d, 0x09, 0x3c, 0xd3, 0xa5, 0x1c, 0x3c, 0xb3, 0xef, 0x45, 0x3c,
+ 0x8e, 0x6c, 0xbb, 0x3b, 0x1f, 0x80, 0x87, 0x3c, 0xef, 0xdc, 0x2f, 0x3c,
+ 0xe2, 0x83, 0x8e, 0x3c, 0x47, 0xd6, 0xbd, 0x3b, 0x87, 0xa7, 0x1b, 0x3c,
+ 0xb1, 0x16, 0x5f, 0x3c, 0xd9, 0x78, 0xa8, 0x3c, 0xa5, 0x4d, 0x6d, 0x3c,
+ 0xa2, 0xb5, 0xe6, 0x3b, 0x8a, 0x15, 0xdc, 0x3c, 0x1d, 0x34, 0x1f, 0x3c,
+ 0x12, 0x0d, 0x52, 0x3c, 0x12, 0x00, 0x00, 0x00, 0x74, 0x66, 0x6c, 0x2e,
+ 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71, 0x63, 0x6f, 0x6e, 0x73,
+ 0x74, 0x37, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0xba, 0xf3, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00,
+ 0xe4, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02,
+ 0xf0, 0x00, 0x00, 0x00, 0x34, 0xf3, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00,
+ 0x88, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x35, 0xf7, 0x09, 0x38,
+ 0x17, 0x43, 0x1d, 0x38, 0x6a, 0xb6, 0x46, 0x38, 0xb7, 0x28, 0xbc, 0x37,
+ 0x28, 0x08, 0x88, 0x38, 0x7d, 0x8d, 0x30, 0x38, 0xf6, 0x12, 0x8f, 0x38,
+ 0xdd, 0x94, 0xbe, 0x37, 0xcb, 0x43, 0x1c, 0x38, 0xa9, 0xf6, 0x5f, 0x38,
+ 0xfc, 0x21, 0xa9, 0x38, 0xe2, 0x3b, 0x6e, 0x38, 0x40, 0x9d, 0xe7, 0x37,
+ 0x7d, 0xf2, 0xdc, 0x38, 0xf2, 0xd3, 0x1f, 0x38, 0xf3, 0xdf, 0x52, 0x38,
+ 0x12, 0x00, 0x00, 0x00, 0x74, 0x66, 0x6c, 0x2e, 0x70, 0x73, 0x65, 0x75,
+ 0x64, 0x6f, 0x5f, 0x71, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x36, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xca, 0xf4, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0xa8, 0x01, 0x00, 0x00,
+ 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0xb4, 0x01, 0x00, 0x00,
+ 0x44, 0xf4, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x1c, 0xe2, 0xbd, 0x3a, 0x7e, 0x72, 0xfa, 0x3a,
+ 0xb7, 0x0f, 0x1f, 0x3b, 0xa1, 0x78, 0xdb, 0x3a, 0x05, 0xd2, 0xe7, 0x3a,
+ 0x2e, 0x8b, 0xcd, 0x3a, 0x1c, 0xe8, 0xeb, 0x3a, 0xb3, 0x49, 0xf2, 0x3a,
+ 0x72, 0x35, 0x01, 0x3b, 0xe5, 0x39, 0x03, 0x3b, 0xdb, 0xdf, 0xb8, 0x3a,
+ 0xc4, 0x58, 0xd6, 0x3a, 0xd3, 0xd0, 0xb5, 0x3a, 0xe5, 0x94, 0xa8, 0x3a,
+ 0xb2, 0xee, 0xfe, 0x3a, 0xe9, 0x13, 0xb1, 0x3a, 0x66, 0x6a, 0x5d, 0x3a,
+ 0x9f, 0x95, 0x9f, 0x3a, 0x51, 0x90, 0x25, 0x3b, 0x60, 0x90, 0x85, 0x3a,
+ 0xaf, 0x6b, 0xc5, 0x3a, 0x77, 0x4a, 0x88, 0x3a, 0x25, 0x7c, 0x93, 0x3a,
+ 0x29, 0xcb, 0xaa, 0x3a, 0x06, 0x14, 0xec, 0x3a, 0x3e, 0xe2, 0x25, 0x3b,
+ 0xd5, 0x7d, 0xe0, 0x3a, 0x88, 0x95, 0xe3, 0x3a, 0xbf, 0x07, 0x02, 0x3b,
+ 0x4b, 0xe0, 0x10, 0x3b, 0x53, 0xfb, 0xe6, 0x3a, 0x38, 0x33, 0xda, 0x3a,
+ 0x12, 0x00, 0x00, 0x00, 0x74, 0x66, 0x6c, 0x2e, 0x70, 0x73, 0x65, 0x75,
+ 0x64, 0x6f, 0x5f, 0x71, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x35, 0x00, 0x00,
+ 0x04, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0xaa, 0xf6, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0xa4, 0x01, 0x00, 0x00,
+ 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xb0, 0x01, 0x00, 0x00,
+ 0x24, 0xf6, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x08, 0x01, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00,
+ 0x60, 0x3e, 0x57, 0x38, 0xbf, 0xf2, 0x8d, 0x38, 0x28, 0x4e, 0xb4, 0x38,
+ 0x88, 0xc8, 0x78, 0x38, 0x13, 0x64, 0x83, 0x38, 0xe3, 0xfe, 0x68, 0x38,
+ 0xfa, 0xb4, 0x85, 0x38, 0xdc, 0x52, 0x89, 0x38, 0x33, 0x77, 0x92, 0x38,
+ 0xa0, 0xc0, 0x94, 0x38, 0xdd, 0x90, 0x51, 0x38, 0x75, 0xf9, 0x72, 0x38,
+ 0x41, 0x19, 0x4e, 0x38, 0xd7, 0x18, 0x3f, 0x38, 0x86, 0x7d, 0x90, 0x38,
+ 0x58, 0xba, 0x48, 0x38, 0xc8, 0xfc, 0xfa, 0x37, 0xf2, 0xe5, 0x34, 0x38,
+ 0x14, 0xad, 0xbb, 0x38, 0x0a, 0x67, 0x17, 0x38, 0xa9, 0xc9, 0x5f, 0x38,
+ 0x5d, 0x7e, 0x1a, 0x38, 0xc7, 0x2e, 0x27, 0x38, 0xbc, 0x9a, 0x41, 0x38,
+ 0xde, 0xcd, 0x85, 0x38, 0xf2, 0x09, 0xbc, 0x38, 0x62, 0x79, 0x7e, 0x38,
+ 0x69, 0xfd, 0x80, 0x38, 0x97, 0x65, 0x93, 0x38, 0xba, 0x39, 0xa4, 0x38,
+ 0x64, 0xea, 0x82, 0x38, 0xa9, 0x57, 0x77, 0x38, 0x12, 0x00, 0x00, 0x00,
+ 0x74, 0x66, 0x6c, 0x2e, 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x34, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x7a, 0xf8, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x14, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x09, 0x34, 0x03, 0x00, 0x00, 0xf4, 0xf7, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x0c, 0x02, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x40, 0x00, 0x00, 0x00, 0x4c, 0x05, 0xbc, 0x3c, 0x76, 0x2c, 0xa4, 0x3c,
+ 0x55, 0x63, 0x17, 0x3c, 0x32, 0x8c, 0x21, 0x3c, 0xa6, 0xf3, 0x82, 0x3c,
+ 0x63, 0x1f, 0xbd, 0x3c, 0x9e, 0x76, 0xba, 0x3c, 0xad, 0x8f, 0xd1, 0x3c,
+ 0x69, 0xa5, 0x8f, 0x3c, 0xd8, 0xc8, 0x9a, 0x3c, 0xff, 0x93, 0x81, 0x3c,
+ 0xbe, 0xc1, 0x70, 0x3c, 0x87, 0xc3, 0x87, 0x3c, 0x98, 0x23, 0x43, 0x3c,
+ 0x6e, 0x48, 0x64, 0x3c, 0x73, 0x42, 0xa1, 0x3c, 0x7b, 0x9f, 0x1e, 0x3c,
+ 0x04, 0x7d, 0xba, 0x3c, 0xe0, 0x1b, 0xa2, 0x3c, 0xab, 0x5d, 0x70, 0x3c,
+ 0xbb, 0xf3, 0x14, 0x3c, 0x39, 0x89, 0x98, 0x3c, 0x21, 0xe1, 0x97, 0x3c,
+ 0x23, 0x7d, 0x8c, 0x3c, 0x01, 0xad, 0x86, 0x3c, 0x9c, 0xbd, 0xae, 0x3c,
+ 0x20, 0xf7, 0x39, 0x3c, 0xeb, 0x8a, 0x32, 0x3c, 0x8d, 0xe1, 0x4d, 0x3c,
+ 0xd6, 0x2f, 0xc2, 0x3b, 0xa1, 0x8b, 0xa3, 0x3c, 0xcc, 0x01, 0x9a, 0x3c,
+ 0x71, 0x6f, 0x5b, 0x3c, 0x74, 0x5e, 0x10, 0x3c, 0x1a, 0x2d, 0x70, 0x3c,
+ 0xb2, 0x55, 0x93, 0x3c, 0xe0, 0x42, 0xd1, 0x3c, 0xdc, 0x7f, 0x1b, 0x3c,
+ 0x8a, 0x91, 0x6b, 0x3c, 0x60, 0x7d, 0xa9, 0x3c, 0x4e, 0x7d, 0x94, 0x3c,
+ 0x11, 0x98, 0x98, 0x3c, 0x19, 0x60, 0x93, 0x3c, 0xd2, 0xbc, 0x5e, 0x3c,
+ 0xc7, 0x29, 0x3b, 0x3c, 0x86, 0xfc, 0x30, 0x3c, 0xb7, 0xf2, 0xf7, 0x3b,
+ 0xd9, 0x09, 0x3a, 0x3c, 0xa0, 0x00, 0x56, 0x3c, 0xf4, 0xaa, 0x4b, 0x3c,
+ 0xe1, 0x36, 0x06, 0x3c, 0x4e, 0x88, 0xe4, 0x3c, 0x3e, 0x3e, 0xa2, 0x3c,
+ 0x0e, 0x0d, 0xec, 0x3c, 0xc1, 0x9b, 0xfe, 0x3b, 0x3f, 0xca, 0x7b, 0x3c,
+ 0x4a, 0x20, 0x24, 0x3c, 0xe6, 0x28, 0x63, 0x3c, 0x6f, 0x6c, 0x58, 0x3c,
+ 0x8c, 0xc9, 0xa2, 0x3c, 0x52, 0x17, 0xfb, 0x3b, 0xac, 0xd2, 0x80, 0x3c,
+ 0x88, 0x86, 0x7c, 0x3c, 0x6f, 0xb3, 0xa7, 0x3c, 0x12, 0x00, 0x00, 0x00,
+ 0x74, 0x66, 0x6c, 0x2e, 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x33, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x40, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0xd2, 0xfb, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x24, 0x03, 0x00, 0x00,
+ 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x30, 0x03, 0x00, 0x00,
+ 0x4c, 0xfb, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00,
+ 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x40, 0x00, 0x00, 0x00, 0xff, 0xf2, 0x80, 0x39, 0x4d, 0x30, 0x61, 0x39,
+ 0xb8, 0xa6, 0xcf, 0x38, 0x31, 0x96, 0xdd, 0x38, 0xaf, 0x9e, 0x33, 0x39,
+ 0x76, 0xb4, 0x81, 0x39, 0x26, 0xc3, 0x7f, 0x39, 0xe5, 0xb8, 0x8f, 0x39,
+ 0x37, 0x08, 0x45, 0x39, 0x62, 0x4f, 0x54, 0x39, 0x57, 0xbc, 0x31, 0x39,
+ 0xef, 0x1d, 0x25, 0x39, 0x64, 0x38, 0x3a, 0x39, 0xc6, 0xd4, 0x05, 0x39,
+ 0xe2, 0x8f, 0x1c, 0x39, 0x09, 0x31, 0x5d, 0x39, 0x37, 0x93, 0xd9, 0x38,
+ 0xec, 0xcb, 0x7f, 0x39, 0x45, 0x5b, 0x5e, 0x39, 0x4d, 0xd9, 0x24, 0x39,
+ 0x5b, 0x4f, 0xcc, 0x38, 0xd5, 0x39, 0x51, 0x39, 0x44, 0x53, 0x50, 0x39,
+ 0x8d, 0xb3, 0x40, 0x39, 0x5a, 0xba, 0x38, 0x39, 0xd1, 0xae, 0x6f, 0x39,
+ 0x46, 0x14, 0xff, 0x38, 0xdb, 0xe5, 0xf4, 0x38, 0xc3, 0x32, 0x0d, 0x39,
+ 0x99, 0x2d, 0x85, 0x38, 0xb3, 0x53, 0x60, 0x39, 0x5c, 0x3e, 0x53, 0x39,
+ 0x80, 0x7e, 0x16, 0x39, 0x08, 0x06, 0xc6, 0x38, 0xfe, 0xb7, 0x24, 0x39,
+ 0x72, 0x17, 0x4a, 0x39, 0x39, 0x84, 0x8f, 0x39, 0x6b, 0x4a, 0xd5, 0x38,
+ 0x05, 0x8f, 0x21, 0x39, 0x00, 0x7b, 0x68, 0x39, 0xeb, 0xac, 0x4b, 0x39,
+ 0x31, 0x4e, 0x51, 0x39, 0xb7, 0x25, 0x4a, 0x39, 0x48, 0xc2, 0x18, 0x39,
+ 0x72, 0x5c, 0x00, 0x39, 0x66, 0xc3, 0xf2, 0x38, 0x85, 0x0c, 0xaa, 0x38,
+ 0xf4, 0x2d, 0xff, 0x38, 0xa4, 0xc4, 0x12, 0x39, 0x2d, 0xae, 0x0b, 0x39,
+ 0x54, 0x18, 0xb8, 0x38, 0xb1, 0xbb, 0x9c, 0x39, 0x68, 0x8a, 0x5e, 0x39,
+ 0xbb, 0xe3, 0xa1, 0x39, 0xe0, 0x9d, 0xae, 0x38, 0x0d, 0xaf, 0x2c, 0x39,
+ 0x9b, 0x1f, 0xe1, 0x38, 0xb0, 0xca, 0x1b, 0x39, 0xb9, 0x6d, 0x14, 0x39,
+ 0x7c, 0x49, 0x5f, 0x39, 0x56, 0x34, 0xac, 0x38, 0x2b, 0xb3, 0x30, 0x39,
+ 0x2e, 0x30, 0x2d, 0x39, 0xdd, 0x06, 0x66, 0x39, 0x12, 0x00, 0x00, 0x00,
+ 0x74, 0x66, 0x6c, 0x2e, 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x32, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x40, 0x00, 0x00, 0x00, 0x22, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01,
+ 0x14, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x09, 0x4c, 0x00, 0x00, 0x00, 0x9c, 0xfe, 0xff, 0xff,
+ 0x08, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x87, 0xd6, 0x3b, 0x3b, 0x94, 0xcb, 0x5f, 0x3b, 0x12, 0x00, 0x00, 0x00,
+ 0x74, 0x66, 0x6c, 0x2e, 0x70, 0x73, 0x65, 0x75, 0x64, 0x6f, 0x5f, 0x71,
+ 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x31, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x92, 0xff, 0xff, 0xff,
+ 0x00, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x4c, 0x00, 0x00, 0x00,
+ 0x0c, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0xf0, 0x90, 0xd9, 0x38, 0x69, 0x9b, 0x01, 0x39,
+ 0x11, 0x00, 0x00, 0x00, 0x74, 0x66, 0x6c, 0x2e, 0x70, 0x73, 0x65, 0x75,
+ 0x64, 0x6f, 0x5f, 0x71, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00,
+ 0x1c, 0x00, 0x18, 0x00, 0x17, 0x00, 0x10, 0x00, 0x0c, 0x00, 0x08, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x16, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x20, 0x00, 0x00, 0x00,
+ 0x04, 0x00, 0x04, 0x00, 0x04, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
+ 0x61, 0x72, 0x69, 0x74, 0x68, 0x2e, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61,
+ 0x6e, 0x74, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x16, 0x00, 0x20, 0x00, 0x1c, 0x00, 0x1b, 0x00, 0x14, 0x00,
+ 0x10, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x07, 0x00,
+ 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x00,
+ 0x34, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x09, 0x64, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x4b, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x08, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x81, 0x80, 0x80, 0x3b, 0x17, 0x00, 0x00, 0x00, 0x73, 0x65, 0x72, 0x76,
+ 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f,
+ 0x69, 0x6e, 0x70, 0x75, 0x74, 0x3a, 0x30, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00,
+ 0x70, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00,
+ 0x34, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x98, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x02, 0x0c, 0x00, 0x0c, 0x00, 0x0b, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x72, 0xc0, 0xff, 0xff, 0xff, 0x19, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0xd0, 0xff, 0xff, 0xff,
+ 0x09, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
+ 0xe0, 0xff, 0xff, 0xff, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x28, 0xf0, 0xff, 0xff, 0xff, 0x11, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x0c, 0x00, 0x10, 0x00,
+ 0x0f, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x00, 0x0c, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03
+};
+
+const uint32_t sl_tflite_model_len = 57048UL;
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_tflite_micro_model.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_tflite_micro_model.h
new file mode 100644
index 000000000..81613bf9a
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_tflite_micro_model.h
@@ -0,0 +1,18 @@
+// Auto-generated serialization of TFLite flatbuffers in config directory
+#ifndef SL_TFLITE_MICRO_MODEL_H
+#define SL_TFLITE_MICRO_MODEL_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include
+
+extern const uint8_t sl_tflite_model_array[];
+extern const uint32_t sl_tflite_model_len;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // SL_TFLITE_MICRO_MODEL_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_tflite_micro_opcode_resolver.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_tflite_micro_opcode_resolver.h
new file mode 100644
index 000000000..7090808df
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sl_tflite_micro_opcode_resolver.h
@@ -0,0 +1,16 @@
+// Auto-generated macro to instanciate and initialize opcode resolver based on TFLite flatbuffers in config directory
+#ifndef SL_TFLITE_MICRO_OPCODE_RESOLVER_H
+#define SL_TFLITE_MICRO_OPCODE_RESOLVER_H
+
+#define SL_TFLITE_MICRO_OPCODE_RESOLVER(opcode_resolver) \
+static tflite::MicroMutableOpResolver<7> opcode_resolver; \
+opcode_resolver.AddConv2D(); \
+opcode_resolver.AddMaxPool2D(); \
+opcode_resolver.AddMean(); \
+opcode_resolver.AddFullyConnected(); \
+opcode_resolver.AddSoftmax(); \
+opcode_resolver.AddQuantize(); \
+opcode_resolver.AddConcatenation(); \
+
+
+#endif // SL_TFLITE_MICRO_OPCODE_RESOLVER_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sli_mbedtls_config_autogen.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sli_mbedtls_config_autogen.h
new file mode 100644
index 000000000..f91c3806e
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sli_mbedtls_config_autogen.h
@@ -0,0 +1,26 @@
+// This is an autogenerated config file, any changes to this file will be overwritten
+
+#ifndef SLI_MBEDTLS_CONFIG_AUTOGEN_H
+#define SLI_MBEDTLS_CONFIG_AUTOGEN_H
+
+
+
+#define MBEDTLS_PLATFORM_C
+#define MBEDTLS_PLATFORM_MEMORY
+#define MBEDTLS_PLATFORM_CALLOC_MACRO sl_calloc
+#define MBEDTLS_PLATFORM_FREE_MACRO sl_free
+#define MBEDTLS_THREADING_C
+#define MBEDTLS_THREADING_ALT
+#define MBEDTLS_PSA_CRYPTO_C
+#define MBEDTLS_USE_PSA_CRYPTO
+#define MBEDTLS_CIPHER_C
+#define MBEDTLS_PSA_CRYPTO_CONFIG
+#define MBEDTLS_PSA_CRYPTO_DRIVERS
+#define MBEDTLS_PSA_CRYPTO_STORAGE_C
+
+
+
+
+
+
+#endif // SLI_MBEDTLS_CONFIG_AUTOGEN_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sli_mbedtls_config_transform_autogen.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sli_mbedtls_config_transform_autogen.h
new file mode 100644
index 000000000..1351fd88e
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sli_mbedtls_config_transform_autogen.h
@@ -0,0 +1,57 @@
+// This is an autogenerated config file, any changes to this file will be overwritten
+
+#ifndef SLI_MBEDTLS_CONFIG_TRANSFORM_AUTOGEN_H
+#define SLI_MBEDTLS_CONFIG_TRANSFORM_AUTOGEN_H
+
+// Convert CMSIS Markup config defines to mbedTLS specific config defines
+
+#if SL_MBEDTLS_RSA_NO_CRT
+ #define MBEDTLS_RSA_NO_CRT
+#endif
+
+// Allow undefining the specified cipher suites
+#if defined(SLI_MBEDTLS_AUTODETECT_CIPHERSUITES)
+ #undef MBEDTLS_SSL_CIPHERSUITES
+#endif
+
+#if SL_MBEDTLS_SSL_MAX_FRAGMENT_LENGTH
+ #define MBEDTLS_SSL_MAX_FRAGMENT_LENGTH
+#endif
+#if SL_MBEDTLS_SSL_EXPORT_KEYS
+ #define MBEDTLS_SSL_EXPORT_KEYS
+#endif
+#if SL_MBEDTLS_KEY_EXCHANGE_PSK_ENABLED
+ #define MBEDTLS_KEY_EXCHANGE_PSK_ENABLED
+#endif
+#if SL_MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED
+ #define MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED
+#endif
+#if SL_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
+ #define MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
+#endif
+#if SL_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
+ #define MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
+#endif
+#if SL_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
+ #define MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
+#endif
+#if SL_MBEDTLS_ECP_ENABLE_COMPRESSED_CURVE_PARSING
+ #define MBEDTLS_ECP_ENABLE_COMPRESSED_CURVE_PARSING
+#endif
+#if SL_MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS
+ #define MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS
+#endif
+
+#if !defined(MBEDTLS_SSL_IN_CONTENT_LEN)
+ #define MBEDTLS_SSL_IN_CONTENT_LEN SL_MBEDTLS_SSL_IN_CONTENT_LEN
+#endif
+
+#if !defined(MBEDTLS_SSL_OUT_CONTENT_LEN)
+ #define MBEDTLS_SSL_OUT_CONTENT_LEN SL_MBEDTLS_SSL_OUT_CONTENT_LEN
+#endif
+
+
+
+
+
+#endif // SLI_MBEDTLS_CONFIG_TRANSFORM_AUTOGEN_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sli_psa_builtin_config_autogen.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sli_psa_builtin_config_autogen.h
new file mode 100644
index 000000000..0ea73a452
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sli_psa_builtin_config_autogen.h
@@ -0,0 +1,8 @@
+// This is an autogenerated config file, any changes to this file will be overwritten
+
+#ifndef SLI_PSA_BUILTIN_CONFIG_AUTOGEN_H
+#define SLI_PSA_BUILTIN_CONFIG_AUTOGEN_H
+
+
+
+#endif // SLI_PSA_BUILTIN_CONFIG_AUTOGEN_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sli_psa_config_autogen.h b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sli_psa_config_autogen.h
new file mode 100644
index 000000000..b073205d4
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/autogen/sli_psa_config_autogen.h
@@ -0,0 +1,29 @@
+// This is an autogenerated config file, any changes to this file will be overwritten
+
+#ifndef SLI_PSA_CONFIG_AUTOGEN_H
+#define SLI_PSA_CONFIG_AUTOGEN_H
+
+#define PSA_WANT_KEY_TYPE_AES 1
+#define PSA_WANT_ALG_ECB_NO_PADDING 1
+#define PSA_WANT_ALG_CMAC 1
+#define PSA_WANT_KEY_TYPE_ECC_PUBLIC_KEY 1
+#define PSA_WANT_KEY_TYPE_ECC_KEY_PAIR 1
+#define PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_BASIC 1
+#define PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_IMPORT 1
+#define PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_EXPORT 1
+#define PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_GENERATE 1
+#define PSA_WANT_ECC_SECP_R1_256 1
+#define PSA_WANT_ALG_ECDH 1
+#define MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG
+
+#if defined(KSU_MAX_KEY_SLOTS)
+#include "sli_ksu_keyslots_config.h"
+#define MBEDTLS_PSA_KEY_SLOT_COUNT (2 + 1 + SL_PSA_KEY_USER_SLOT_COUNT + SLI_KSU_MAX_KEY_SLOTS - SLI_KSU_KEY_SLOT_USER_START + 1)
+#else
+#define MBEDTLS_PSA_KEY_SLOT_COUNT (2 + 1 + SL_PSA_KEY_USER_SLOT_COUNT + 1)
+#endif
+#ifndef SL_PSA_ITS_MAX_FILES
+#define SL_PSA_ITS_MAX_FILES (1 + SL_PSA_ITS_USER_MAX_FILES)
+#endif
+
+#endif // SLI_PSA_CONFIG_AUTOGEN_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/app_assert_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/app_assert_config.h
new file mode 100644
index 000000000..4f8b7eefb
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/app_assert_config.h
@@ -0,0 +1,68 @@
+/***************************************************************************//**
+ * @file
+ * @brief Application assert configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2021 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef APP_ASSERT_CONFIG_H
+#define APP_ASSERT_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Assert component
+// Enables Assert.
+#define APP_ASSERT_ENABLE 1
+
+// Enable schedule lock
+// Enables schedule locking under OS
+// When both schedule lock and breakpoint are present,
+// breakpoint will be used
+#define APP_ASSERT_SCHEDULE_LOCK 0
+
+// Enable breakpoint insertion
+// Inserts breakpoint to assert locations, which can halt the application
+// upon failure. While debugging this feature stops the execution
+// and jumps to the location of the assertion in case it fails.
+// When both schedule lock and breakpoint are present,
+// breakpoint will be used
+#define APP_ASSERT_BREAKPOINT 1
+
+// Logging
+// Enables logging for assert.
+#define APP_ASSERT_LOG_ENABLE 1
+
+// Enable trace
+// Enables trace for assert.
+#define APP_ASSERT_TRACE_ENABLE 1
+
+//
+
+//
+
+// <<< end of configuration section >>>
+
+#endif // APP_ASSERT_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/audio_classifier_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/audio_classifier_config.h
new file mode 100644
index 000000000..58833fc48
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/audio_classifier_config.h
@@ -0,0 +1,119 @@
+/***************************************************************************//**
+ * @file
+ * @brief Audio classifier application config
+ *******************************************************************************
+ * # License
+ * Copyright 2022 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * The licensor of this software is Silicon Laboratories Inc. Your use of this
+ * software is governed by the terms of Silicon Labs Master Software License
+ * Agreement (MSLA) available at
+ * www.silabs.com/about-us/legal/master-software-license-agreement. This
+ * software is distributed to you in Source Code format and is governed by the
+ * sections of the MSLA applicable to Source Code.
+ *
+ ******************************************************************************/
+
+#ifndef AUDIO_CLASSIFIER_CONFIG_H
+#define AUDIO_CLASSIFIER_CONFIG_H
+
+#if __has_include("sl_tflite_micro_model_parameters.h")
+ #include "sl_tflite_micro_model_parameters.h"
+#endif
+
+// <<< Use Configuration Wizard in Context Menu >>>
+// Audio Classification configuration
+
+// ── These smoothing/window settings are kept for SDK compatibility but the
+// actual debounce logic in audio_classifier.cc uses the majority ring
+// buffer (MAJORITY_WINDOW_SIZE / MAJORITY_MIN_CRY_COUNT) instead. ────────
+
+// Smoothing window duration [ms] <300-1000>
+// Default: 600
+#if defined(SL_TFLITE_MODEL_AVERAGE_WINDOW_DURATION_MS)
+ #define SMOOTHING_WINDOW_DURATION_MS SL_TFLITE_MODEL_AVERAGE_WINDOW_DURATION_MS
+#else
+ #define SMOOTHING_WINDOW_DURATION_MS 600
+#endif
+
+// Minimum detection count <0-50>
+// Default: 3
+#if defined(SL_TFLITE_MODEL_MINIMUM_COUNT)
+ #define MINIMUM_DETECTION_COUNT SL_TFLITE_MODEL_MINIMUM_COUNT
+#else
+ #define MINIMUM_DETECTION_COUNT 3
+#endif
+
+// Detection Threshold <0-255>
+// Not used directly — thresholding is done via CRY_CONF_THRESHOLD
+// (float 0.0-1.0) in audio_classifier.cc.
+// Default: 100
+#if defined(SL_TFLITE_MODEL_DETECTION_THRESHOLD)
+ #define DETECTION_THRESHOLD SL_TFLITE_MODEL_DETECTION_THRESHOLD
+#else
+ #define DETECTION_THRESHOLD 100
+#endif
+
+// Suppression time after detection [ms] <0-2000>
+// Default: 1000
+#if defined(SL_TFLITE_MODEL_SUPPRESSION_MS)
+ #define SUPPRESSION_TIME_MS SL_TFLITE_MODEL_SUPPRESSION_MS
+#else
+ #define SUPPRESSION_TIME_MS 1000
+#endif
+
+// Sensitivity of the activity indicator
+// Default: 0.5
+#define SENSITIVITY .5f
+
+// Ignore labels with leading underscore
+// Default: 1
+#define IGNORE_UNDERSCORE_LABELS 1
+
+// LED to use for detection
+// Default: sl_led_led1
+#define DETECTION_LED sl_led_led1
+
+// LED to use for activity
+// Default: sl_led_led0
+#define ACTIVITY_LED sl_led_led0
+
+// Enable verbose model output logging
+// Default: 1
+#define VERBOSE_MODEL_OUTPUT_LOGS 1
+
+// Delay between each inference [ms]
+// Must match HOP_SECONDS (0.5s) from the Python training pipeline.
+// Default: 500
+#define INFERENCE_INTERVAL_MS 500
+
+// Max number of categories supported.
+// Default: 16
+#define MAX_CATEGORY_COUNT 16
+
+// Max number of results supported.
+// Default: 50
+#define MAX_RESULT_COUNT 50
+
+// Application task stack size.
+// Default: 512
+#define TASK_STACK_SIZE 512
+
+// Application task priority.
+// Default: 20
+#define TASK_PRIORITY 20
+
+// Label for each category.
+// Class 0 = laugh, Class 1 = sad.
+// Must match the exported TFLite model output[0:2] ordering exactly.
+// output[0] = laugh score, output[1] = sad score.
+#if defined(SL_TFLITE_MODEL_CLASSES)
+ #define CATEGORY_LABELS SL_TFLITE_MODEL_CLASSES
+#else
+ #define CATEGORY_LABELS { "laugh", "sad" }
+#endif
+
+// <<< end of configuration section >>>
+
+#endif // AUDIO_CLASSIFIER_CONFIG_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/btconf/gatt_configuration.btconf b/application/AuraSense/firmware/aura-baby-monitor-soc/config/btconf/gatt_configuration.btconf
new file mode 100644
index 000000000..1def1abb6
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/btconf/gatt_configuration.btconf
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+ Abstract: The generic_access service contains generic information about the device.
+
+
+ AI Cry Classifier
+
+
+
+
+
+
+
+ Abstract: The external appearance of this device.
+ 0000
+
+
+
+
+
+
+
+
+ Abstract: Device Information Service
+
+
+ Silicon Labs
+
+
+
+
+
+
+ 00
+
+
+
+
+
+
+
+
+ Custom service for AI audio classification results
+
+
+
+
+ 2-byte payload:
+ Byte 0: class_id (0=belly_pain, 1=burping, 2=hungry, 3=laugh, 4=uncomfortable, 255=uncertain/silence)
+ Byte 1: confidence score (0-255, 128=neutral)
+
+ 0080
+
+
+
+
+
+
+
+
+ 2-byte write payload:
+ Byte 0: command_id
+ Byte 1: command_value
+
+ 0000
+
+
+
+
+
+
+
+
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/btconf/gatt_service_rht.xml b/application/AuraSense/firmware/aura-baby-monitor-soc/config/btconf/gatt_service_rht.xml
new file mode 100644
index 000000000..2acc2098c
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/btconf/gatt_service_rht.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/btconf/slc_args.json b/application/AuraSense/firmware/aura-baby-monitor-soc/config/btconf/slc_args.json
new file mode 100644
index 000000000..915c0b556
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/btconf/slc_args.json
@@ -0,0 +1,6 @@
+{
+ "sdkRoot" : "C:/Users/Naitik Gupta/.silabs/slt/installs/conan/p/simpl965e19baece23/p/",
+ "apackRoot" : "C:\\Users\\Naitik Gupta\\.silabs\\slt\\installs\\conan\\p\\simpl965e19baece23\\p\\bluetooth_bgbuild",
+ "partOpn" : "efr32mg26b510f3200im68",
+ "boards" : "brd2608arevA04"
+}
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/common_cfg.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/common_cfg.h
new file mode 100644
index 000000000..e3b4c67b4
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/common_cfg.h
@@ -0,0 +1,92 @@
+/***************************************************************************//**
+ * @file
+ * @brief Common Configuration - Configuration Template File
+ *******************************************************************************
+ * # License
+ * Copyright 2018 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * The licensor of this software is Silicon Laboratories Inc. Your use of this
+ * software is governed by the terms of Silicon Labs Master Software License
+ * Agreement (MSLA) available at
+ * www.silabs.com/about-us/legal/master-software-license-agreement. This
+ * software is distributed to you in Source Code format and is governed by the
+ * sections of the MSLA applicable to Source Code.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MODULE
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+#ifndef _COMMON_CFG_H_
+#define _COMMON_CFG_H_
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MEMORY LIBRARY CONFIGURATION
+ ********************************************************************************************************
+ *******************************************************************************************************/
+// Memory Library Configuration
+
+// Replace common lib memory functions with standard C lib functions
+// Cause the following functions replacement: Mem_Set() -> memset(), Mem_Copy() -> memcpy(),
+// Mem_Move() -> memmove(), Mem_Clr() -> memset() and Mem_Cmp() -> memcmp() functions.
+// Default: 0
+#define LIB_MEM_CFG_STD_C_LIB_EN 0
+
+// Enable Memory allocation usage tracking
+// Associates a name with each segment or dynamic pool allocated.
+// A table of the different allocations can be displayed. For debugging purposes.
+// Default: 0
+#define LIB_MEM_CFG_DBG_INFO_EN 0
+
+// Size of heap memory (in octets).
+// Size, in octets, of the general-purpose heap memory used as default memory segment.
+// Default: 9216
+#define LIB_MEM_CFG_HEAP_SIZE 9216
+
+// Padding alignment for hardware allocations on heap (in octets)
+// Padding alignment that will be added at the end of each memory allocation on heap when "HW" functions are used.
+// Only useful when data cache is used. Should be set to the size of a cache line.
+// 1 means no alignment.
+// Default: 1
+#define LIB_MEM_CFG_HEAP_PADDING_ALIGN 1
+
+// Enable Custom heap location
+// If enabled, the location must be specified by defining LIB_MEM_CFG_HEAP_BASE_ADDR to the desired address
+// either in "common_cfg.h" or from the compiler defines list.
+// Default: 0
+#define LIB_MEM_CFG_HEAP_BASE_ADDR_EN 0
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * STRING LIBRARY CONFIGURATION
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// String Library Configuration
+
+// Support conversion to string of floating point numbers
+// Default: 0
+#define LIB_STR_CFG_FP_EN 0
+
+// Maximum number of significant digits to display in string conversion of floating point number functions <1-9>
+// Default: 7
+#define LIB_STR_CFG_FP_MAX_NBR_DIG_SIG 7
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MODULE END
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+#endif // End of common_cfg.h module include.
+
+// <<< end of configuration section >>>
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/cpu_cfg.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/cpu_cfg.h
new file mode 100644
index 000000000..e3fb71a08
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/cpu_cfg.h
@@ -0,0 +1,104 @@
+/***************************************************************************//**
+ * @file
+ * @brief CPU Configuration - Configuration Template File
+ *******************************************************************************
+ * # License
+ * Copyright 2018 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * The licensor of this software is Silicon Laboratories Inc. Your use of this
+ * software is governed by the terms of Silicon Labs Master Software License
+ * Agreement (MSLA) available at
+ * www.silabs.com/about-us/legal/master-software-license-agreement. This
+ * software is distributed to you in Source Code format and is governed by the
+ * sections of the MSLA applicable to Source Code.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MODULE
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+#ifndef _CPU_CFG_H_
+#define _CPU_CFG_H_
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * INCLUDE
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+#include
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * CPU NAME CONFIGURATION
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// Provide name for CPU
+// Enable CPU host name feature for CPU host name storage and CPU host name API functions.
+// Default: 0
+#define CPU_CFG_NAME_EN 0
+
+// Size of CPU name
+// Desired ASCII string size of the CPU host name, including the terminating NULL character.
+// Default: 16
+#define CPU_CFG_NAME_SIZE 16
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * CPU TIMESTAMP CONFIGURATION
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// Timestamp on 32 bits
+// Enable 32-bits CPU timestamp feature.
+// Default: 0
+#define CPU_CFG_TS_32_EN 0
+
+// Timestamp on 64 bits
+// Enable 64-bits CPU timestamp feature.
+// Default: 0
+#define CPU_CFG_TS_64_EN 0
+
+// CPU timestamp timer's word size
+// 8 bits
+// 16 bits
+// 32 bits
+// 64 bits
+// If the size of the CPU timestamp timer is not a binary multiple of 8-bit octets (e.g. 20-bits or even 24-bits),
+// then the next lower, binary-multiple octet word size SHOULD be configured (e.g. to 16-bits).
+// However, the minimum supported word size for CPU timestamp timers is 8-bits.
+// Default: CPU_WORD_SIZE_32
+#define CPU_CFG_TS_TMR_SIZE CPU_WORD_SIZE_32
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * CACHE MANAGEMENT
+ *
+ * Note(s) : (1) Defining CPU_CFG_CACHE_MGMT_EN to DEF_ENABLED only enables the cache management
+ * function. Caches are assumed to be configured and enabled by the time CPU_init() is
+ * called.
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// Cache Management
+// Enable the cache management function.
+// Caches are assumed to be configured and enabled by the time CPU_init() is called.
+// Default: 0
+#define CPU_CFG_CACHE_MGMT_EN 0
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MODULE END
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+#endif // End of cpu_cfg.h module include.
+
+// <<< end of configuration section >>>
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/dmadrv_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/dmadrv_config.h
new file mode 100644
index 000000000..be24f49d8
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/dmadrv_config.h
@@ -0,0 +1,26 @@
+#ifndef DMADRV_CONFIG_H
+#define DMADRV_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// DMA interrupt priority <0-15>
+// Priority of the DMA interrupt. Smaller number equals higher priority.
+// Default: 8
+#define EMDRV_DMADRV_DMA_IRQ_PRIORITY 8
+
+// Number of available channels <1-8>
+// Number of DMA channels supported by the driver. A lower channel count
+// will reduce RAM memory footprint. The default is to support all channels
+// on the device.
+// Default: 8
+#define EMDRV_DMADRV_DMA_CH_COUNT 8
+
+// Number of fixed priority channels
+// This will configure channels [0, CH_PRIORITY - 1] as fixed priority,
+// and channels [CH_PRIORITY, CH_COUNT] as round-robin.
+// Default: 0
+#define EMDRV_DMADRV_DMA_CH_PRIORITY 0
+
+// <<< end of configuration section >>>
+
+#endif // DMADRV_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/nvm3_default_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/nvm3_default_config.h
new file mode 100644
index 000000000..482183919
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/nvm3_default_config.h
@@ -0,0 +1,45 @@
+#ifndef NVM3_DEFAULT_CONFIG_H
+#define NVM3_DEFAULT_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// NVM3 Default Instance Configuration
+
+#ifndef NVM3_DEFAULT_CACHE_SIZE
+// NVM3 Default Instance Cache Size
+// Number of NVM3 objects to cache. To reduce access times this number
+// should be equal to or higher than the number of NVM3 objects in the
+// default NVM3 instance.
+// Default: 200
+#define NVM3_DEFAULT_CACHE_SIZE 200
+#endif
+
+#ifndef NVM3_DEFAULT_MAX_OBJECT_SIZE
+// NVM3 Default Instance Max Object Size
+// Max NVM3 object size that can be stored.
+// Default: 254
+#define NVM3_DEFAULT_MAX_OBJECT_SIZE 254
+#endif
+
+#ifndef NVM3_DEFAULT_REPACK_HEADROOM
+// NVM3 Default Instance User Repack Headroom
+// Headroom determining how many bytes below the forced repack limit the user
+// repack limit should be placed. The default is 0, which means the user and
+// forced repack limits are equal.
+// Default: 0
+#define NVM3_DEFAULT_REPACK_HEADROOM 0
+#endif
+
+#ifndef NVM3_DEFAULT_NVM_SIZE
+// NVM3 Default Instance Size
+// Size of the NVM3 storage region in flash. This size should be aligned with
+// the flash page size of the device.
+// Default: 40960
+#define NVM3_DEFAULT_NVM_SIZE 40960
+#endif
+
+//
+
+// <<< end of configuration section >>>
+
+#endif // NVM3_DEFAULT_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/os_cfg.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/os_cfg.h
new file mode 100644
index 000000000..251b0d3cc
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/os_cfg.h
@@ -0,0 +1,292 @@
+/***************************************************************************//**
+ * @file
+ * @brief Kernel Configuration - Configuration Template File
+ *******************************************************************************
+ * # License
+ * Copyright 2018 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * The licensor of this software is Silicon Laboratories Inc. Your use of this
+ * software is governed by the terms of Silicon Labs Master Software License
+ * Agreement (MSLA) available at
+ * www.silabs.com/about-us/legal/master-software-license-agreement. This
+ * software is distributed to you in Source Code format and is governed by the
+ * sections of the MSLA applicable to Source Code.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MODULE
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+#ifndef _OS_CFG_H_
+#define _OS_CFG_H_
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MISCELLANEOUS
+ *
+ * Note(s) : (1) Configure OS_CFG_APP_HOOKS_EN to enable or disable Application-specific Hooks.
+ *
+ * (2) Configure OS_CFG_DBG_EN to enable or disable debug helper code and variables.
+ *
+ * (3) Configure OS_CFG_TICK_EN to enable or disable support for ticks (Delay functions, pend
+ * with timeouts, etc).
+ *
+ * (4) Configure OS_CFG_TS_EN to enable or disable Timestamping capabilities.
+ *
+ * (5) Configure OS_CFG_PRIO_MAX to set the maximum number of Task Priorities (see OS_PRIO data
+ * type).
+ *
+ * (6) Configure OS_CFG_SCHED_LOCK_TIME_MEAS_EN to enable or disable the Scheduler Lock time
+ * measurement code.
+ *
+ * (7) Configure OS_CFG_SCHED_ROUND_ROBIN_EN to enable or disable the Round-Robin Scheduler.
+ *
+ * (8) Configure OS_CFG_STK_SIZE_MIN to set the minimum allowable Task Stack size (in CPU_STK
+ * elements).
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// Miscellaneous Configuration
+
+// Enable application hooks
+// Enable or disable Application-specific Hooks.
+// Default: 0
+#define OS_CFG_APP_HOOKS_EN 0
+
+// Add debug helper code and variable
+// Enable debug helper code and variables.
+// Default: 0
+#define OS_CFG_DBG_EN 0
+
+// Enable ticks support
+// Enable or disable support for ticks (Delay functions, pend with timeouts, etc).
+// Default: 1
+#define OS_CFG_TICK_EN 1
+
+// Add timestamping capabilities
+// Default: 0
+#define OS_CFG_TS_EN 0
+
+// Maximum number of task priorities
+// Default: 64
+#define OS_CFG_PRIO_MAX 64u
+
+// Enable scheduler lock time measurement
+// Default: 0
+#define OS_CFG_SCHED_LOCK_TIME_MEAS_EN 0
+
+// Enable Round-Robin scheduling
+// Default: 0
+#define OS_CFG_SCHED_ROUND_ROBIN_EN 0
+
+// Minimum allowable task stack size (in CPU_STK elements)
+// Default: 64
+#define OS_CFG_STK_SIZE_MIN 64u
+
+// Add threadsafe errno support
+// Default: 0
+#define OS_CFG_ERRNO_EN 0
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * EVENT FLAGS
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// Event Flags Configuration
+
+// Enable event flags
+// Enable the event flags synchronization construct.
+// Default: 1
+#define OS_CFG_FLAG_EN 1
+
+// Enable Active-low event flags
+// Enable the active-low mode of the event flags
+// Default: 0
+#define OS_CFG_FLAG_MODE_CLR_EN 0
+
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MUTUAL EXCLUSION SEMAPHORES
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// Mutual Exclusion Semaphores Configuration
+
+// Enable mutexes
+// Enable the Mutual Exclusion (Mutex) synchronization construct.
+// Default: 1
+#define OS_CFG_MUTEX_EN 1
+
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MESSAGE QUEUES
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// Message Queues Configuration
+
+// Enable queues
+// Enable the message queue construct.
+// Default: 1
+#define OS_CFG_Q_EN 1
+
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * SEMAPHORES
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// Semaphores Configuration
+
+// Enable semaphores
+// Enable the semaphore synchronization construct.
+// Default: 1
+#define OS_CFG_SEM_EN 1
+
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MONITORS
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// Monitors Configuration
+
+// Enable monitors
+// Enable the monitor (condition variable) synchronization construct.
+// Default: 1
+#define OS_CFG_MON_EN 1
+
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * TASK MANAGEMENT
+ *
+ * Note(s) : (1) Configure OS_CFG_STAT_TASK_EN to enable or disable the Statistics gathering Task.
+ *
+ * (2) Configure OS_CFG_STAT_TASK_STK_CHK_EN to enable or disable the stack overflow detection
+ * of the Statistics Task.
+ *
+ * (3) Configure OS_CFG_TASK_PROFILE_EN to enable or disable Task profiling instrumentation.
+ *
+ * (4) Configure OS_CFG_TASK_Q_EN to enable or disable built-in Task Message Queues.
+ *
+ * (5) Configure OS_CFG_TASK_REG_TBL_SIZE to set the number of Task Registers.
+ *
+ * (6) Configure OS_CFG_TASK_STK_REDZONE_EN to enable or disable the Redzone Stack Protection.
+ *
+ * (7) Configure OS_CFG_TASK_STK_REDZONE_DEPTH to set the depth of the Redzone Stack
+ * Protection.
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// Task Management Configuration
+
+// Enable statistics gathering task
+// Default: 0
+#define OS_CFG_STAT_TASK_EN 0
+
+// Enable stack overflow detection of the statistics task
+// Default: 1
+#define OS_CFG_STAT_TASK_STK_CHK_EN 1
+
+// Enable task profiling instrumentation
+// Default: 0
+#define OS_CFG_TASK_PROFILE_EN 0
+
+// Enable task message queues
+// Default: 0
+#define OS_CFG_TASK_Q_EN 0
+
+// Number of task registers
+// Default: 3
+#define OS_CFG_TASK_REG_TBL_SIZE 3
+
+// Enable redzone stack protection
+// Default: 0
+#define OS_CFG_TASK_STK_REDZONE_EN 0
+
+// Depth of the redzone stack protection
+// Default: 8
+#define OS_CFG_TASK_STK_REDZONE_DEPTH 8
+
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * TASK LOCAL STORAGE MANAGEMENT
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// Task Local Storage Management Configuration
+
+// Number of task local storage registers
+// Default: 0
+#define OS_CFG_TLS_TBL_SIZE 0
+
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * TIMER MANAGEMENT
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// Timer Management Configuration
+
+// Enable software timers
+// Default: 0
+#define OS_CFG_TMR_EN 0
+
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * CMSIS TIMER MANAGEMENT
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// CMSIS RTOS2 Timer Management Configuration
+
+// Enable CMSIS RTOS2 software timers
+// Default: 0
+#define CMSIS_RTOS2_TIMER_TASK_EN 0
+
+// Timer task stack size
+// Default: 128
+#define CMSIS_RTOS2_TIMER_TASK_STACK_SIZE 128
+
+// Timer task priority
+// Default: 4
+#define CMSIS_RTOS2_TIMER_TASK_PRIO 4
+
+// Timer queue size
+// Default: 5
+#define CMSIS_RTOS2_TIMER_TASK_QUEUE_SIZE 5
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MODULE END
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+#endif // End of os_cfg.h module include.
+
+// <<< end of configuration section >>>
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/pin_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/pin_config.h
new file mode 100644
index 000000000..0e6f5eaec
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/pin_config.h
@@ -0,0 +1,328 @@
+#ifndef PIN_CONFIG_H
+#define PIN_CONFIG_H
+
+// $[CMU]
+// [CMU]$
+
+// $[LFXO]
+// [LFXO]$
+
+// $[KEYSCAN]
+// [KEYSCAN]$
+
+// $[PRS.ASYNCH0]
+// [PRS.ASYNCH0]$
+
+// $[PRS.ASYNCH1]
+// [PRS.ASYNCH1]$
+
+// $[PRS.ASYNCH2]
+// [PRS.ASYNCH2]$
+
+// $[PRS.ASYNCH3]
+// [PRS.ASYNCH3]$
+
+// $[PRS.ASYNCH4]
+// [PRS.ASYNCH4]$
+
+// $[PRS.ASYNCH5]
+// [PRS.ASYNCH5]$
+
+// $[PRS.ASYNCH6]
+// [PRS.ASYNCH6]$
+
+// $[PRS.ASYNCH7]
+// [PRS.ASYNCH7]$
+
+// $[PRS.ASYNCH8]
+// [PRS.ASYNCH8]$
+
+// $[PRS.ASYNCH9]
+// [PRS.ASYNCH9]$
+
+// $[PRS.ASYNCH10]
+// [PRS.ASYNCH10]$
+
+// $[PRS.ASYNCH11]
+// [PRS.ASYNCH11]$
+
+// $[PRS.ASYNCH12]
+// [PRS.ASYNCH12]$
+
+// $[PRS.ASYNCH13]
+// [PRS.ASYNCH13]$
+
+// $[PRS.ASYNCH14]
+// [PRS.ASYNCH14]$
+
+// $[PRS.ASYNCH15]
+// [PRS.ASYNCH15]$
+
+// $[PRS.SYNCH0]
+// [PRS.SYNCH0]$
+
+// $[PRS.SYNCH1]
+// [PRS.SYNCH1]$
+
+// $[PRS.SYNCH2]
+// [PRS.SYNCH2]$
+
+// $[PRS.SYNCH3]
+// [PRS.SYNCH3]$
+
+// $[GPIO]
+// GPIO SWV on PA03
+#ifndef GPIO_SWV_PORT
+#define GPIO_SWV_PORT SL_GPIO_PORT_A
+#endif
+#ifndef GPIO_SWV_PIN
+#define GPIO_SWV_PIN 3
+#endif
+
+// [GPIO]$
+
+// $[TIMER0]
+// [TIMER0]$
+
+// $[TIMER1]
+// [TIMER1]$
+
+// $[TIMER2]
+// [TIMER2]$
+
+// $[TIMER3]
+// [TIMER3]$
+
+// $[TIMER4]
+// [TIMER4]$
+
+// $[TIMER5]
+// [TIMER5]$
+
+// $[TIMER6]
+// [TIMER6]$
+
+// $[TIMER7]
+// [TIMER7]$
+
+// $[TIMER8]
+// [TIMER8]$
+
+// $[TIMER9]
+// [TIMER9]$
+
+// $[EUSART1]
+// [EUSART1]$
+
+// $[EUSART2]
+// [EUSART2]$
+
+// $[EUSART3]
+// [EUSART3]$
+
+// $[USART0]
+// USART0 CLK on PD03
+#ifndef USART0_CLK_PORT
+#define USART0_CLK_PORT SL_GPIO_PORT_D
+#endif
+#ifndef USART0_CLK_PIN
+#define USART0_CLK_PIN 3
+#endif
+
+// USART0 CS on PD05
+#ifndef USART0_CS_PORT
+#define USART0_CS_PORT SL_GPIO_PORT_D
+#endif
+#ifndef USART0_CS_PIN
+#define USART0_CS_PIN 5
+#endif
+
+// USART0 RX on PD04
+#ifndef USART0_RX_PORT
+#define USART0_RX_PORT SL_GPIO_PORT_D
+#endif
+#ifndef USART0_RX_PIN
+#define USART0_RX_PIN 4
+#endif
+
+// [USART0]$
+
+// $[USART1]
+// [USART1]$
+
+// $[USART2]
+// [USART2]$
+
+// $[I2C1]
+// I2C1 SCL on PC04
+#ifndef I2C1_SCL_PORT
+#define I2C1_SCL_PORT SL_GPIO_PORT_C
+#endif
+#ifndef I2C1_SCL_PIN
+#define I2C1_SCL_PIN 4
+#endif
+
+// I2C1 SDA on PC05
+#ifndef I2C1_SDA_PORT
+#define I2C1_SDA_PORT SL_GPIO_PORT_C
+#endif
+#ifndef I2C1_SDA_PIN
+#define I2C1_SDA_PIN 5
+#endif
+
+// [I2C1]$
+
+// $[I2C2]
+// [I2C2]$
+
+// $[I2C3]
+// [I2C3]$
+
+// $[LCD]
+// [LCD]$
+
+// $[LETIMER0]
+// [LETIMER0]$
+
+// $[IADC0]
+// [IADC0]$
+
+// $[ACMP0]
+// [ACMP0]$
+
+// $[ACMP1]
+// [ACMP1]$
+
+// $[VDAC0]
+// [VDAC0]$
+
+// $[VDAC1]
+// [VDAC1]$
+
+// $[PCNT0]
+// [PCNT0]$
+
+// $[HFXO0]
+// [HFXO0]$
+
+// $[I2C0]
+// [I2C0]$
+
+// $[EUSART0]
+// EUSART0 CTS on PA09
+#ifndef EUSART0_CTS_PORT
+#define EUSART0_CTS_PORT SL_GPIO_PORT_A
+#endif
+#ifndef EUSART0_CTS_PIN
+#define EUSART0_CTS_PIN 9
+#endif
+
+// EUSART0 RTS on PA08
+#ifndef EUSART0_RTS_PORT
+#define EUSART0_RTS_PORT SL_GPIO_PORT_A
+#endif
+#ifndef EUSART0_RTS_PIN
+#define EUSART0_RTS_PIN 8
+#endif
+
+// EUSART0 RX on PA06
+#ifndef EUSART0_RX_PORT
+#define EUSART0_RX_PORT SL_GPIO_PORT_A
+#endif
+#ifndef EUSART0_RX_PIN
+#define EUSART0_RX_PIN 6
+#endif
+
+// EUSART0 TX on PA05
+#ifndef EUSART0_TX_PORT
+#define EUSART0_TX_PORT SL_GPIO_PORT_A
+#endif
+#ifndef EUSART0_TX_PIN
+#define EUSART0_TX_PIN 5
+#endif
+
+// [EUSART0]$
+
+// $[PTI]
+// [PTI]$
+
+// $[MODEM]
+// [MODEM]$
+
+// $[CUSTOM_PIN_NAME]
+#ifndef _PORT
+#define _PORT SL_GPIO_PORT_A
+#endif
+#ifndef _PIN
+#define _PIN 0
+#endif
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+// [CUSTOM_PIN_NAME]$
+
+// Application button mappings used by app.c
+// BTN0: Device ON
+// BTN1: Device OFF + deep sleep
+#ifndef APP_BTN0_PORT
+#define APP_BTN0_PORT gpioPortB
+#endif
+#ifndef APP_BTN0_PIN
+#define APP_BTN0_PIN 2
+#endif
+
+#ifndef APP_BTN1_PORT
+#define APP_BTN1_PORT gpioPortB
+#endif
+#ifndef APP_BTN1_PIN
+#define APP_BTN1_PIN 3
+#endif
+
+#endif // PIN_CONFIG_H
+
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/psa_crypto_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/psa_crypto_config.h
new file mode 100644
index 000000000..f16dd2e37
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/psa_crypto_config.h
@@ -0,0 +1,176 @@
+#ifndef PSA_CRYPTO_CONFIG_H
+#define PSA_CRYPTO_CONFIG_H
+
+// -----------------------------------------------------------------------------
+// User exposed config options
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Key management configuration
+
+// PSA User Maximum Open Keys Count <0-128>
+// Maximum amount of keys that the user application will have open
+// simultaneously. In context of PSA Crypto, an open key means any key
+// either stored in RAM (lifetime set to PSA_KEY_LIFETIME_VOLATILE), or
+// used as part of a cryptographic operation.
+// When using a key for a multi-part (setup/update/finish) operation, a key
+// is considered to be open from the moment the operation is successfully
+// setup, until it finishes or aborts.
+// When an application tries to open more keys than this value accounts for,
+// the PSA API may return PSA_ERROR_INSUFFICIENT_MEMORY. Keep in mind that
+// other software included in the application (e.g. wireless protocol stacks)
+// also can have a need to have open keys in PSA Crypto. This could lead to
+// a race condition when the application key slot count is set too low for
+// the actual usage of the application, as a software stack may not fail
+// gracefully in case an application opens more than its declared amount of
+// keys, thereby precluding the stack from functioning.
+// Default: 4
+#define SL_PSA_KEY_USER_SLOT_COUNT (4)
+
+// Maximum User Persistent PSA Key Count <0-1024>
+// Maximum amount of keys (or other files) that can be stored persistently
+// by the user application, when PSA ITS (Internal Trusted Storage) support
+// is included in the project.
+// NOTE:
+// In addition to SL_PSA_ITS_USER_MAX_FILES (number of user keys) the
+// application may be configured to include SDK components that require an
+// additional number of keys. The sum of user keys and SDK component keys
+// is computed and the result, called SL_PSA_ITS_MAX_FILES, is used
+// internally in the PSA ITS driver.
+//
+// WARNING:
+// For applications using PSA ITS driver version 1 or 2, when changing the
+// SL_PSA_ITS_USER_MAX_FILES in an application that is already depeloyed,
+// and thus will get the change through an application upgrade, care should
+// be taken to ensure that the total sum of keys SL_PSA_ITS_MAX_FILES is
+// only ever equal or increased, and never decreased. Decreasing this
+// setting might cause previously stored keys/files to become inaccessible,
+// ITS should be cleared and all files need to be stored again.
+//
+// For applications using PSA ITS driver version 3, it is not possible to
+// change this setting because the file-storage indexing is dependent on the
+// maximum number of files (SL_PSA_ITS_MAX_FILES) being consistent, and if
+// the sum of SDK component keys and user keys (SL_PSA_ITS_USER_MAX_FILES)
+// is changed, may cause previously stored keys/files to become inaccessible
+// ITS should be cleared and all files need to be stored again.
+// Default: 128
+#define SL_PSA_ITS_USER_MAX_FILES (128)
+
+// Enable V1 Format Support For ITS Files <0-1>
+// Devices that used PSA ITS together with gecko_sdk_3.1.x or earlier
+// might have keys (or other files) stored in V1 format.
+// If no v1 files are used, its support can be disabled for space
+// optimization.
+// Default: 0
+#define SL_PSA_ITS_SUPPORT_V1_DRIVER 0
+
+// Enable V2 ITS Driver Support <0-1>
+// Devices that have used GSDK 4.1.x and earlier, and used ITS have the keys
+// (or other files) stored using different address range. Enabling this
+// config option adds upgrade code which converts V2 (and V1 if
+// supported) format ITS keys/files to the latest V3 format. Update is
+// fully automatic, needs to be run once and require extra flash space of
+// approximately the size of the largest key.
+// V1 ITS driver support can be disabled if the device has never used ITS
+// driver before in GSDK 4.1.x and earlier, or the keys has been already
+// migrated.
+// Default: 0
+#define SL_PSA_ITS_SUPPORT_V2_DRIVER 0
+
+// Enable support for V3 ITS Driver <0-1>
+// Devices that have used GSDK 4.1.x and earlier, and used ITS have the keys
+// (or other files) stored using different address range. In rare case
+// that those devices have full nvm3 and not enough space for the
+// upgrade, (that requires an extra space to store largest key in memory
+// twice), this config option can disable v3 driver and use v2 one.
+// To upgrade the device, make space for the upgrade, and enable v3 driver again.
+//
+// WARNING: When using V3 driver, it is not possible to increase or decrease
+// the value of SL_PSA_ITS_USER_MAX_FILES. If the change of
+// SL_PSA_ITS_USER_MAX_FILES is required, ITS should be cleared and
+// all files need to be stored again.
+// Default: 1
+#define SL_PSA_ITS_SUPPORT_V3_DRIVER 1
+
+// Built-in AES Key Mode of Operation
+// CTR Mode
+// CFB Mode
+// OFB Mode
+// ECB Mode
+// CBC Mode (no padding)
+// CBC Mode (PKCS#7 padding)
+// PSA Crypto only allows one specific usage algorithm per built-in key ID.
+// Default: PSA_ALG_CTR
+#define SL_SE_BUILTIN_KEY_AES128_ALG_CONFIG (PSA_ALG_CTR)
+
+#ifndef SL_CRYPTOACC_BUILTIN_KEY_PUF_ALG
+// Built-in PUF Key Algorithm
+// PBKDF2 (CMAC-AES-128-PRF)
+// CMAC
+// PSA Crypto only allows one specific usage algorithm per built-in key ID.
+// It is recommended to only use the PUF key for deriving further key
+// material.
+// Default: PSA_ALG_PBKDF2_AES_CMAC_PRF_128
+#define SL_CRYPTOACC_BUILTIN_KEY_PUF_ALG (PSA_ALG_PBKDF2_AES_CMAC_PRF_128)
+#endif // SL_CRYPTOACC_BUILTIN_KEY_PUF_ALG
+
+//
+
+// Power optimization configuration
+
+// Store already-generated random bytes before putting the device to sleep
+// Using the hardware TRNG (for example through psa_generate_random()) will
+// consume a non-negligible amount of power. A start-up routine must pass
+// and a relatively large minimum amount of random bytes will be generated.
+// Use cases where the device is frequently entering EM2/EM3 and thereafter
+// consumes a small amount of data from the TRNG may benefit from buffering
+// the existing random bytes before putting the device to sleep. These
+// buffered bytes are then consumed until exhaustion before the TRNG needs
+// to be initialized and used again.
+//
+// NOTE: this configuration option is only applicable for devices with a
+// Virtual Secure Engine (VSE), and requires the 'Power Manager' component
+// to be included in the project.
+//
+// Default: 0
+#define SL_VSE_BUFFER_TRNG_DATA_DURING_SLEEP (0)
+
+// Number of random words to buffer before putting the device to sleep <1-63>
+// This option can be used to decrease the amount of random words that
+// (if enabled) are buffered before the device enters EM2/EM3. Lowering this
+// number will result in less static RAM usage, but also means that the TRNG
+// potentially has to be initialized more times--leading to increased power
+// consumption. By default this option in configured to buffer as much TRNG
+// data as possible (limited by the depth of the TRNG FIFO).
+//
+// NOTE: this configuration option is only applicable when
+// SL_VSE_BUFFER_TRNG_DATA_DURING_SLEEP is enabled.
+//
+// Default: 63
+#define SL_VSE_MAX_TRNG_WORDS_BUFFERED_DURING_SLEEP (63)
+//
+
+//
+
+// <<< end of configuration section >>>
+
+// -----------------------------------------------------------------------------
+// Sub-files
+
+#if defined(SLI_PSA_CONFIG_AUTOGEN_OVERRIDE_FILE)
+ #include SLI_PSA_CONFIG_AUTOGEN_OVERRIDE_FILE
+#else
+ #include "sli_psa_config_autogen.h"
+#endif
+
+#if defined(TFM_CONFIG_SL_SECURE_LIBRARY)
+ #include "sli_psa_tfm_translation.h"
+#endif
+
+#if SL_MBEDTLS_DRIVERS_ENABLED
+ #include "sli_psa_acceleration.h"
+#endif
+
+#include "sli_psa_builtin_config_autogen.h"
+
+#endif // PSA_CRYPTO_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/rtos_cfg.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/rtos_cfg.h
new file mode 100644
index 000000000..234496bf5
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/rtos_cfg.h
@@ -0,0 +1,150 @@
+/***************************************************************************//**
+ * @file
+ * @brief RTOS Configuration - Configuration Template File
+ *******************************************************************************
+ * # License
+ * Copyright 2018 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * The licensor of this software is Silicon Laboratories Inc. Your use of this
+ * software is governed by the terms of Silicon Labs Master Software License
+ * Agreement (MSLA) available at
+ * www.silabs.com/about-us/legal/master-software-license-agreement. This
+ * software is distributed to you in Source Code format and is governed by the
+ * sections of the MSLA applicable to Source Code.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MODULE
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+#ifndef _RTOS_CFG_H_
+#define _RTOS_CFG_H_
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * INCLUDE FILES
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+#include
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * DEFINES
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+/*
+ ********************************************************************************************************
+ * ASSERTS CONFIGURATION
+ ********************************************************************************************************
+ */
+
+// Asserts Configuration
+
+// Debug assert on argument checking in application
+// When enabled, any invocation of macro APP_RTOS_ASSERT_DBG() from the application will cause a END_CALL on failed assertion.
+// It is recommended to disable this feature in 'release' code.
+// Default: 1
+#define RTOS_CFG_ASSERT_DBG_ARG_CHK_EXT_APP_EN 1
+
+// Debug assert on argument checking in BSP
+// When enabled, function arguments will be validated in the BSP and any incorrect argument will cause a END_CALL.
+// It is recommended to disable this feature in 'release' code.
+// Default: 1
+#define RTOS_CFG_ASSERT_DBG_ARG_CHK_EXT_BSP_EN 1
+
+// Debug assert on argument checking in CAN
+// When enabled, function arguments will be validated in CAN and any incorrect argument will cause a END_CALL.
+// It is recommended to disable this feature in 'release' code.
+// Default: 1
+#define RTOS_CFG_ASSERT_DBG_ARG_CHK_EXT_CAN_EN 1
+
+// Debug assert on argument checking in Common
+// When enabled, function arguments will be validated in Common and any incorrect argument will cause a END_CALL.
+// It is recommended to disable this feature in 'release' code.
+// Default: 1
+#define RTOS_CFG_ASSERT_DBG_ARG_CHK_EXT_COMMON_EN 1
+
+// Debug assert on argument checking in CPU
+// When enabled, function arguments will be validated in CPU and any incorrect argument will cause a END_CALL.
+// It is recommended to disable this feature in 'release' code.
+// Default: 1
+#define RTOS_CFG_ASSERT_DBG_ARG_CHK_EXT_CPU_EN 1
+
+// Debug assert on argument checking in the Kernel
+// When enabled, function arguments will be validated in the Kernel and any incorrect argument will cause a END_CALL.
+// It is recommended to disable this feature in 'release' code.
+// Default: 1
+#define RTOS_CFG_ASSERT_DBG_ARG_CHK_EXT_KERNEL_EN 1
+
+// Debug assert on argument checking in the Probe drivers
+// When enabled, function arguments will be validated in the probe drivers and any incorrect argument will cause a END_CALL.
+// It is recommended to disable this feature in 'release' code.
+// Default: 1
+#define RTOS_CFG_ASSERT_DBG_ARG_CHK_EXT_PROBE_EN 1
+
+// END_CALL action on failed debug assertions.
+// Trap
+// Return
+// Custom
+// When Trap is selected, the system will hang where the error occured in an endless loop.
+// When Return is selected, the system will return immediately from the function and report the proper error.
+// When Custom is selected, the system will invoke the macro RTOS_CFG_RTOS_ASSERT_DBG_FAILED_END_CALL(ret_val).
+// It is your responsibility to define this macro from the compiler defines list when Custom is selected.
+// Default: RTOS_ASSERT_END_CALL_SEL_TRAP
+#define RTOS_CFG_RTOS_ASSERT_DBG_FAILED_END_CALL_SEL RTOS_ASSERT_END_CALL_SEL_TRAP
+
+// END_CALL action on failed critical assertions.
+// Trap
+// Return
+// Custom
+// When Trap is selected, the system will hang where the error occured in an endless loop.
+// When Return is selected, the system will return immediately from the function and report the proper error.
+// When Custom is selected, the system will invoke the macro RTOS_CFG_RTOS_ASSERT_CRITICAL_FAILED_END_CALL(ret_val).
+// It is your responsibility to define this macro from the compiler defines list when Custom is selected.
+// Default: RTOS_ASSERT_END_CALL_SEL_TRAP
+#define RTOS_CFG_RTOS_ASSERT_CRITICAL_FAILED_END_CALL_SEL RTOS_ASSERT_END_CALL_SEL_TRAP
+
+// Externalize module configurations via const value instead of using Configure functions
+// Determines whether the configurations can be provided via optional 'Configure' functions calls to
+// the modules or if these configurations are assumed extern by the modules and must be provided by
+// the application. This option allows to reduce the memory and code space usage.
+// Default: 0
+#define RTOS_CFG_EXTERNALIZE_OPTIONAL_CFG_EN 0
+
+//
+
+/*
+ ********************************************************************************************************
+ * LOGGING CONFIGURATION
+ ********************************************************************************************************
+ */
+
+// Logging Configuration
+
+// Enable logging module
+// When enabled, all logging message will output in a default channel that logs ALL level of messages
+// synchronously and uses the function "putchar()" to print the messages.
+// It is possible to define other channels, or re-define the default channel by re-defining "RTOS_CFG_LOG_ALL".
+// Refer to the logging configuration section of the user manual for more information.
+// Default: 0
+#define RTOS_CFG_LOG_EN 0
+
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MODULE END
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+#endif // End of rtos_cfg.h module include.
+
+// <<< end of configuration section >>>
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/rtos_err_cfg.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/rtos_err_cfg.h
new file mode 100644
index 000000000..ab51fa6b5
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/rtos_err_cfg.h
@@ -0,0 +1,72 @@
+/***************************************************************************//**
+ * @file
+ * @brief RTOS_ERR Configuration - Configuration Template File
+ *******************************************************************************
+ * # License
+ * Copyright 2018 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * The licensor of this software is Silicon Laboratories Inc. Your use of this
+ * software is governed by the terms of Silicon Labs Master Software License
+ * Agreement (MSLA) available at
+ * www.silabs.com/about-us/legal/master-software-license-agreement. This
+ * software is distributed to you in Source Code format and is governed by the
+ * sections of the MSLA applicable to Source Code.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MODULE
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+#ifndef _RTOS_ERR_CFG_H_
+#define _RTOS_ERR_CFG_H_
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * INCLUDE FILES NOTE
+ *
+ * Note(s) : (1) No files including rtos_err.h must be included by this file. This could lead to circular
+ * inclusion problems.
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * DEFINES
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+// RTOS Error Configuration
+
+// Extended error type
+// Extend RTOS_ERR type to contain more debug information. Extended information provides a string containing
+// the file name and line number where the error has been set. It will also contain the function name, if compiling in C99.
+// Enabling this configuration may have an impact on performance and resource usage.
+// It is recommended to disable this configuration in release code.
+// Default: 1
+#define RTOS_ERR_CFG_EXT_EN 1
+
+// Add string description to errors
+// Add strings associated with each error code, in order to print them.
+// If disabled, the error code enum value will be outputted instead.
+// For example, if set to 1, it would be possible to print RTOS_ERR_NONE or RTOS_ERR_INVALID_ARG as a string
+// instead of printing the associated numerical value.
+// Default: 0
+#define RTOS_ERR_CFG_STR_EN 0
+
+//
+
+/********************************************************************************************************
+ ********************************************************************************************************
+ * MODULE END
+ ********************************************************************************************************
+ *******************************************************************************************************/
+
+#endif // End of rtos_err_cfg.h module include.
+
+// <<< end of configuration section >>>
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bgapi_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bgapi_config.h
new file mode 100644
index 000000000..e7e5c355a
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bgapi_config.h
@@ -0,0 +1,43 @@
+/***************************************************************************//**
+ * @file
+ * @brief BGAPI Protocol configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2024 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied warranty.
+ * In no event will the authors be held liable for any damages arising from the
+ * use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software in a
+ * product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_BGAPI_CONFIG_H
+#define SL_BGAPI_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// The maximum BGAPI payload size <256-2047>
+// Default: 256
+// Define the maximum payload size for BGAPI commands, responses, and events. The setting impacts all protocol stacks that use the BGAPI, i.e. Bluetooth host and Bluetooth mesh.
+#define SL_BGAPI_MAX_PAYLOAD_SIZE (256)
+
+// <<< end of configuration section >>>
+
+#endif // SL_BGAPI_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bluetooth_advertiser_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bluetooth_advertiser_config.h
new file mode 100644
index 000000000..59d5b1e19
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bluetooth_advertiser_config.h
@@ -0,0 +1,45 @@
+/***************************************************************************//**
+ * @file
+ * @brief Bluetooth Advertiser configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2023 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied warranty.
+ * In no event will the authors be held liable for any damages arising from the
+ * use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software in a
+ * product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_BT_ADVERTISER_CONFIG_H
+#define SL_BT_ADVERTISER_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+// Max number of advertising sets reserved for user <0-255>
+// Default: 1
+// Define the number of advertising sets that the application needs to use concurrently. Note that all types of advertising uses the same pool of advertising sets, but periodic advertising has extra configuration to define the number of advertising sets that are capable of periodic advertising.
+//
+// Specifically, if the component "bluetooth_feature_periodic_advertiser" is used, its configuration SL_BT_CONFIG_MAX_PERIODIC_ADVERTISERS specifies how many of the SL_BT_CONFIG_USER_ADVERTISERS advertising sets are capable of periodic advertising. Similarly, if the component bluetooth_feature_pawr_advertiser is used, its configuration SL_BT_CONFIG_MAX_PAWR_ADVERTISERS specifies how many of the periodic advertising sets are capable of Periodic Advertising with Responses.
+//
+// The configuration values must satisfy the condition SL_BT_CONFIG_USER_ADVERTISERS >= SL_BT_CONFIG_MAX_PERIODIC_ADVERTISERS >= SL_BT_CONFIG_MAX_PAWR_ADVERTISERS.
+#define SL_BT_CONFIG_USER_ADVERTISERS (1)
+// <<< end of configuration section >>>
+
+#endif
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bluetooth_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bluetooth_config.h
new file mode 100644
index 000000000..d2cd530fb
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bluetooth_config.h
@@ -0,0 +1,181 @@
+/***************************************************************************//**
+ * @file
+ * @brief Bluetooth Stack configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2023 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied warranty.
+ * In no event will the authors be held liable for any damages arising from the
+ * use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software in a
+ * product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_BLUETOOTH_CONFIG_H
+#define SL_BLUETOOTH_CONFIG_H
+#if defined(SL_COMPONENT_CATALOG_PRESENT)
+#include "sl_component_catalog.h"
+#endif
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Bluetooth Stack Configuration
+
+#ifdef SL_CATALOG_BLUETOOTH_FEATURE_CONNECTION_PRESENT
+#include "sl_bluetooth_connection_config.h"
+#else
+#define SL_BT_CONFIG_MAX_CONNECTIONS (0)
+#endif
+
+// Max number of connections reserved by user application and components
+#define SL_BT_CONFIG_MAX_CONNECTIONS_SUM (SL_BT_CONFIG_MAX_CONNECTIONS + SL_BT_COMPONENT_CONNECTIONS)
+
+#ifdef SL_CATALOG_BLUETOOTH_FEATURE_ADVERTISER_PRESENT
+#include "sl_bluetooth_advertiser_config.h"
+#else
+#define SL_BT_CONFIG_USER_ADVERTISERS (0)
+#endif
+
+#define SL_BT_CONFIG_MAX_ADVERTISERS (SL_BT_CONFIG_USER_ADVERTISERS + SL_BT_COMPONENT_ADVERTISERS)
+
+// Max number of software timers <0-16>
+// Default: 4
+// Define the number of software timers the application needs. Each timer needs resources from the stack to be implemented. Increasing amount of soft timers may cause degraded performance in some use cases.
+#define SL_BT_CONFIG_MAX_SOFTWARE_TIMERS (4)
+
+// Buffer memory size for Bluetooth stack
+// Default: 3150
+// Define buffer memory size for running Bluetooth stack and buffering data over Bluetooth connections,
+// advertising and scanning. The default value is an estimation for achieving adequate throughput
+// and supporting multiple simultaneous connections. Consider increasing this value for
+// higher data throughput over connections, advertising or scanning long advertisement data.
+#define SL_BT_CONFIG_BUFFER_SIZE (3150)
+
+// Enable using a custom Bluetooth address stored in NVM3
+// Enable or disable using a custom Bluetooth address stored the Bluetooth space of NVM3. When enabled,
+// the Bluetooth stack sets the address as the Bluetooth identity address of the device if a valid address
+// is found in NVM3.
+// Default: 1
+#define SL_BT_CONFIG_SET_CUSTOM_ADDRESS_FROM_NVM3 (1)
+//
+
+// Enable setting the HFXO CTUNE with a value stored in the Bluetooth space of NVM3.
+// Enable or disable setting the HFXO CTUNE with a value stored in the Bluetooth space of NVM3. When enabled, the
+// Bluetooth stack sets the HFXO CTUNE at Bluetooth starting phase if a CTUNE value is found in NVM3. This
+// operation will override the CTUNE that is set to with the value stored in the MFG_CTUNE token or the
+// configuration value in the Clock Manager.
+// Setting the HFXO CTUNE with this method is deprecated. Currently the functionality is provided for keeping
+// backwards compatibility with legacy SDKs, and the support will be discontinued in future SDK releases.
+// The recommended method is to store CTUNE value in the MFG_CTUNE token.
+// Default: 0
+#define SL_BT_CONFIG_SET_CTUNE_FROM_NVM3 (0)
+//
+
+// End Bluetooth Stack Configuration
+
+// TX Power Levels
+
+// Minimum radiated TX power level in 0.1dBm unit
+// Default: -30 (-3 dBm)
+// Configure the minimum radiated TX power level for Bluetooth connections and DTM testing.
+// This configuration is used for power control on Bluetooth connections
+// if the LE Power Control feature is enabled.
+// When this configuration is passed into stack initialization, the stack
+// will select the closest value that the device supports.
+// API sl_bt_system_set_tx_power() can be used to set the minimum TX power at runtime.
+// API sl_bt_system_get_tx_power_setting() can be used to query the selected value.
+#define SL_BT_CONFIG_MIN_TX_POWER (-30)
+
+// Maximum radiated TX power level in 0.1dBm unit
+// Default: 80 (8 dBm)
+// Configure the maximum radiated TX power level for Bluetooth connections,
+// advertising, scanning and DTM testing.
+// When this configuration is passed into stack initialization, the stack
+// will select the closest value that the device supports.
+// API sl_bt_system_set_tx_power() can be used to set the maximum TX power at runtime.
+// API sl_bt_system_get_tx_power_setting() can be used to query the selected value.
+#define SL_BT_CONFIG_MAX_TX_POWER (80)
+
+// End TX Power Levels
+
+// RF Path
+
+// RF TX path gain in 0.1dBm unit
+// Default: 0
+// The Bluetooth stack takes TX RF path gain into account when adjusting transmitter
+// output power. Power radiated from the antenna then matches the application request.
+// A negative value indicates some power loss in the path. For example,
+// with radiated TX power set to +10 dBm and this configuration to -10
+// (i.e., 1 dBm loss), the transmitter output power will be set to +11 dBm.
+#define SL_BT_CONFIG_RF_PATH_GAIN_TX (0)
+
+// RF RX path gain in 0.1dBm unit
+// Default: 0
+// RX RF path gain is used to compensate the RSSI reports from the Bluetooth Stack.
+#define SL_BT_CONFIG_RF_PATH_GAIN_RX (0)
+
+// End RF Path
+
+// <<< end of configuration section >>>
+
+/**
+ * By default, Bluetooth requires accurate LF clock for EM2. If the component
+ * catalog presents, an inaccurate LF clock for EM2 can be used if the Bluetooth
+ * connection, periodic advertising and periodic advertising synchronization
+ * features are known to not present.
+ */
+#define BT_EM2_LFCLK_REQ_FLAG 0
+
+#if defined(SL_COMPONENT_CATALOG_PRESENT)
+#if !defined(SL_CATALOG_BLUETOOTH_FEATURE_CONNECTION_PRESENT) \
+ && !defined(SL_CATALOG_BLUETOOTH_FEATURE_PERIODIC_ADV_PRESENT) \
+ && !defined(SL_CATALOG_BLUETOOTH_FEATURE_SYNC_PRESENT)
+ #undef BT_EM2_LFCLK_REQ_FLAG
+ #define BT_EM2_LFCLK_REQ_FLAG SL_BT_CONFIG_FLAG_INACCURATE_LFCLK_EM2
+#endif
+#endif // SL_COMPONENT_CATALOG_PRESENT
+
+#ifdef SL_CATALOG_KERNEL_PRESENT
+ #define SL_BT_CONFIG_FLAGS (SL_BT_CONFIG_FLAG_RTOS | BT_EM2_LFCLK_REQ_FLAG)
+#else
+ #define SL_BT_CONFIG_FLAGS (BT_EM2_LFCLK_REQ_FLAG)
+#endif // SL_CATALOG_KERNEL_PRESENT
+
+#include "sl_bt_stack_config.h"
+#include "sl_bgapi_config.h" // For SL_BGAPI_MAX_PAYLOAD_SIZE
+
+// NOTE: Struct sl_btctrl_ll_priorities is deprecated in Simplicity SDK Suite v2025.6.0 and marked for removal in a future release.
+// The Link Layer scheduler priority configuration is initialized via the Bluetooth Low Energy Controller component.
+#define SL_BT_CONFIG_DEFAULT \
+ { \
+ .config_flags = SL_BT_CONFIG_FLAGS, \
+ .bluetooth.max_buffer_memory = SL_BT_CONFIG_BUFFER_SIZE, \
+ .scheduler_callback = NULL, \
+ .stack_schedule_callback = NULL, \
+ .gattdb = &gattdb, \
+ .max_timers = SL_BT_CONFIG_MAX_SOFTWARE_TIMERS, \
+ .rf.tx_gain = SL_BT_CONFIG_RF_PATH_GAIN_TX, \
+ .rf.rx_gain = SL_BT_CONFIG_RF_PATH_GAIN_RX, \
+ .rf.tx_min_power = SL_BT_CONFIG_MIN_TX_POWER, \
+ .rf.tx_max_power = SL_BT_CONFIG_MAX_TX_POWER, \
+ .max_bgapi_payload_size = SL_BGAPI_MAX_PAYLOAD_SIZE, \
+ }
+
+#endif // SL_BLUETOOTH_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bluetooth_connection_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bluetooth_connection_config.h
new file mode 100644
index 000000000..78e66cdc2
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bluetooth_connection_config.h
@@ -0,0 +1,48 @@
+/***************************************************************************//**
+ * @file
+ * @brief Bluetooth Connection configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2023 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied warranty.
+ * In no event will the authors be held liable for any damages arising from the
+ * use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software in a
+ * product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_BT_CONNECTION_CONFIG_H
+#define SL_BT_CONNECTION_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+// Max number of connections reserved for user <0-32>
+// Default: 4
+// Define the number of connections the application needs.
+#define SL_BT_CONFIG_MAX_CONNECTIONS (4)
+
+// Preferred maximum TX payload octets <27-251>
+// Default: 251
+// Define the preferred maximum TX payload octets that will be used on connections.
+// This value is set to the controller as the default suggested data length when
+// Bluetooth stack is started.
+#define SL_BT_CONFIG_CONNECTION_DATA_LENGTH (251)
+
+// <<< end of configuration section >>>
+#endif
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_board_control_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_board_control_config.h
new file mode 100644
index 000000000..e5d26a48a
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_board_control_config.h
@@ -0,0 +1,130 @@
+/***************************************************************************//**
+ * @file
+ * @brief Board Control
+ *******************************************************************************
+ * # License
+ * Copyright 2022 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_BOARD_CONTROL_CONFIG_H
+#define SL_BOARD_CONTROL_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Enable Relative Humidity and Temperature sensor
+// Default: 0
+#define SL_BOARD_ENABLE_SENSOR_RHT 0
+
+// Enable Hall Effect sensor
+// Default: 0
+#define SL_BOARD_ENABLE_SENSOR_HALL 0
+
+// Enable Barometric Pressure sensor
+// Default: 0
+#define SL_BOARD_ENABLE_SENSOR_PRESSURE 0
+
+// Enable Light sensor
+// Default: 0
+#define SL_BOARD_ENABLE_SENSOR_LIGHT 0
+
+// Enable Inertial Measurement Unit
+// Default: 0
+#define SL_BOARD_ENABLE_SENSOR_IMU 0
+
+// Enable Microphone
+// Default: 0
+#define SL_BOARD_ENABLE_SENSOR_MICROPHONE 1
+
+// Disable SPI Flash
+// Default: 1
+#define SL_BOARD_DISABLE_MEMORY_SPI 1
+
+// <<< end of configuration section >>>
+
+// <<< sl:start pin_tool >>>
+
+// SL_BOARD_ENABLE_SENSOR_RHT
+// $[GPIO_SL_BOARD_ENABLE_SENSOR_RHT]
+#ifndef SL_BOARD_ENABLE_SENSOR_RHT_PORT
+#define SL_BOARD_ENABLE_SENSOR_RHT_PORT SL_GPIO_PORT_C
+#endif
+#ifndef SL_BOARD_ENABLE_SENSOR_RHT_PIN
+#define SL_BOARD_ENABLE_SENSOR_RHT_PIN 9
+#endif
+// [GPIO_SL_BOARD_ENABLE_SENSOR_RHT]$
+
+// SL_BOARD_ENABLE_SENSOR_HALL
+// $[GPIO_SL_BOARD_ENABLE_SENSOR_HALL]
+#ifndef SL_BOARD_ENABLE_SENSOR_HALL_PORT
+#define SL_BOARD_ENABLE_SENSOR_HALL_PORT SL_GPIO_PORT_C
+#endif
+#ifndef SL_BOARD_ENABLE_SENSOR_HALL_PIN
+#define SL_BOARD_ENABLE_SENSOR_HALL_PIN 9
+#endif
+// [GPIO_SL_BOARD_ENABLE_SENSOR_HALL]$
+
+// SL_BOARD_ENABLE_SENSOR_PRESSURE
+// $[GPIO_SL_BOARD_ENABLE_SENSOR_PRESSURE]
+#ifndef SL_BOARD_ENABLE_SENSOR_PRESSURE_PORT
+#define SL_BOARD_ENABLE_SENSOR_PRESSURE_PORT SL_GPIO_PORT_C
+#endif
+#ifndef SL_BOARD_ENABLE_SENSOR_PRESSURE_PIN
+#define SL_BOARD_ENABLE_SENSOR_PRESSURE_PIN 9
+#endif
+// [GPIO_SL_BOARD_ENABLE_SENSOR_PRESSURE]$
+
+// SL_BOARD_ENABLE_SENSOR_LIGHT
+// $[GPIO_SL_BOARD_ENABLE_SENSOR_LIGHT]
+#ifndef SL_BOARD_ENABLE_SENSOR_LIGHT_PORT
+#define SL_BOARD_ENABLE_SENSOR_LIGHT_PORT SL_GPIO_PORT_C
+#endif
+#ifndef SL_BOARD_ENABLE_SENSOR_LIGHT_PIN
+#define SL_BOARD_ENABLE_SENSOR_LIGHT_PIN 9
+#endif
+// [GPIO_SL_BOARD_ENABLE_SENSOR_LIGHT]$
+
+// SL_BOARD_ENABLE_SENSOR_IMU
+// $[GPIO_SL_BOARD_ENABLE_SENSOR_IMU]
+#ifndef SL_BOARD_ENABLE_SENSOR_IMU_PORT
+#define SL_BOARD_ENABLE_SENSOR_IMU_PORT SL_GPIO_PORT_A
+#endif
+#ifndef SL_BOARD_ENABLE_SENSOR_IMU_PIN
+#define SL_BOARD_ENABLE_SENSOR_IMU_PIN 10
+#endif
+// [GPIO_SL_BOARD_ENABLE_SENSOR_IMU]$
+
+// SL_BOARD_ENABLE_SENSOR_MICROPHONE
+// $[GPIO_SL_BOARD_ENABLE_SENSOR_MICROPHONE]
+#ifndef SL_BOARD_ENABLE_SENSOR_MICROPHONE_PORT
+#define SL_BOARD_ENABLE_SENSOR_MICROPHONE_PORT SL_GPIO_PORT_C
+#endif
+#ifndef SL_BOARD_ENABLE_SENSOR_MICROPHONE_PIN
+#define SL_BOARD_ENABLE_SENSOR_MICROPHONE_PIN 8
+#endif
+// [GPIO_SL_BOARD_ENABLE_SENSOR_MICROPHONE]$
+
+// <<< sl:end pin_tool >>>
+
+#endif // SL_BOARD_CONTROL_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bt_host_adaptation_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bt_host_adaptation_config.h
new file mode 100644
index 000000000..7bcb87f8a
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bt_host_adaptation_config.h
@@ -0,0 +1,59 @@
+/***************************************************************************//**
+ * @file
+ * @brief Configuration of the Bluetooth host stack system adaptation layer
+ *******************************************************************************
+ * # License
+ * Copyright 2023 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied warranty.
+ * In no event will the authors be held liable for any damages arising from the
+ * use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software in a
+ * product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_BT_HOST_ADAPTATION_CONFIG_H
+#define SL_BT_HOST_ADAPTATION_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Bluetooth Host Adaptation Configuration
+
+// Radio interrupt priority in baremetal applications <1..7:1>
+// Default: 4
+// Define the ISR priority for radio interrupts in baremetal applications. The Bluetooth host stack sets this priority when the Bluetooth stack is started.
+//
+// NOTE: SL_BT_HOST_ADAPTATION_RADIO_IRQ_PRIORITY is deprecated in Simplicity SDK Suite v2025.6.0 and marked for removal in a future release.
+// Please use SL_BT_CONTROLLER_RADIO_IRQ_PRIORITY instead, provided by the Bluetooth Low Energy Controller component.
+#define SL_BT_HOST_ADAPTATION_RADIO_IRQ_PRIORITY (4)
+
+// Linklayer interrupt priority in baremetal applications <1..7:1>
+// Default: 5
+// Define the ISR priority for linklayer interrupts in baremetal applications. The Bluetooth host stack sets this priority when the Bluetooth stack is started.
+// The value of SL_BT_HOST_ADAPTATION_LINKLAYER_IRQ_PRIORITY must be higher than SL_BT_HOST_ADAPTATION_RADIO_IRQ_PRIORITY.
+//
+// NOTE: SL_BT_HOST_ADAPTATION_LINKLAYER_IRQ_PRIORITY is deprecated in Simplicity SDK Suite v2025.6.0 and marked for removal in a future release.
+// Please use SL_BT_CONTROLLER_LINKLAYER_IRQ_PRIORITY instead, provided by the Bluetooth Low Energy Controller component.
+#define SL_BT_HOST_ADAPTATION_LINKLAYER_IRQ_PRIORITY (5)
+
+// Bluetooth Host Adaptation Configuration
+
+// <<< end of configuration section >>>
+
+#endif // SL_BT_HOST_ADAPTATION_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bt_rtos_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bt_rtos_config.h
new file mode 100644
index 000000000..e9d81f7f8
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bt_rtos_config.h
@@ -0,0 +1,44 @@
+/***************************************************************************//**
+ * @file
+ * @brief Bluetooth RTOS configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2023 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied warranty.
+ * In no event will the authors be held liable for any damages arising from the
+ * use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software in a
+ * product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_BT_RTOS_CONFIG_H
+#define SL_BT_RTOS_CONFIG_H
+
+#include
+
+#if defined(_SILICON_LABS_32B_SERIES_2)
+#include "sl_bt_rtos_config_s2.h"
+#elif defined(_SILICON_LABS_32B_SERIES_3)
+#include "sl_bt_rtos_config_s3.h"
+#else
+#error "Device not supported"
+#endif
+
+#endif // SL_BT_RTOS_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bt_rtos_config_s2.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bt_rtos_config_s2.h
new file mode 100644
index 000000000..fb099ab79
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_bt_rtos_config_s2.h
@@ -0,0 +1,84 @@
+/***************************************************************************//**
+ * @file
+ * @brief Bluetooth RTOS configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2024 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied warranty.
+ * In no event will the authors be held liable for any damages arising from the
+ * use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software in a
+ * product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_BT_RTOS_CONFIG_S2_H
+#define SL_BT_RTOS_CONFIG_S2_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Priority Configuration for Bluetooth RTOS Tasks
+
+// Bluetooth link layer task priority
+// Default: 52 (CMSIS-RTOS2 osPriorityRealtime4)
+// Define the priority of the Bluetooth link layer task. This must be a valid
+// priority value from CMSIS-RTOS2 osPriority_t definition. The link layer
+// task must have the highest priority in these three Bluetooth RTOS tasks.
+#define SL_BT_RTOS_LINK_LAYER_TASK_PRIORITY (52)
+
+// Bluetooth link layer task stack size in bytes
+// Default: 1000
+// Define the stack size of the Bluetooth link layer task. The value is in bytes
+// and will be word aligned when it is applied at the task creation.
+#define SL_BT_RTOS_LINK_LAYER_TASK_STACK_SIZE (1000)
+
+// Bluetooth host stack task priority
+// Default: 51 (CMSIS-RTOS2 osPriorityRealtime3)
+// Define the priority of the Bluetooth host stack task. This must be a
+// valid priority value from CMSIS-RTOS2 osPriority_t definition.
+#define SL_BT_RTOS_HOST_STACK_TASK_PRIORITY (51)
+
+// Bluetooth host stack task stack size in bytes
+// Default: 2000
+// Define the stack size of the Bluetooth host stack task. The value is in bytes
+// and will be word aligned when it is applied at the task creation.
+#define SL_BT_RTOS_HOST_STACK_TASK_STACK_SIZE (2000)
+
+// Bluetooth event handler task priority
+// Default: 50 (CMSIS-RTOS2 osPriorityRealtime2)
+// Define the priority of the Bluetooth event handler task. This must be a
+// valid priority value from CMSIS-RTOS2 osPriority_t definition. The event
+// handler task must have the lowest priority in these three Bluetooth RTOS tasks.
+// The event task is not created and this configuration is unused if the
+// Bluetooth Event System IPC component is included in the application
+#define SL_BT_RTOS_EVENT_HANDLER_TASK_PRIORITY (50)
+
+// Bluetooth event handler task stack size in bytes
+// Default: 1000
+// Define the stack size of the Bluetooth event handler task. The value is in bytes
+// and will be word aligned when it is applied at the task creation.
+// The event task is not created and this configuration is unused if the
+// Bluetooth Event System IPC component is included in the application
+#define SL_BT_RTOS_EVENT_HANDLER_STACK_SIZE (1000)
+
+// End Priority Configuration for Bluetooth RTOS Tasks
+
+// <<< end of configuration section >>>
+
+#endif // SL_BT_RTOS_CONFIG_S2_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_btctrl_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_btctrl_config.h
new file mode 100644
index 000000000..deff56f8a
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_btctrl_config.h
@@ -0,0 +1,174 @@
+#ifndef SL_BTCTRL_CONFIG_H
+#define SL_BTCTRL_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Bluetooth Controller Configuration
+
+// Bluetooth Controller Buffer Memory
+// Default: SL_BT_CONTROLLER_BUFFER_MEMORY
+// Define the Amount of memory to allocate for tx/rx buffers in Bluetooth Controller
+#ifndef SL_BT_CONTROLLER_BUFFER_MEMORY
+#define SL_BT_CONTROLLER_BUFFER_MEMORY (8192)
+#endif
+
+// Bluetooth Controller ACL data packets that can be stored
+// Default: SL_BT_CONTROLLER_LE_BUFFER_SIZE_MAX
+// Define the total number of the maximum sized ACL data packets that can be received from the host
+#ifndef SL_BT_CONTROLLER_LE_BUFFER_SIZE_MAX
+#define SL_BT_CONTROLLER_LE_BUFFER_SIZE_MAX (3)
+#endif
+
+// Maximum number of queued advertisement reports <1-255>
+// Default: 10
+// Define the maximum number of queued advertisement reports. Additional advertisement reports are dropped.
+#ifndef SL_BT_CONFIG_MAX_QUEUED_ADV_REPORTS
+#define SL_BT_CONFIG_MAX_QUEUED_ADV_REPORTS (10)
+#endif
+
+// Bluetooth Controller Scanner Reception Early Abort.
+// Default: Disabled
+// Enable or disable the scanner reception early abort feature.
+// This feature allows the controller to control the scanner to abort the reception of a packet if it will conflinct with another scheduled higher priority task.
+#ifndef SL_BT_CONTROLLER_SCANNER_RECEPTION_EARLY_ABORT
+#define SL_BT_CONTROLLER_SCANNER_RECEPTION_EARLY_ABORT (0)
+#endif
+
+// Linklayer interrupt priority in baremetal applications <1..7:1>
+// Default: 5
+// Define the ISR priority for linklayer interrupts in baremetal applications.
+// The value of SL_BT_CONTROLLER_LINKLAYER_IRQ_PRIORITY must be higher than SL_BT_CONTROLLER_RADIO_IRQ_PRIORITY.
+//
+// NOTE: SL_BT_CONTROLLER_LINKLAYER_IRQ_PRIORITY is only applicable in baremetal applications.
+// For RCP applications that include an RTOS, Link Layer thread priority is determined by SL_BTCTRL_RTOS_LINK_LAYER_TASK_PRIORITY,
+// defined in config/sl_btctrl_rtos_config.h.
+// For NCP/SoC applications that include an RTOS, Link Layer thread priority is determined by SL_BT_RTOS_LINK_LAYER_TASK_PRIORITY,
+// defined in config/sl_bt_rtos_config.h.
+#ifndef SL_BT_CONTROLLER_LINKLAYER_IRQ_PRIORITY
+#define SL_BT_CONTROLLER_LINKLAYER_IRQ_PRIORITY (5)
+#endif
+
+// Radio interrupt priority <1..7:1>
+// Default: 4
+// Define the ISR priority for radio interrupts.
+#ifndef SL_BT_CONTROLLER_RADIO_IRQ_PRIORITY
+#define SL_BT_CONTROLLER_RADIO_IRQ_PRIORITY (4)
+#endif
+
+// TX Power Levels
+
+// Override Default Minimum Supported TX Power Level
+// Default: 0
+// Define the minimum radiated TX power level.
+#ifndef SL_BT_CONTROLLER_MIN_POWER_LEVEL_OVERRIDE
+#define SL_BT_CONTROLLER_MIN_POWER_LEVEL_OVERRIDE (0)
+#endif
+
+// Minimum radiated TX power level in 0.1dBm unit
+// Default: 0
+// Define the minimum radiated TX power level.
+// If the configured power level is lower than what the radio supports, the minimum supported level will be used.
+// For NCP and SoC applications, the TX power configuration is located in the Bluetooth Core component.
+// This value will nonetheless be applied, provided that SL_BT_CONTROLLER_MIN_POWER_LEVEL_OVERRIDE is enabled, and the corresponding minimum TX power value in the Bluetooth Core component remains at the default value.
+// For RCP applications, this value will be applied if SL_BT_CONTROLLER_MIN_POWER_LEVEL_OVERRIDE is enabled. If SL_BT_CONTROLLER_MIN_POWER_LEVEL_OVERRIDE is disabled, this value will be ignored and the minimum supported TX power level will be used.
+#ifndef SL_BT_CONTROLLER_MIN_POWER_LEVEL
+#define SL_BT_CONTROLLER_MIN_POWER_LEVEL (0)
+#endif
+//
+
+// Override Default Maximum Supported TX Power Level
+// Default: 0
+// Define the maximum radiated TX power level.
+#ifndef SL_BT_CONTROLLER_MAX_POWER_LEVEL_OVERRIDE
+#define SL_BT_CONTROLLER_MAX_POWER_LEVEL_OVERRIDE (0)
+#endif
+
+// Maximum radiated TX power level in 0.1dBm unit
+// Default: 0
+// Define the maximum radiated TX power level.
+// If the configured power level is higher than what the radio supports, the maximum supported level will be used.
+// For NCP and SoC applications, the TX power configuration is located in the Bluetooth Core component.
+// This value will nonetheless be applied, provided that SL_BT_CONTROLLER_MAX_POWER_LEVEL_OVERRIDE is enabled, and the corresponding maximum TX power value in the Bluetooth Core component remains at the default value.
+// For RCP applications, this value will be applied if SL_BT_CONTROLLER_MAX_POWER_LEVEL_OVERRIDE is enabled. If SL_BT_CONTROLLER_MAX_POWER_LEVEL_OVERRIDE is disabled, this value will be ignored and the maximum supported TX power level will be used.
+#ifndef SL_BT_CONTROLLER_MAX_POWER_LEVEL
+#define SL_BT_CONTROLLER_MAX_POWER_LEVEL (0)
+#endif
+//
+
+// End TX Power Levels
+
+// Bluetooth Controller Configuration for LE Connection
+// Total transmitted packets threshold for all connections to send the Number Of Completed Packets HCI event to the host <1-255>
+// Default: 4
+// Define the number of transmitted air interface ACL packets to trigger the Number Of Completed Packets HCI event.
+#ifndef SL_BT_CONTROLLER_COMPLETED_PACKETS_THRESHOLD
+#define SL_BT_CONTROLLER_COMPLETED_PACKETS_THRESHOLD (4)
+#endif
+
+// Number of connection events to send the Number Of Completed Packets HCI event to the host <1-255>
+// Default: 3
+// Define the maximum number of connection events since the previous Number Of Completed Packets HCI event to trigger reporting of any unreported completed ACL packets.
+#ifndef SL_BT_CONTROLLER_COMPLETED_PACKETS_EVENTS_TIMEOUT
+#define SL_BT_CONTROLLER_COMPLETED_PACKETS_EVENTS_TIMEOUT (3)
+#endif
+
+// Bluetooth Controller Minimum Connection Event Duration
+// Default: SL_BT_CONTROLLER_CONN_EVENT_LENGTH_MIN
+// Define the minimum connection event length in 0.625 ms units. This value is used to provide a hint to the linklayer scheduler.
+// User could set a larger minimum connection event length when creating a connection or when updating connection parameters.
+#ifndef SL_BT_CONTROLLER_CONN_EVENT_LENGTH_MIN
+#define SL_BT_CONTROLLER_CONN_EVENT_LENGTH_MIN (3)
+#endif
+
+// Bluetooth Controller Connection Event Extension
+// Default: Disabled
+// Enable or disable the connection event extension feature.
+// This allows connections to overrun lower priority tasks as long as there is data to transmit or receive on the connection,
+// and the maximum connection event length is not reached.
+#ifndef SL_BT_CONTROLLER_CONN_EVENT_LENGTH_EXTENSION
+#define SL_BT_CONTROLLER_CONN_EVENT_LENGTH_EXTENSION (0)
+#endif
+//
Bluetooth Controller Configuration for LE Connection
+
+// Use legacy event code 0x3e for vendor specific events
+// Default: 0
+#ifndef SL_BT_CONTROLLER_USE_LEGACY_VENDOR_SPECIFIC_EVENT_CODE
+#define SL_BT_CONTROLLER_USE_LEGACY_VENDOR_SPECIFIC_EVENT_CODE (0)
+#endif
+
+// Adaptive Frequency Hopping operation mode
+// Active AFH
+// Passive AFH
+// Choose between active AFH and passive AFH
+// Default: Active AFH
+// SL_BTCTRL_CHANNELMAP_FLAG_ACTIVE_ADAPTIVITY
+#ifndef SL_BT_CONTROLLER_ADAPTIVITY_MODE
+#define SL_BT_CONTROLLER_ADAPTIVITY_MODE (SL_BTCTRL_CHANNELMAP_FLAG_ACTIVE_ADAPTIVITY)
+#endif
+
+// Advertising Configuration
+// Include TX Power in the extended header of primary extended advertising packets
+// This is default setting to all advertising sets unless it is specifically overridden by VS_SiliconLabs_Set_Advertising_Config_Bits.
+// Default: 0
+// Enabling this option takes effect only if permitted by Le_Set_Extended_Advertising_Parameters
+// According to Link Layer specification, Vol 6, Part B, Table 2.4 and Table 2.5:
+// Optional in 1M PHY when the advertiser is connectable or scannable, or with auxiliary pointer.
+// In other cases, the Extended Advertising TX Power is always optional by settings.
+#define SL_BT_CONTROLLER_PRIMARY_EXT_PACKET_INCLUDE_TX_POWER (0)
+//
+// Include Advertiser Address in the header of primary extended advertising packets
+// This is default setting to all advertising sets unless it is specifically overridden by VS_SiliconLabs_Set_Advertising_Config_Bits.
+// Default: 0
+// Enabling this option takes effect only if permitted by Le_Set_Extended_Advertising_Parameters
+// According to Link Layer specification, Vol 6, Part B, Table 2.4 and Table 2.5:
+// Optional in 1M PHY when the advertiser is non-connectable and non-scannable, with auxiliary pointer.
+// Mandatory when the advertiser is non-connectable and non-scannable, without auxiliary pointer.
+// Forbidden when the advertiser is connectable or scannable.
+#define SL_BT_CONTROLLER_PRIMARY_EXT_PACKET_INCLUDE_ADDRESS (0)
+//
+// Advertising Configuration
+//
Bluetooth Controller Configuration
+
+// <<< end of configuration section >>>
+
+#endif // SL_BTCTRL_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_btctrl_scheduler_priority_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_btctrl_scheduler_priority_config.h
new file mode 100644
index 000000000..9d00cc8ea
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_btctrl_scheduler_priority_config.h
@@ -0,0 +1,235 @@
+/***************************************************************************//**
+ * @file
+ * @brief Bluetooth Scheduler Priority configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2025 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied warranty.
+ * In no event will the authors be held liable for any damages arising from the
+ * use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software in a
+ * product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_BTCTRL_SCHEDULER_PRIORITY_CONFIG_H
+#define SL_BTCTRL_SCHEDULER_PRIORITY_CONFIG_H
+#include "sl_btctrl_linklayer_defs.h"
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Bluetooth Low Energy Scheduler Priorities
+
+// Scan - Min
+// <0-255:1>
+// Default: 191
+// Define the lowest permitted BLE scan priority. [0-255]
+// A lower value indicates a higher priority.
+// Scanning is typically considered to be a low priority
+// operation, and the default values are set to reflect that.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_SCAN_MIN
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_SCAN_MIN 191
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_SCAN_MIN
+
+// Scan - Max
+// <0-255:1>
+// Default: 143
+// Define the highest permitted BLE scan priority. [0-255]
+// A lower value indicates a higher priority.
+// Scanning is typically considered to be a low priority
+// operation, and the default values are set to reflect that.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_SCAN_MAX
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_SCAN_MAX 143
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_SCAN_MAX
+
+// Scan - Step
+// <1-255:1>
+// Default: 4
+// Define the step size of an increment or decrement of the scan priority.
+// This defines how quickly the scanner adjusts the task priority
+// in the event of a scheduling conflict.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_SCAN_STEP
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_SCAN_STEP 4
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_SCAN_STEP
+
+// Advertisement - Min
+// <0-255:1>
+// Default: 175
+// Define the lowest permitted BLE advertisement priority. [0-255]
+// A lower value indicates a higher priority.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_ADV_MIN
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_ADV_MIN 175
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_ADV_MIN
+
+// Advertisement - Max
+// <0-255:1>
+// Default: 127
+// Define the highest permitted BLE advertisement priority. [0-255]
+// A lower value indicates a higher priority.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_ADV_MAX
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_ADV_MAX 127
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_ADV_MAX
+
+// Advertisement - Step
+// <1-255:1>
+// Default: 4
+// Define the step size of an increment or decrement of the advertisement priority.
+// This defines how quickly the advertiser adjusts the task priority
+// in the event of a scheduling conflict.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_ADV_STEP
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_ADV_STEP 4
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_ADV_STEP
+
+// Connection - Min
+// <0-255:1>
+// Default: 135
+// Define the lowest permitted BLE connection priority. [0-255]
+// A lower value indicates a higher priority.
+// The minimum connection priority is by default above the priority of scanning
+// and advertising. Connection priority is calculated by how close to the
+// supervision timeout the connection is. In good link conditions, the
+// connection priority is close to the minimum specified value.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_CONN_MIN
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_CONN_MIN 135
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_CONN_MIN
+
+// Connection - Max
+// <0-255:1>
+// Default: 0
+// Define the highest permitted BLE connection priority. [0-255]
+// A lower value indicates a higher priority.
+// The default is equal to the maximum possible value. If the connection
+// priority has risen to the maximum value then this is likely the last connection
+// event before the supervision timeout.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_CONN_MAX
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_CONN_MAX 0
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_CONN_MAX
+
+// Connection Initiation - Min
+// <0-255:1>
+// Default: 55
+// Define the lowest permitted BLE connection initiation priority. [0-255]
+// A lower value indicates a higher priority.
+// The scanning priority during connection establishment.
+// The default value gives a relatively high minimum priority to connection
+// establishment.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_INIT_MIN
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_INIT_MIN 55
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_INIT_MIN
+
+// Connection Initiation - Max
+// <0-255:1>
+// Default: 15
+// Define the highest permitted BLE connection initiation priority. [0-255]
+// A lower value indicates a higher priority.
+// This default value prevents the initiation task from consuming too much
+// high priority connection task time.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_INIT_MAX
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_INIT_MAX 15
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_INIT_MAX
+
+// Rail Mapping Window Min
+// <0-255:1>
+// Default: 16
+// Define the minimum value of RAIL mapping window.
+// This parameter specifies how task priorities are passed to radio
+// coexistence and multiprotocol schedulers.
+// Internal task priorities in Bluetooth should always use maximum range of 0-255,
+// and use this mapping window to adapt to other protocols.
+// Internal task priorities are linear scaled to the window before passing
+// to RAIL.
+// If coexistence or multiprotocol configuration is not used, then these
+// parameters have no effect.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_RAIL_WINDOW_MIN
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_RAIL_WINDOW_MIN 16
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_RAIL_WINDOW_MIN
+
+// Rail Mapping Window Range
+// <0-255:1>
+// Default: 32
+// Define the maximum value of the RAIL mapping window.
+// See SL_BT_CONTROLLER_SCHEDULER_PRI_RAIL_WINDOW_MIN for a description of
+// this parameter.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_RAIL_WINDOW_MAX
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_RAIL_WINDOW_MAX 32
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_RAIL_WINDOW_MAX
+
+// PAwR Tx - Min
+// <0-255:1>
+// Default: 15
+// Define the lowest permitted BLE PAwR transmission priority. [0-255]
+// A lower value indicates a higher priority.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_TX_MIN
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_TX_MIN 15
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_TX_MIN
+
+// PAwR Tx - Max
+// <0-255:1>
+// Default: 5
+// Define the highest permitted BLE PAwR transmission priority. [0-255]
+// A lower value indicates a higher priority.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_TX_MAX
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_TX_MAX 5
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_TX_MAX
+
+// PAwR Rx - Min
+// <0-255:1>
+// Default: 20
+// Define the lowest permitted BLE PAwR reception priority. [0-255]
+// A lower value indicates a higher priority.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_RX_MIN
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_RX_MIN 20
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_RX_MIN
+
+// PAwR Rx - Max
+// <0-255:1>
+// Default: 10
+// Define the highest permitted BLE PAwR reception priority. [0-255]
+// A lower value indicates a higher priority.
+#ifndef SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_RX_MAX
+#define SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_RX_MAX 10
+#endif // SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_RX_MAX
+
+//
+
+// <<< end of configuration section >>>
+
+//Default priority configuration
+#define SL_BTCTRL_SCHEDULER_PRIORITIES { \
+ .scan_min = SL_BT_CONTROLLER_SCHEDULER_PRI_SCAN_MIN, \
+ .scan_max = SL_BT_CONTROLLER_SCHEDULER_PRI_SCAN_MAX, \
+ .adv_min = SL_BT_CONTROLLER_SCHEDULER_PRI_ADV_MIN, \
+ .adv_max = SL_BT_CONTROLLER_SCHEDULER_PRI_ADV_MAX, \
+ .conn_min = SL_BT_CONTROLLER_SCHEDULER_PRI_CONN_MIN, \
+ .conn_max = SL_BT_CONTROLLER_SCHEDULER_PRI_CONN_MAX, \
+ .init_min = SL_BT_CONTROLLER_SCHEDULER_PRI_INIT_MIN, \
+ .init_max = SL_BT_CONTROLLER_SCHEDULER_PRI_INIT_MAX, \
+ .rail_mapping_offset = SL_BT_CONTROLLER_SCHEDULER_PRI_RAIL_WINDOW_MIN, \
+ .rail_mapping_range = (SL_BT_CONTROLLER_SCHEDULER_PRI_RAIL_WINDOW_MAX \
+ - SL_BT_CONTROLLER_SCHEDULER_PRI_RAIL_WINDOW_MIN), \
+ 0, \
+ .adv_step = SL_BT_CONTROLLER_SCHEDULER_PRI_ADV_STEP, \
+ .scan_step = SL_BT_CONTROLLER_SCHEDULER_PRI_SCAN_STEP, \
+ .pawr_tx_min = SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_TX_MIN, \
+ .pawr_tx_max = SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_TX_MAX, \
+ .pawr_rx_min = SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_RX_MIN, \
+ .pawr_rx_max = SL_BT_CONTROLLER_SCHEDULER_PRI_PAWR_RX_MAX \
+}
+
+#endif // SL_BTCTRL_SCHEDULER_PRIORITY_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_clock_manager_oscillator_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_clock_manager_oscillator_config.h
new file mode 100644
index 000000000..2aeeb0b68
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_clock_manager_oscillator_config.h
@@ -0,0 +1,376 @@
+/***************************************************************************//**
+ * @file
+ * @brief Clock Manager - Oscillators configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2025 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+ #ifndef SL_CLOCK_MANAGER_OSCILLATOR_CONFIG_H
+#define SL_CLOCK_MANAGER_OSCILLATOR_CONFIG_H
+
+#if defined(SL_COMPONENT_CATALOG_PRESENT)
+#include "sl_component_catalog.h"
+
+#endif
+
+// Internal Defines: DO NOT MODIFY
+#define SL_CLOCK_MANAGER_HFXO_EN_ENABLE 1
+#define SL_CLOCK_MANAGER_HFXO_EN_DISABLE 0
+
+#if defined(SL_CATALOG_RAIL_LIB_PRESENT)
+#define SL_CLOCK_MANAGER_HFXO_EN_AUTO SL_CLOCK_MANAGER_HFXO_EN_ENABLE
+#else
+#define SL_CLOCK_MANAGER_HFXO_EN_AUTO SL_CLOCK_MANAGER_HFXO_EN_DISABLE
+#endif
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Oscillators Settings
+
+// HFXO Settings (if High Frequency crystal is used)
+
+// Enable
+// Enable to configure HFXO
+// AUTO enables HFXO if a radio is used
+// AUTO
+// ENABLE
+// DISABLE
+// SL_CLOCK_MANAGER_HFXO_EN_AUTO
+#ifndef SL_CLOCK_MANAGER_HFXO_EN
+#define SL_CLOCK_MANAGER_HFXO_EN SL_CLOCK_MANAGER_HFXO_EN_ENABLE
+#endif
+
+// Mode
+//
+// XTAL
+// EXTCLK
+// EXTCLKPKDET
+// HFXO_CFG_MODE_XTAL
+#ifndef SL_CLOCK_MANAGER_HFXO_MODE
+#define SL_CLOCK_MANAGER_HFXO_MODE HFXO_CFG_MODE_XTAL
+#endif
+
+// Frequency in Hz <38000000-40000000>
+// 39000000
+#ifndef SL_CLOCK_MANAGER_HFXO_FREQ
+#define SL_CLOCK_MANAGER_HFXO_FREQ 39000000
+#endif
+
+// CTUNE <0-255>
+// 140
+#ifndef SL_CLOCK_MANAGER_HFXO_CTUNE
+#define SL_CLOCK_MANAGER_HFXO_CTUNE 140
+#endif
+
+// Precision in PPM <0-65535>
+// 50
+#ifndef SL_CLOCK_MANAGER_HFXO_PRECISION
+#define SL_CLOCK_MANAGER_HFXO_PRECISION 50
+#endif
+
+// CTUNE HXFO manufacturing
+// Enable to use CTUNE HFXO manufacturing value for calibration
+// 1
+#ifndef SL_CLOCK_MANAGER_CTUNE_MFG_HFXO_EN
+#define SL_CLOCK_MANAGER_CTUNE_MFG_HFXO_EN 1
+#endif
+
+// HFXO crystal sharing feature
+// Enable to configure HFXO crystal sharing leader or follower
+#ifndef SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_EN
+#define SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_EN 0
+#endif
+
+// Crystal sharing leader
+// Enable to configure HFXO crystal sharing leader
+#ifndef SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_LEADER_EN
+#define SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_LEADER_EN 0
+#endif
+
+// Crystal sharing leader minimum startup delay
+// If enabled, BUFOUT does not start until timeout set in
+// SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_LEADER_TIMEOUT_STARTUP expires.
+// This prevents waste of power if BUFOUT is ready too early.
+// 1
+#ifndef SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_LEADER_MIN_STARTUP_DELAY_EN
+#define SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_LEADER_MIN_STARTUP_DELAY_EN 1
+#endif
+
+// Wait duration of oscillator startup sequence
+//
+// T42US
+// T83US
+// T108US
+// T133US
+// T158US
+// T183US
+// T208US
+// T233US
+// T258US
+// T283US
+// T333US
+// T375US
+// T417US
+// T458US
+// T500US
+// T667US
+// HFXO_BUFOUTCTRL_TIMEOUTSTARTUP_T208US
+#ifndef SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_LEADER_TIMEOUT_STARTUP
+#define SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_LEADER_TIMEOUT_STARTUP HFXO_BUFOUTCTRL_TIMEOUTSTARTUP_T208US
+#endif
+//
+//
+
+// Crystal sharing follower
+// Enable to configure HFXO crystal sharing follower
+#ifndef SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_FOLLOWER_EN
+#define SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_FOLLOWER_EN 0
+#endif
+//
+
+// GPIO Port
+// Bufout request GPIO port. If SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_LEADER_EN
+// is enabled, this port will be used to receive the BUFOUT request. If
+// SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_FOLLOWER_EN is enabled this port
+// will be used to request BUFOUT from the crystal sharing leader.
+#ifndef SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_GPIO_PORT
+#define SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_GPIO_PORT 0
+#endif
+
+// GPIO Pin
+// Bufout request GPIO pin. If SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_LEADER_EN
+// is enabled, this pin will be used to receive the BUFOUT request. If
+// SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_FOLLOWER_EN is enabled this pin
+// will be used to request BUFOUT from the crystal sharing leader.
+#ifndef SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_GPIO_PIN
+#define SL_CLOCK_MANAGER_HFXO_CRYSTAL_SHARING_GPIO_PIN 10
+#endif
+//
+//
+
+// LFXO Settings (if Low Frequency crystal is used)
+// Enable to configure LFXO
+#ifndef SL_CLOCK_MANAGER_LFXO_EN
+#define SL_CLOCK_MANAGER_LFXO_EN 1
+#endif
+
+// Mode
+//
+// XTAL
+// BUFEXTCLK
+// DIGEXTCLK
+// LFXO_CFG_MODE_XTAL
+#ifndef SL_CLOCK_MANAGER_LFXO_MODE
+#define SL_CLOCK_MANAGER_LFXO_MODE LFXO_CFG_MODE_XTAL
+#endif
+
+// CTUNE <0-127>
+// 63
+#ifndef SL_CLOCK_MANAGER_LFXO_CTUNE
+#define SL_CLOCK_MANAGER_LFXO_CTUNE 63
+#endif
+
+// LFXO precision in PPM <0-65535>
+// 50
+#ifndef SL_CLOCK_MANAGER_LFXO_PRECISION
+#define SL_CLOCK_MANAGER_LFXO_PRECISION 50
+#endif
+
+// Startup Timeout Delay
+//
+// CYCLES2
+// CYCLES256
+// CYCLES1K
+// CYCLES2K
+// CYCLES4K
+// CYCLES8K
+// CYCLES16K
+// CYCLES32K
+// LFXO_CFG_TIMEOUT_CYCLES4K
+#ifndef SL_CLOCK_MANAGER_LFXO_TIMEOUT
+#define SL_CLOCK_MANAGER_LFXO_TIMEOUT LFXO_CFG_TIMEOUT_CYCLES4K
+#endif
+
+// CTUNE LXFO manufacturing
+// Enable to use CTUNE LFXO manufacturing value for calibration
+// 1
+#ifndef SL_CLOCK_MANAGER_CTUNE_MFG_LFXO_EN
+#define SL_CLOCK_MANAGER_CTUNE_MFG_LFXO_EN 1
+#endif
+//
+
+// HFRCO and DPLL Settings
+// Frequency Band
+// RC Oscillator Frequency Band
+// 1 MHz
+// 2 MHz
+// 4 MHz
+// 7 MHz
+// 13 MHz
+// 16 MHz
+// 19 MHz
+// 26 MHz
+// 32 MHz
+// 38 MHz
+// 48 MHz
+// 56 MHz
+// 64 MHz
+// 80 MHz
+// cmuHFRCODPLLFreq_80M0Hz
+#ifndef SL_CLOCK_MANAGER_HFRCO_BAND
+#define SL_CLOCK_MANAGER_HFRCO_BAND cmuHFRCODPLLFreq_80M0Hz
+#endif
+
+// Use DPLL
+// Enable to use the DPLL with HFRCO
+#ifndef SL_CLOCK_MANAGER_HFRCO_DPLL_EN
+#define SL_CLOCK_MANAGER_HFRCO_DPLL_EN 0
+#endif
+
+// Target Frequency in Hz <1000000-80000000>
+// DPLL target frequency
+// 78000000
+#ifndef SL_CLOCK_MANAGER_DPLL_FREQ
+#define SL_CLOCK_MANAGER_DPLL_FREQ 78000000
+#endif
+
+// Numerator (N) <300-4095>
+// Value of N for output frequency calculation fout = fref * (N+1) / (M+1)
+// 3839
+#ifndef SL_CLOCK_MANAGER_DPLL_N
+#define SL_CLOCK_MANAGER_DPLL_N 3839
+#endif
+
+// Denominator (M) <0-4095>
+// Value of M for output frequency calculation fout = fref * (N+1) / (M+1)
+// 1919
+#ifndef SL_CLOCK_MANAGER_DPLL_M
+#define SL_CLOCK_MANAGER_DPLL_M 1919
+#endif
+
+// Reference Clock
+// Reference clock source for DPLL
+// DISABLED
+// HFXO
+// LFXO
+// CLKIN0
+// CMU_DPLLREFCLKCTRL_CLKSEL_HFXO
+#ifndef SL_CLOCK_MANAGER_DPLL_REFCLK
+#define SL_CLOCK_MANAGER_DPLL_REFCLK CMU_DPLLREFCLKCTRL_CLKSEL_HFXO
+#endif
+
+// Reference Clock Edge Detect
+// Edge detection for reference clock
+// Falling Edge
+// Rising Edge
+// cmuDPLLEdgeSel_Fall
+#ifndef SL_CLOCK_MANAGER_DPLL_EDGE
+#define SL_CLOCK_MANAGER_DPLL_EDGE cmuDPLLEdgeSel_Fall
+#endif
+
+// DPLL Lock Mode
+// Lock mode
+// Frequency-Lock Loop
+// Phase-Lock Loop
+// cmuDPLLLockMode_Freq
+#ifndef SL_CLOCK_MANAGER_DPLL_LOCKMODE
+#define SL_CLOCK_MANAGER_DPLL_LOCKMODE cmuDPLLLockMode_Phase
+#endif
+
+// Automatic Lock Recovery
+// 1
+#ifndef SL_CLOCK_MANAGER_DPLL_AUTORECOVER
+#define SL_CLOCK_MANAGER_DPLL_AUTORECOVER 1
+#endif
+
+// Enable Dither
+// 0
+#ifndef SL_CLOCK_MANAGER_DPLL_DITHER
+#define SL_CLOCK_MANAGER_DPLL_DITHER 0
+#endif
+//
+//
+
+// HFRCOEM23 Settings
+// Frequency Band
+// RC Oscillator Frequency Band
+// 1 MHz
+// 2 MHz
+// 4 MHz
+// 13 MHz
+// 16 MHz
+// 19 MHz
+// 26 MHz
+// 32 MHz
+// 40 MHz
+// cmuHFRCOEM23Freq_19M0Hz
+#ifndef SL_CLOCK_MANAGER_HFRCOEM23_BAND
+#define SL_CLOCK_MANAGER_HFRCOEM23_BAND cmuHFRCOEM23Freq_19M0Hz
+#endif
+//
+
+// LFRCO Settings
+// Precision Mode
+// Precision mode uses hardware to automatically re-calibrate the LFRCO
+// against a crystal driven by the HFXO. Hardware detects temperature
+// changes and initiates a re-calibration of the LFRCO as needed when
+// operating in EM0, EM1, or EM2. If a re-calibration is necessary and the
+// HFXO is not active, the precision mode hardware will automatically
+// enable HFXO for a short time to perform the calibration. EM4 operation is
+// not allowed while precision mode is enabled.
+// If high precision is selected on devices that do not support it, default
+// precision will be used.
+// Default precision
+// High precision
+// cmuPrecisionDefault
+#ifndef SL_CLOCK_MANAGER_LFRCO_PRECISION
+#define SL_CLOCK_MANAGER_LFRCO_PRECISION cmuPrecisionDefault
+#endif
+//
+
+// CLKIN0 Settings
+// Frequency in Hz <1000000-38000000>
+// 38000000
+#ifndef SL_CLOCK_MANAGER_CLKIN0_FREQ
+#define SL_CLOCK_MANAGER_CLKIN0_FREQ 38000000
+#endif
+//
+
+//
+
+// <<< end of configuration section >>>
+
+// <<< sl:start pin_tool >>>
+
+// SL_CLOCK_MANAGER_CLKIN0
+// $[CMU_SL_CLOCK_MANAGER_CLKIN0]
+
+
+// [CMU_SL_CLOCK_MANAGER_CLKIN0]$
+
+// <<< sl:end pin_tool >>>
+
+#endif /* SL_CLOCK_MANAGER_OSCILLATOR_CONFIG_H */
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_clock_manager_tree_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_clock_manager_tree_config.h
new file mode 100644
index 000000000..af2737e43
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_clock_manager_tree_config.h
@@ -0,0 +1,320 @@
+/***************************************************************************//**
+ * @file
+ * @brief Clock Manager - Clock Tree configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2025 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_CLOCK_MANAGER_TREE_CONFIG_H
+#define SL_CLOCK_MANAGER_TREE_CONFIG_H
+
+#if defined(SL_COMPONENT_CATALOG_PRESENT)
+#include "sl_component_catalog.h"
+
+#endif
+
+// Internal Defines: DO NOT MODIFY
+// Those defines are used internally to help converting the DEFAULT_HF_CLOCK_SOURCE and DEFAULT_LF_CLOCK_SOURCE
+// selection of each clock branch to the right HW register value.
+#define SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE_HFRCODPLL 0xFF
+#define SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE_HFXO 0xFE
+#define SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE_FSRCO 0xFD
+#define SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE_LFRCO 0xFC
+#define SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE_LFXO 0xFB
+#define SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE_ULFRCO 0xFA
+
+#if defined(SL_CATALOG_RAIL_LIB_PRESENT)
+#define SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE_AUTO SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE_HFXO
+#else
+#define SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE_AUTO SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE_HFRCODPLL
+#endif
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Clock Tree Settings
+
+// Default Clock Source Selection for HF clock branches
+// AUTO
+// HFRCODPLL
+// HFXO
+// FSRCO
+// Selection of the high frequency clock source. HF clock branches can select this value by chosing the DEFAULT_HF value.
+// AUTO uses HFXO if a radio is used and HFRCODPLL otherwise
+// SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE_AUTO
+#ifndef SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE
+#define SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE_HFXO
+#endif
+
+// Default Clock Source Selection for LF clock branches
+// LFRCO
+// LFXO
+// ULFRCO
+// Selection of the low frequency clock source. LF clock branches can select this value by chosing the DEFAULT_HF value.
+// SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE_LFRCO
+#ifndef SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#define SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE_LFXO
+#endif
+
+// System Clock Branch Settings
+
+// Clock Source Selection for SYSCLK branch
+// DEFAULT_HF
+// FSRCO
+// HFRCODPLL
+// HFXO
+// CLKIN0
+// Selection of the Clock source for SYSCLK
+// SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE
+#ifndef SL_CLOCK_MANAGER_SYSCLK_SOURCE
+#define SL_CLOCK_MANAGER_SYSCLK_SOURCE SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE
+#endif
+
+// HCLK branch divider
+// DIV1
+// DIV2
+// DIV4
+// DIV8
+// DIV16
+// HCLK branch is derived from SYSCLK. This clock drives the AHB bus interface.
+// CMU_SYSCLKCTRL_HCLKPRESC_DIV1
+#ifndef SL_CLOCK_MANAGER_HCLK_DIVIDER
+#define SL_CLOCK_MANAGER_HCLK_DIVIDER CMU_SYSCLKCTRL_HCLKPRESC_DIV1
+#endif
+
+// PCLK branch divider
+// DIV1
+// DIV2
+// MIN
+// PCLK branch is derived from HCLK. This clock drives the APB bus interface.
+// SL_CLOCK_MANAGER_PCLK_DIV_MIN
+#ifndef SL_CLOCK_MANAGER_PCLK_DIVIDER
+#define SL_CLOCK_MANAGER_PCLK_DIVIDER SL_CLOCK_MANAGER_PCLK_DIV_MIN
+#endif
+
+//
+
+// Trace Clock Branches Settings
+// Clock Source Selection for TRACECLK branch
+// DISABLE
+// SYSCLK
+// HFRCOEM23
+// HFRCODPLLRT
+// Selection of the Clock source for TRACECLK
+// CMU_TRACECLKCTRL_CLKSEL_SYSCLK
+#ifndef SL_CLOCK_MANAGER_TRACECLK_SOURCE
+#define SL_CLOCK_MANAGER_TRACECLK_SOURCE CMU_TRACECLKCTRL_CLKSEL_SYSCLK
+#endif
+
+// TRACECLK branch Divider
+// DIV1
+// DIV2
+// DIV3
+// DIV4
+// Selection of the divider value for TRACECLK branch
+// CMU_TRACECLKCTRL_PRESC_DIV1
+#ifndef SL_CLOCK_MANAGER_TRACECLK_DIVIDER
+#define SL_CLOCK_MANAGER_TRACECLK_DIVIDER CMU_TRACECLKCTRL_PRESC_DIV1
+#endif
+
+//
+
+// High Frequency Clock Branches Settings
+// Each HF Clock Tree branch can be customized, else the same clock source as for SYSCLK will be used when possible
+// EM01GRPACLK clock the Timer peripherals
+// Clock Source Selection for EM01GRPACLK branch
+// DEFAULT_HF
+// HFRCODPLL
+// HFXO
+// FSRCO
+// HFRCOEM23
+// HFRCODPLLRT
+// HFXORT
+// Selection of the Clock source for EM01GRPACLK
+// SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE
+#ifndef SL_CLOCK_MANAGER_EM01GRPACLK_SOURCE
+#define SL_CLOCK_MANAGER_EM01GRPACLK_SOURCE SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE
+#endif
+
+// Clock Source Selection for EM01GRPCCLK branch
+// DEFAULT_HF
+// HFRCODPLL
+// HFXO
+// FSRCO
+// HFRCOEM23
+// HFRCODPLLRT
+// HFXORT
+// Selection of the Clock source for EM01GRPCCLK
+// SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE
+#ifndef SL_CLOCK_MANAGER_EM01GRPCCLK_SOURCE
+#define SL_CLOCK_MANAGER_EM01GRPCCLK_SOURCE SL_CLOCK_MANAGER_DEFAULT_HF_CLOCK_SOURCE
+#endif
+
+// Clock Source Selection for IADCCLK branch
+// EM01GRPACLK
+// FSRCO
+// HFRCOEM23
+// Selection of the Clock source for IADCCLK
+// CMU_IADCCLKCTRL_CLKSEL_EM01GRPACLK
+#ifndef SL_CLOCK_MANAGER_IADCCLK_SOURCE
+#define SL_CLOCK_MANAGER_IADCCLK_SOURCE CMU_IADCCLKCTRL_CLKSEL_EM01GRPACLK
+#endif
+
+//
+
+// Low Frequency Clock Branches Settings
+
+// Clock Source Selection for EM23GRPACLK branch
+// DEFAULT_LF
+// LFRCO
+// LFXO
+// ULFRCO
+// Selection of the Clock source for EM23GRPACLK
+// SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#ifndef SL_CLOCK_MANAGER_EM23GRPACLK_SOURCE
+#define SL_CLOCK_MANAGER_EM23GRPACLK_SOURCE SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#endif
+
+// Clock Source Selection for EM4GRPACLK branch
+// DEFAULT_LF
+// LFRCO
+// LFXO
+// ULFRCO
+// Selection of the Clock source for EM4GRPACLK
+// SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#ifndef SL_CLOCK_MANAGER_EM4GRPACLK_SOURCE
+#define SL_CLOCK_MANAGER_EM4GRPACLK_SOURCE SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#endif
+
+// Clock Source Selection for SYSRTCCLK branch
+// DEFAULT_LF
+// LFRCO
+// LFXO
+// ULFRCO
+// Selection of the Clock source for SYSRTCCLK
+// SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#ifndef SL_CLOCK_MANAGER_SYSRTCCLK_SOURCE
+#define SL_CLOCK_MANAGER_SYSRTCCLK_SOURCE SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#endif
+
+// Clock Source Selection for WDOG0CLK branch
+// DEFAULT_LF
+// LFRCO
+// LFXO
+// ULFRCO
+// HCLKDIV1024
+// Selection of the Clock source for WDOG0CLK
+// SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#ifndef SL_CLOCK_MANAGER_WDOG0CLK_SOURCE
+#define SL_CLOCK_MANAGER_WDOG0CLK_SOURCE SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#endif
+
+// Clock Source Selection for WDOG1CLK branch
+// DEFAULT_LF
+// LFRCO
+// LFXO
+// ULFRCO
+// HCLKDIV1024
+// Selection of the Clock source for WDOG1CLK
+// SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#ifndef SL_CLOCK_MANAGER_WDOG1CLK_SOURCE
+#define SL_CLOCK_MANAGER_WDOG1CLK_SOURCE SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#endif
+
+// Clock Source Selection for LCDCLK branch
+// DEFAULT_LF
+// LFRCO
+// LFXO
+// ULFRCO
+// Selection of the Clock source for LDCCLK
+// SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#ifndef SL_CLOCK_MANAGER_LCDCLK_SOURCE
+#define SL_CLOCK_MANAGER_LCDCLK_SOURCE SL_CLOCK_MANAGER_DEFAULT_LF_CLOCK_SOURCE
+#endif
+
+// Clock Source Selection for PCNT0CLK branch
+// DISABLED
+// EM23GRPACLK
+// PCNTS0
+// Selection of the Clock source for PCNT0CLK
+// CMU_PCNT0CLKCTRL_CLKSEL_EM23GRPACLK
+#ifndef SL_CLOCK_MANAGER_PCNT0CLK_SOURCE
+#define SL_CLOCK_MANAGER_PCNT0CLK_SOURCE CMU_PCNT0CLKCTRL_CLKSEL_EM23GRPACLK
+#endif
+
+//
+
+// Mixed Frequency Clock Branch Settings
+// Clock Source Selection for EUSART0CLK branch
+// DISABLED
+// EM01GRPCCLK
+// HFRCOEM23
+// LFRCO
+// LFXO
+// Selection of the Clock source for EUSART0CLK
+// CMU_EUSART0CLKCTRL_CLKSEL_EM01GRPCCLK
+#ifndef SL_CLOCK_MANAGER_EUSART0CLK_SOURCE
+#define SL_CLOCK_MANAGER_EUSART0CLK_SOURCE CMU_EUSART0CLKCTRL_CLKSEL_EM01GRPCCLK
+#endif
+
+// Clock Source Selection for SYSTICKCLK branch
+// <0=> HCLK
+// <1=> EM23GRPACLK
+// Selection of the Clock source for SYSTICKCLK
+// 0
+#ifndef SL_CLOCK_MANAGER_SYSTICKCLK_SOURCE
+#define SL_CLOCK_MANAGER_SYSTICKCLK_SOURCE 0
+#endif
+
+// Clock Source Selection for VDAC0CLK branch
+// DISABLED
+// EM01GRPACLK
+// EM23GRPACLK
+// FSRCO
+// HFRCOEM23
+// Selection of the Clock source for VDAC0CLK
+// CMU_VDAC0CLKCTRL_CLKSEL_EM01GRPACLK
+#ifndef SL_CLOCK_MANAGER_VDAC0CLK_SOURCE
+#define SL_CLOCK_MANAGER_VDAC0CLK_SOURCE CMU_VDAC0CLKCTRL_CLKSEL_EM01GRPACLK
+#endif
+
+// Clock Source Selection for VDAC1CLK branch
+// DISABLED
+// EM01GRPACLK
+// EM23GRPACLK
+// FSRCO
+// HFRCOEM23
+// Selection of the Clock source for VDAC1CLK
+// CMU_VDAC1CLKCTRL_CLKSEL_EM01GRPACLK
+#ifndef SL_CLOCK_MANAGER_VDAC1CLK_SOURCE
+#define SL_CLOCK_MANAGER_VDAC1CLK_SOURCE CMU_VDAC1CLKCTRL_CLKSEL_EM01GRPACLK
+#endif
+
+//
+//
+
+#endif /* SL_CLOCK_MANAGER_TREE_CONFIG_H */
+
+// <<< end of configuration section >>>
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_core_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_core_config.h
new file mode 100644
index 000000000..5b4725ee6
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_core_config.h
@@ -0,0 +1,44 @@
+/***************************************************************************//**
+ * @file
+ * @brief sl_core Configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2023 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_CORE_CONFIG_H
+#define SL_CORE_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Core Abstraction Configuration
+
+// Enables measurement of interrupt masking time for debugging purposes.
+// Default: 0
+#define SL_CORE_DEBUG_INTERRUPTS_MASKED_TIMING 0
+//
+
+// <<< end of configuration section >>>
+#endif // SL_CORE_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_debug_swo_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_debug_swo_config.h
new file mode 100644
index 000000000..e03af281f
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_debug_swo_config.h
@@ -0,0 +1,110 @@
+/***************************************************************************//**
+ * @file
+ * @brief SWO configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2020 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_DEBUG_SWO_CONFIG_H
+#define SL_DEBUG_SWO_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// SWO Configuration
+
+// Enable Debug SWO
+// Default: 1
+#define SL_DEBUG_SWO_ENABLE 1
+
+// SWO Frequency
+// Must be 875 kHz for communication with Silicon Labs debuggers
+// Default: 875000
+#define SL_DEBUG_SWO_FREQ 875000
+
+// Enable interrupt event trace
+// Default: 0
+#define SL_DEBUG_SWO_SAMPLE_IRQ 0
+
+// Enable Program Counter samples
+// Default: 0
+#define SL_DEBUG_SWO_SAMPLE_PC 0
+
+// SWO debug sample intervals
+// <64=> 64
+// <128=> 128
+// <192=> 192
+// <256=> 256
+// <320=> 320
+// <384=> 384
+// <448=> 448
+// <512=> 512
+// <576=> 576
+// <640=> 640
+// <704=> 704
+// <768=> 768
+// <832=> 832
+// <896=> 896
+// <960=> 960
+// <1024=> 1024
+// <2048=> 2048
+// <3072=> 3072
+// <4096=> 4096
+// <5102=> 5102
+// <6144=> 6144
+// <7168=> 7168
+// <8192=> 8192
+// <9216=> 9216
+// <10240=> 10240
+// <11264=> 11264
+// <12288=> 12288
+// <13312=> 13312
+// <14336=> 14336
+// <15360=> 15360
+// Must be 64, 128, 192, [ n * 64 ], 1024, 2048, 3072, [ n * 1024 ] , 15360
+// Default: 15360
+#define SL_DEBUG_SWO_SAMPLE_INTERVAL 15360
+//
+
+// <<< end of configuration section >>>
+
+// <<< sl:start pin_tool >>>
+// SL_DEBUG
+// $[GPIO_SL_DEBUG]
+#ifndef SL_DEBUG_PERIPHERAL
+#define SL_DEBUG_PERIPHERAL GPIO
+#endif
+
+// GPIO SWV on PA03
+#ifndef SL_DEBUG_SWV_PORT
+#define SL_DEBUG_SWV_PORT SL_GPIO_PORT_A
+#endif
+#ifndef SL_DEBUG_SWV_PIN
+#define SL_DEBUG_SWV_PIN 3
+#endif
+// [GPIO_SL_DEBUG]$
+// <<< sl:end pin_tool >>>
+
+#endif // SL_DEBUG_SWO_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_device_init_dcdc_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_device_init_dcdc_config.h
new file mode 100644
index 000000000..da84ad329
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_device_init_dcdc_config.h
@@ -0,0 +1,58 @@
+/***************************************************************************//**
+ * @file
+ * @brief DEVICE_INIT_DCDC Config
+ *******************************************************************************
+ * # License
+ * Copyright 2022 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_DEVICE_INIT_DCDC_CONFIG_H
+#define SL_DEVICE_INIT_DCDC_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Enable DC/DC Converter
+//
+// Default: 1
+#define SL_DEVICE_INIT_DCDC_ENABLE 1
+
+// Set DC/DC Converter in Bypass Mode
+//
+// Default: 0
+#define SL_DEVICE_INIT_DCDC_BYPASS 0
+
+// Override for DCDC PFMX Mode Peak Current Setting
+//
+// Default: 1
+#define SL_DEVICE_INIT_DCDC_PFMX_IPKVAL_OVERRIDE 1
+
+// DCDC PFMX Mode Peak Current Setting <0-15>
+//
+// Default: DCDC_PFMXCTRL_IPKVAL_DEFAULT
+#define SL_DEVICE_INIT_DCDC_PFMX_IPKVAL 12
+
+// <<< end of configuration section >>>
+
+#endif // SL_DEVICE_INIT_DCDC_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_driver_mvp_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_driver_mvp_config.h
new file mode 100644
index 000000000..4737426fe
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_driver_mvp_config.h
@@ -0,0 +1,70 @@
+/***************************************************************************//**
+ * @file
+ * @brief MVP Driver configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2023 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+#ifndef SL_DRIVER_MVP_CONFIG_H
+#define SL_DRIVER_MVP_CONFIG_H
+
+// Use DMA to load MVP programs
+// Enable or disable DMA for loading MVP programs.
+// Default: 0
+#define SL_MVP_ENABLE_DMA 0
+
+// DMA channel to use when DMA is enabled <0-7>
+// DMA channel to use when DMA is enabled
+// Default: 0
+#define SL_MVP_DMA_CHANNEL 0
+
+// CPU power mode during MVP execution.
+// The power mode configuration controls what software should
+// do when waiting for an MVP program to finish execution.
+//
+// <0=> No sleep
+// <1=> Enter EM1
+// <2=> Yield RTOS thread
+//
+// When "No sleep" option is used the MCU core will busy-wait for the MVP
+// to finish, this is the option which provides the fastest MVP execution
+// time. The "No sleep" option can be used in a bare-metal application or
+// an application using RTOS.
+// When "Enter EM1" option is used the MCU will be put into EM1 whenever
+// the driver waits for an MVP program to complete. The "Enter EM1" option
+// is not safe to use in an application using RTOS.
+// When "Yield RTOS thread" option is used the task waiting for the MVP
+// program to complete will yield, allowing other tasks in the system to
+// run or potentially let the scheduler put the system into a sleep mode.
+// The "Yield RTOS thread" requires that the application is using RTOS.
+// Default: 0
+#define SL_MVP_POWER_MODE 0
+
+#endif /* SL_DRIVER_MVP_CONFIG_H */
+
+// <<< end of configuration section >>>
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_gatt_service_rht_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_gatt_service_rht_config.h
new file mode 100644
index 000000000..6a0dd03ec
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_gatt_service_rht_config.h
@@ -0,0 +1,51 @@
+/***************************************************************************//**
+ * @file
+ * @brief Relative Humidity and Temperature GATT Service Configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2022 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_GATT_SERVICE_RHT_CONFIG_H
+#define SL_GATT_SERVICE_RHT_CONFIG_H
+
+/***********************************************************************************************//**
+ * @addtogroup gatt_service_rht
+ * @{
+ **************************************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Dummy Relative Humidity measurement results for uninitialized sensors. <0-0xFFFF>
+// Default: 0xFFFF
+#define SL_GATT_SERVICE_RHT_RH_INVALID 0xFFFF
+
+// Dummy Temperature measurement results for uninitialized sensors. <0-0x7FFF>
+// Default: 0x7FFF
+#define SL_GATT_SERVICE_RHT_T_INVALID 0x7FFF
+// <<< end of configuration section >>>
+
+/** @} (end addtogroup gatt_service_rht) */
+#endif // SL_GATT_SERVICE_RHT_CONFIG_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_hfxo_manager_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_hfxo_manager_config.h
new file mode 100644
index 000000000..f10cba3dc
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_hfxo_manager_config.h
@@ -0,0 +1,56 @@
+/***************************************************************************//**
+ * @file
+ * @brief HFXO Manager configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2020 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+#ifndef SL_HFXO_MANAGER_CONFIG_H
+#define SL_HFXO_MANAGER_CONFIG_H
+
+// HFXO Manager Configuration
+
+// Enable custom IRQ handler for crystal HF oscillator.
+// Enable if HFXO0_IRQHandler is needed from your application.
+// The HFXO IRQ priority must not be changed as the HFXO Manager module needs it to be high priority
+// and to stay enabled through atomic sections.
+// The function sl_hfxo_manager_irq_handler() will have to be called from you custom handler if this is enabled.
+// Default: 0
+#define SL_HFXO_MANAGER_CUSTOM_HFXO_IRQ_HANDLER 0
+
+// Enable support for Sleepy Crystals.
+// If Enabled and if HFXO fails to startup due to a sleepy crystal, HFXO Manager will retry the startup with more aggressive settings
+// before falling back to the configured settings.
+// Default: 0
+#define SL_HFXO_MANAGER_SLEEPY_CRYSTAL_SUPPORT 0
+
+//
+
+#endif /* SL_HFXO_MANAGER_CONFIG_H */
+
+// <<< end of configuration section >>>
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_i2cspm_sensor_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_i2cspm_sensor_config.h
new file mode 100644
index 000000000..5be07c21e
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_i2cspm_sensor_config.h
@@ -0,0 +1,82 @@
+/***************************************************************************//**
+ * @file
+ * @brief I2CSPM Config
+ *******************************************************************************
+ * # License
+ * Copyright 2019 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_I2CSPM_SENSOR_CONFIG_H
+#define SL_I2CSPM_SENSOR_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu
+
+// I2CSPM settings
+
+// Reference clock frequency
+// Frequency in Hz of the reference clock.
+// Select 0 to use the frequency of the currently selected clock.
+// Default: 0
+#define SL_I2CSPM_SENSOR_REFERENCE_CLOCK 0
+
+// Speed mode
+// <0=> Standard mode (100kbit/s)
+// <1=> Fast mode (400kbit/s)
+// <2=> Fast mode plus (1Mbit/s)
+// Default: 0
+#define SL_I2CSPM_SENSOR_SPEED_MODE 0
+// end I2CSPM config
+
+// <<< end of configuration section >>>
+
+// <<< sl:start pin_tool >>>
+// SL_I2CSPM_SENSOR
+// $[I2C_SL_I2CSPM_SENSOR]
+#ifndef SL_I2CSPM_SENSOR_PERIPHERAL
+#define SL_I2CSPM_SENSOR_PERIPHERAL I2C1
+#endif
+#ifndef SL_I2CSPM_SENSOR_PERIPHERAL_NO
+#define SL_I2CSPM_SENSOR_PERIPHERAL_NO 1
+#endif
+
+// I2C1 SCL on PC04
+#ifndef SL_I2CSPM_SENSOR_SCL_PORT
+#define SL_I2CSPM_SENSOR_SCL_PORT SL_GPIO_PORT_C
+#endif
+#ifndef SL_I2CSPM_SENSOR_SCL_PIN
+#define SL_I2CSPM_SENSOR_SCL_PIN 4
+#endif
+
+// I2C1 SDA on PC05
+#ifndef SL_I2CSPM_SENSOR_SDA_PORT
+#define SL_I2CSPM_SENSOR_SDA_PORT SL_GPIO_PORT_C
+#endif
+#ifndef SL_I2CSPM_SENSOR_SDA_PIN
+#define SL_I2CSPM_SENSOR_SDA_PIN 5
+#endif
+// [I2C_SL_I2CSPM_SENSOR]$
+// <<< sl:end pin_tool >>>
+
+#endif // SL_I2CSPM_SENSOR_CONFIG_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_iostream_eusart_vcom_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_iostream_eusart_vcom_config.h
new file mode 100644
index 000000000..c77c1cec7
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_iostream_eusart_vcom_config.h
@@ -0,0 +1,132 @@
+/***************************************************************************//**
+ * @file
+ * @brief IOSTREAM_EUSART Config.
+ *******************************************************************************
+ * # License
+ * Copyright 2020 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_IOSTREAM_EUSART_VCOM_CONFIG_H
+#define SL_IOSTREAM_EUSART_VCOM_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// EUART settings
+
+// Enable High frequency mode
+// Default: 1
+#define SL_IOSTREAM_EUSART_VCOM_ENABLE_HIGH_FREQUENCY 1
+
+// Baud rate
+// Default: 115200
+#define SL_IOSTREAM_EUSART_VCOM_BAUDRATE 115200
+
+// Parity mode to use
+// No Parity
+// Even parity
+// Odd parity
+// Default: SL_IOSTREAM_EUSART_UART_NO_PARITY
+#define SL_IOSTREAM_EUSART_VCOM_PARITY SL_IOSTREAM_EUSART_UART_NO_PARITY
+
+// Number of stop bits to use.
+// 0.5 stop bits
+// 1 stop bits
+// 1.5 stop bits
+// 2 stop bits
+// Default: SL_IOSTREAM_EUSART_UART_STOP_BITS_1
+#define SL_IOSTREAM_EUSART_VCOM_STOP_BITS SL_IOSTREAM_EUSART_UART_STOP_BITS_1
+
+// Flow control
+// None
+// CTS
+// RTS
+// CTS/RTS
+// Software Flow control (XON/XOFF)
+// Default: SL_IOSTREAM_EUSART_UART_FLOW_CTRL_NONE
+#define SL_IOSTREAM_EUSART_VCOM_FLOW_CONTROL_TYPE SL_IOSTREAM_EUSART_UART_FLOW_CTRL_NONE
+
+// Receive buffer size
+// Default: 32
+#define SL_IOSTREAM_EUSART_VCOM_RX_BUFFER_SIZE 32
+
+// Convert \n to \r\n
+// It can be changed at runtime using the C API.
+// Default: 0
+#define SL_IOSTREAM_EUSART_VCOM_CONVERT_BY_DEFAULT_LF_TO_CRLF 0
+
+// Restrict the energy mode to allow the reception.
+// Default: 1
+// Limits the lowest energy mode the system can sleep to in order to keep the reception on. May cause higher power consumption.
+#define SL_IOSTREAM_EUSART_VCOM_RESTRICT_ENERGY_MODE_TO_ALLOW_RECEPTION 1
+
+//
+
+// <<< end of configuration section >>>
+
+// <<< sl:start pin_tool >>>
+// SL_IOSTREAM_EUSART_VCOM
+// $[EUSART_SL_IOSTREAM_EUSART_VCOM]
+#ifndef SL_IOSTREAM_EUSART_VCOM_PERIPHERAL
+#define SL_IOSTREAM_EUSART_VCOM_PERIPHERAL EUSART0
+#endif
+#ifndef SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO
+#define SL_IOSTREAM_EUSART_VCOM_PERIPHERAL_NO 0
+#endif
+
+// EUSART0 TX on PA05
+#ifndef SL_IOSTREAM_EUSART_VCOM_TX_PORT
+#define SL_IOSTREAM_EUSART_VCOM_TX_PORT SL_GPIO_PORT_A
+#endif
+#ifndef SL_IOSTREAM_EUSART_VCOM_TX_PIN
+#define SL_IOSTREAM_EUSART_VCOM_TX_PIN 5
+#endif
+
+// EUSART0 RX on PA06
+#ifndef SL_IOSTREAM_EUSART_VCOM_RX_PORT
+#define SL_IOSTREAM_EUSART_VCOM_RX_PORT SL_GPIO_PORT_A
+#endif
+#ifndef SL_IOSTREAM_EUSART_VCOM_RX_PIN
+#define SL_IOSTREAM_EUSART_VCOM_RX_PIN 6
+#endif
+
+// EUSART0 CTS on PA09
+#ifndef SL_IOSTREAM_EUSART_VCOM_CTS_PORT
+#define SL_IOSTREAM_EUSART_VCOM_CTS_PORT SL_GPIO_PORT_A
+#endif
+#ifndef SL_IOSTREAM_EUSART_VCOM_CTS_PIN
+#define SL_IOSTREAM_EUSART_VCOM_CTS_PIN 9
+#endif
+
+// EUSART0 RTS on PA08
+#ifndef SL_IOSTREAM_EUSART_VCOM_RTS_PORT
+#define SL_IOSTREAM_EUSART_VCOM_RTS_PORT SL_GPIO_PORT_A
+#endif
+#ifndef SL_IOSTREAM_EUSART_VCOM_RTS_PIN
+#define SL_IOSTREAM_EUSART_VCOM_RTS_PIN 8
+#endif
+// [EUSART_SL_IOSTREAM_EUSART_VCOM]$
+// <<< sl:end pin_tool >>>
+
+#endif
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_main_start_task_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_main_start_task_config.h
new file mode 100644
index 000000000..45ef628dd
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_main_start_task_config.h
@@ -0,0 +1,105 @@
+/***************************************************************************//**
+ * @file
+ * @brief Sleep Timer configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2023 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_MAIN_START_TASK_CONFIG_H
+#define SL_MAIN_START_TASK_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// sl_main start task settings
+
+// Size of the start task stack
+// Default: 4096
+#define SL_MAIN_START_TASK_STACK_SIZE_BYTES 4096
+
+// Enable start task priority change after initialization
+// This is useful for applications that keep the start task during the lifetime of the application.
+// Note that the priority change occurs at the end of 'sl_main_second_stage_init()' before 'app_init()' is called.
+// Default: Disabled
+#define SL_MAIN_ENABLE_START_TASK_PRIORITY_CHANGE 0
+
+// Priority that the start task will take after initialization is done.
+// Priority: low
+// Priority: low + 1
+// Priority: low + 2
+// Priority: low + 3
+// Priority: low + 4
+// Priority: low + 5
+// Priority: low + 6
+// Priority: low + 7
+// Priority: below normal
+// Priority: below normal + 1
+// Priority: below normal + 2
+// Priority: below normal + 3
+// Priority: below normal + 4
+// Priority: below normal + 5
+// Priority: below normal + 6
+// Priority: below normal + 7
+// Priority: normal
+// Priority: normal + 1
+// Priority: normal + 2
+// Priority: normal + 3
+// Priority: normal + 4
+// Priority: normal + 5
+// Priority: normal + 6
+// Priority: normal + 7
+// Priority: above normal
+// Priority: above normal + 1
+// Priority: above normal + 2
+// Priority: above normal + 3
+// Priority: above normal + 4
+// Priority: above normal + 5
+// Priority: above normal + 6
+// Priority: above normal + 7
+// Priority: high
+// Priority: high + 1
+// Priority: high + 2
+// Priority: high + 3
+// Priority: high + 4
+// Priority: high + 5
+// Priority: high + 6
+// Priority: high + 7
+// Priority: realtime
+// Priority: realtime + 1
+// Priority: realtime + 2
+// Priority: realtime + 3
+// Priority: realtime + 4
+// Priority: realtime + 5
+// Priority: realtime + 6
+// Priority: realtime + 7
+// Default: osPriorityNormal
+#define SL_MAIN_START_TASK_PRIORITY osPriorityNormal
+
+//
+//
+
+#endif /* SL_MAIN_START_TASK_CONFIG_H */
+
+// <<< end of configuration section >>>
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_mbedtls_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_mbedtls_config.h
new file mode 100644
index 000000000..956aebd54
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_mbedtls_config.h
@@ -0,0 +1,132 @@
+#ifndef SL_MBEDTLS_CONFIG_H
+#define SL_MBEDTLS_CONFIG_H
+
+// -----------------------------------------------------------------------------
+// User exposed config options
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// TLS/DTLS configuration
+
+// Complete list of ciphersuites to use, in order of preference.
+// Default: MBEDTLS_TLS_ECJPAKE_WITH_AES_128_CCM_8
+// Complete list of ciphersuites to use, in order of preference.
+// The value of this configuration should be updated for the application needs.
+#define MBEDTLS_SSL_CIPHERSUITES MBEDTLS_TLS_ECJPAKE_WITH_AES_128_CCM_8
+
+// Maximum TLS/DTLS fragment length in bytes (input).
+// Default: 768
+// The size configured here determines the size of the internal I/O
+// buffer used in mbedTLS when receiving data.
+#define SL_MBEDTLS_SSL_IN_CONTENT_LEN 768
+
+// Maximum TLS/DTLS fragment length in bytes (output).
+// Default: 768
+// The size configured here determines the size of the internal I/O
+// buffer used in mbedTLS when sending data.
+#define SL_MBEDTLS_SSL_OUT_CONTENT_LEN 768
+
+// Enable support for RFC 6066 max_fragment_length extension in SSL.
+// Default: 1
+// Enable support for RFC 6066 max_fragment_length extension in SSL.
+#define SL_MBEDTLS_SSL_MAX_FRAGMENT_LENGTH 1
+
+// Enable support for exporting key block and master secret.
+// Default: 1
+// Enable support for exporting key block and master secret.
+// This is required for certain users of TLS, e.g. EAP-TLS.
+#define SL_MBEDTLS_SSL_EXPORT_KEYS 1
+
+// Enable the PSK based ciphersuite modes in SSL / TLS.
+// Default: 0
+// Enable the PSK based ciphersuite modes in SSL / TLS.
+#define SL_MBEDTLS_KEY_EXCHANGE_PSK_ENABLED 0
+
+// Enable the ECDHE-PSK based ciphersuite modes in SSL / TLS.
+// Default: 0
+// Enable the ECDHE-PSK based ciphersuite modes in SSL / TLS.
+#define SL_MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED 0
+
+// Enable the ECDHE-ECDSA based ciphersuite modes in SSL / TLS.
+// Default: 0
+// Enable the ECDHE-ECDSA based ciphersuite modes in SSL / TLS.
+#define SL_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED 0
+
+// Enable the ECDHE-RSA based ciphersuite modes in SSL / TLS.
+// Default: 0
+// Enable the ECDHE-RSA based ciphersuite modes in SSL / TLS.
+#define SL_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED 0
+
+// Enable the ECDH-ECDSA based ciphersuite modes in SSL / TLS.
+// Default: 0
+// Enable the ECDH-ECDSA based ciphersuite modes in SSL / TLS.
+#define SL_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED 0
+
+// Enable parsing of the compressed curves.
+// Default: 0
+// Enable parsing of the compressed curves.
+#define SL_MBEDTLS_ECP_ENABLE_COMPRESSED_CURVE_PARSING 0
+
+// Assume all buffers passed to PSA functions are owned exclusively by the PSA function.
+// Default: 1
+// This option is enabled assuming all buffers passed to any PSA function reside
+// in memory that is accessible only to the PSA function during its execution.
+// This improves performance by avoiding extra buffer copies, reducing memory
+// usage and allocation overhead. However, it is NOT the most secure option and
+// should only be enabled if all buffers passed to PSA functions are exclusively
+// accessible to PSA and never shared with untrusted code.
+// This option MUST be disabled whenever buffer arguments are in memory shared
+// with an untrusted party, for example where arguments to PSA calls are passed
+// across a trust boundary, e.g. if TrustZone is enabled, and the PSA Crypto core
+// is placed in the Secure domain.
+#define SL_MBEDTLS_PSA_ASSUME_EXCLUSIVE_BUFFERS 1
+
+//
+
+// RSA configuration
+
+// Disable use of the Chinese Remainder Theorem for RSA.
+// Default: 0
+// Disable use of the Chinese Remainder Theorem for RSA private key
+// computations.
+#define SL_MBEDTLS_RSA_NO_CRT 0
+
+//
+
+// Miscellaneous configuration
+
+// Enable Silicon Labs' Mbed TLS- and PSA Crypto drivers.
+// Default: 1
+// Enable drivers for hardware acceleration (Mbed TLS and PSA Crypto) and
+// secure key handling (PSA Crypto).
+#define SL_MBEDTLS_DRIVERS_ENABLED 1
+
+//
+
+// <<< end of configuration section >>>
+
+// -----------------------------------------------------------------------------
+// Sub-files
+
+#if defined(SLI_MBEDTLS_CONFIG_AUTOGEN_OVERRIDE_FILE)
+ #include SLI_MBEDTLS_CONFIG_AUTOGEN_OVERRIDE_FILE
+#else
+ #include "sli_mbedtls_config_autogen.h"
+#endif
+
+#include "sli_mbedtls_omnipresent.h"
+
+#if SL_MBEDTLS_DRIVERS_ENABLED
+ #include "sli_mbedtls_acceleration.h"
+#endif
+
+#include "sl_mbedtls_device_config.h"
+
+// Include transformation logic to apply CMSIS-config configuration options to
+// the correct Mbed TLS / PSA Crypto options.
+#include "sli_mbedtls_config_transform_autogen.h"
+
+// Included for backward compatibility reasons.
+#include "mbedtls/build_info.h"
+
+#endif // SL_MBEDTLS_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_mbedtls_device_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_mbedtls_device_config.h
new file mode 100644
index 000000000..e286a0d91
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_mbedtls_device_config.h
@@ -0,0 +1,72 @@
+#ifndef SL_MBEDTLS_DEVICE_CONFIG_H
+#define SL_MBEDTLS_DEVICE_CONFIG_H
+
+// -----------------------------------------------------------------------------
+// User exposed config options
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Secure Engine (SE) version configuration
+
+// Support SE firmware versions older than 1.2.2 <0-1>
+// Enable software fallback for ECDH and ECC public key validation on xG21
+// devices running SE firmware versions lower than 1.2.2.
+//
+// Due to other stability concerns, it is strongly recommended to upgrade
+// these devices to the latest firmware revision instead of turning on
+// software fallback support.
+//
+// Not having fallback support will make ECDH operations, as well as PSA
+// Crypto public key import, return an error code on affected devices.
+//
+// Default: 0
+#define SL_SE_SUPPORT_FW_PRIOR_TO_1_2_2 0
+
+// Assume an SE firmware version newer than 1.2.2 <0-1>
+// For enhanced performance: if it is guaranteed that all devices on which
+// this library will run are updated to at least SE FW 1.2.2, then turning
+// on this option will remove certain fallback checks, thereby reducing the
+// amount of processing required for ECDH and public key verification
+// operations.
+// Default: 0
+#define SL_SE_ASSUME_FW_AT_LEAST_1_2_2 0
+
+// Assume an SE firmware version that is unaffected by Ed25519 errata <0-1>
+// For minimal code size and performance savings: if it is guaranteed that
+// none of the devices running this library has SE FWs in the range
+// [1.2.2, 1.2.8], then enabling this option will disable runtime version
+// checks.
+// Default: 0
+#define SL_SE_ASSUME_FW_UNAFFECTED_BY_ED25519_ERRATA 0
+
+//
+
+// <<< end of configuration section >>>
+
+// -----------------------------------------------------------------------------
+// Additional SE version related logic (DO NOT MODIFY)
+
+// SL_SE_ASSUME_FW_AT_LEAST_1_2_10 is no longer in use, however, it is kept here
+// for backwards compatibility. */
+#if defined(SL_SE_ASSUME_FW_AT_LEAST_1_2_10)
+ #undef SL_SE_ASSUME_FW_AT_LEAST_1_2_2
+ #define SL_SE_ASSUME_FW_AT_LEAST_1_2_2 1
+ #undef SL_SE_ASSUME_FW_UNAFFECTED_BY_ED25519_ERRATA
+ #define SL_SE_ASSUME_FW_UNAFFECTED_BY_ED25519_ERRATA 1
+#endif
+
+// SLI_SE_SUPPORT_FW_PRIOR_TO_1_2_2 is no longer in use, however, it is kept
+// here for backwards compatibility. */
+#if defined(SLI_SE_SUPPORT_FW_PRIOR_TO_1_2_2)
+ #undef SL_SE_SUPPORT_FW_PRIOR_TO_1_2_2
+ #define SL_SE_SUPPORT_FW_PRIOR_TO_1_2_2 1
+#endif
+
+// SLI_SE_ASSUME_FW_AT_LEAST_1_2_2 is no longer in use, however, it is kept
+// here for backwards compatibility. */
+#if defined(SLI_SE_ASSUME_FW_AT_LEAST_1_2_2)
+ #undef SL_SE_ASSUME_FW_AT_LEAST_1_2_2
+ #define SL_SE_ASSUME_FW_AT_LEAST_1_2_2 1
+#endif
+
+#endif // SL_MBEDTLS_DEVICE_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_memory_manager_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_memory_manager_config.h
new file mode 100644
index 000000000..be79e61a7
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_memory_manager_config.h
@@ -0,0 +1,61 @@
+/***************************************************************************//**
+ * @file
+ * @brief Memory Heap Allocator configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2024 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+#ifndef SL_MEMORY_MANAGER_CONFIG_H
+#define SL_MEMORY_MANAGER_CONFIG_H
+
+// Memory Manager Configuration
+
+// Minimum block allocation size
+// <32-128:8>
+// Minimum block allocation size to avoid creating a block too small while splitting up an allocated block.
+// Size expressed in bytes and can only be a multiple of 8 bytes for the proper data alignment management done by the dynamic allocator malloc() function.
+// Default: 32
+#define SL_MEMORY_MANAGER_BLOCK_ALLOCATION_MIN_SIZE (32)
+
+// Enables the statistics API.
+// Setting this configuration to 0 will make all the statistics API return 0.
+// Default: 1
+#define SL_MEMORY_MANAGER_STATISTICS_API_ENABLE 1
+
+//
+
+// <<< end of configuration section >>>
+
+// Keep this configuration outside the configuration section until the feature is ready for release.
+// Enables the heap fallback mechanism.
+// Setting this configuration to 0 will disable the fallback mechanism on DTCM and PSRAM.
+// If this configuration is disabled, the memory manager will not attempt to use alternative memory regions for allocations even if using the fallback parameters.
+// Default: 1
+#define SL_MEMORY_MANAGER_HEAP_FALLBACK_EN 1
+
+#endif /* SL_MEMORY_MANAGER_CONFIG_H */
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_memory_manager_region_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_memory_manager_region_config.h
new file mode 100644
index 000000000..b0edf476d
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_memory_manager_region_config.h
@@ -0,0 +1,51 @@
+/***************************************************************************//**
+ * @file
+ * @brief Memory Heap and stack size configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2024 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+#ifndef SL_MEMORY_MANAGER_REGION_CONFIG_H
+#define SL_MEMORY_MANAGER_REGION_CONFIG_H
+
+#include "sl_component_catalog.h"
+
+// Memory configuration
+
+// Stack size for the application.
+// Default: 1024
+// The stack size configured here will be used by the stack that the
+// application uses when coming out of a reset.
+#ifndef SL_STACK_SIZE
+#define SL_STACK_SIZE 1024
+#endif
+//
+
+// <<< end of configuration section >>>
+
+#endif /* SL_MEMORY_MANAGER_REGION_CONFIG_H */
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_mic_i2s_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_mic_i2s_config.h
new file mode 100644
index 000000000..22e017ee3
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_mic_i2s_config.h
@@ -0,0 +1,70 @@
+/***************************************************************************//**
+ * @file
+ * @brief MIC_I2S config
+ *******************************************************************************
+ * # License
+ * Copyright 2020 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_MIC_I2S_CONFIG_H
+#define SL_MIC_I2S_CONFIG_H
+
+// <<< sl:start pin_tool >>>
+// SL_MIC_I2S
+// $[USART_SL_MIC_I2S]
+#ifndef SL_MIC_I2S_PERIPHERAL
+#define SL_MIC_I2S_PERIPHERAL USART0
+#endif
+#ifndef SL_MIC_I2S_PERIPHERAL_NO
+#define SL_MIC_I2S_PERIPHERAL_NO 0
+#endif
+
+// USART0 RX on PD04
+#ifndef SL_MIC_I2S_RX_PORT
+#define SL_MIC_I2S_RX_PORT SL_GPIO_PORT_D
+#endif
+#ifndef SL_MIC_I2S_RX_PIN
+#define SL_MIC_I2S_RX_PIN 4
+#endif
+
+// USART0 CLK on PD03
+#ifndef SL_MIC_I2S_CLK_PORT
+#define SL_MIC_I2S_CLK_PORT SL_GPIO_PORT_D
+#endif
+#ifndef SL_MIC_I2S_CLK_PIN
+#define SL_MIC_I2S_CLK_PIN 3
+#endif
+
+// USART0 CS on PD05
+#ifndef SL_MIC_I2S_CS_PORT
+#define SL_MIC_I2S_CS_PORT SL_GPIO_PORT_D
+#endif
+#ifndef SL_MIC_I2S_CS_PIN
+#define SL_MIC_I2S_CS_PIN 5
+#endif
+// [USART_SL_MIC_I2S]$
+// <<< sl:end pin_tool >>>
+
+#endif // SL_MIC_I2S_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_ml_audio_feature_generation_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_ml_audio_feature_generation_config.h
new file mode 100644
index 000000000..e789b267f
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_ml_audio_feature_generation_config.h
@@ -0,0 +1,221 @@
+/***************************************************************************//**
+ * @file
+ * @brief Configuration file for Audio Frontend
+ *******************************************************************************
+ * # License
+ * Copyright 2021 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+#ifndef SL_ML_AUDIO_FEATURE_GENERATION_CONFIG_H
+#define SL_ML_AUDIO_FEATURE_GENERATION_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Audio Frontend Configuration
+
+// Audio Buffer Size <1024-16384:512>
+// Sets the length of the audio buffer in bytes. The audio buffer must
+// be large enough to store all new data between calls to
+// sl_ml_audio_feature_generation_update_features().
+// Note: Length must be a multiple of 512
+// Default: 1024
+#define SL_ML_AUDIO_FEATURE_GENERATION_AUDIO_BUFFER_SIZE 4096
+
+
+// Audio Gain
+// Scale the raw audio data from microphone by given factor
+// Default: 1
+#define SL_ML_AUDIO_FEATURE_GENERATION_AUDIO_GAIN 2
+
+// Enable Manual Frontend Configurations
+// Enable manual configuration of the Frontend
+// This may overwrite settings that are already embedded in
+// a .tflite file.
+// Default: 0
+#define SL_ML_AUDIO_FEATURE_GENERATION_MANUAL_CONFIG_ENABLE 1
+//
+
+
+// <<< end of configuration section >>>
+/*******************************************************************************
+ ******************* MANUAL FRONTEND CONFIGURATIONS ************************
+ ******************************************************************************/
+#if (SL_ML_AUDIO_FEATURE_GENERATION_MANUAL_CONFIG_ENABLE == 0)
+
+#if defined __has_include
+#if !(__has_include ("sl_tflite_micro_model_parameters.h"))
+ #error No frontend configurations were found in the model, enable manual configurations in "sl_ml_audio_feature_generation_config.h"
+#endif
+#endif
+
+#include "sl_tflite_micro_model_parameters.h"
+
+#ifdef SL_TFLITE_MODEL_FE_SAMPLE_RATE_HZ
+// Use frontend configurations from tflite model file in sl_tflite_micro_model_parameters.h
+#define SL_ML_FRONTEND_SAMPLE_RATE_HZ SL_TFLITE_MODEL_FE_SAMPLE_RATE_HZ
+#define SL_ML_FRONTEND_SAMPLE_LENGTH_MS SL_TFLITE_MODEL_FE_SAMPLE_LENGTH_MS
+#define SL_ML_FRONTEND_WINDOW_SIZE_MS SL_TFLITE_MODEL_FE_WINDOW_SIZE_MS
+#define SL_ML_FRONTEND_WINDOW_STEP_MS SL_TFLITE_MODEL_FE_WINDOW_STEP_MS
+#define SL_ML_FRONTEND_FFT_LENGTH SL_TFLITE_MODEL_FE_FFT_LENGTH
+#define SL_ML_FRONTEND_FILTERBANK_N_CHANNELS SL_TFLITE_MODEL_FE_FILTERBANK_N_CHANNELS
+#define SL_ML_FRONTEND_FILTERBANK_LOWER_BAND_LIMIT SL_TFLITE_MODEL_FE_FILTERBANK_LOWER_BAND_LIMIT
+#define SL_ML_FRONTEND_FILTERBANK_UPPER_BAND_LIMIT SL_TFLITE_MODEL_FE_FILTERBANK_UPPER_BAND_LIMIT
+#define SL_ML_FRONTEND_NOISE_REDUCTION_ENABLE SL_TFLITE_MODEL_FE_NOISE_REDUCTION_ENABLE
+#define SL_ML_FRONTEND_NOISE_REDUCTION_SMOOTHING_BITS SL_TFLITE_MODEL_FE_NOISE_REDUCTION_SMOOTHING_BITS
+#define SL_ML_FRONTEND_NOISE_REDUCTION_EVEN_SMOOTHING SL_TFLITE_MODEL_FE_NOISE_REDUCTION_EVEN_SMOOTHING
+#define SL_ML_FRONTEND_NOISE_REDUCTION_ODD_SMOOTHING SL_TFLITE_MODEL_FE_NOISE_REDUCTION_ODD_SMOOTHING
+#define SL_ML_FRONTEND_NOISE_REDUCTION_MIN_SIGNAL_REMAINING SL_TFLITE_MODEL_FE_NOISE_REDUCTION_MIN_SIGNAL_REMAINING
+#define SL_ML_FRONTEND_PCAN_ENABLE SL_TFLITE_MODEL_FE_PCAN_ENABLE
+#define SL_ML_FRONTEND_PCAN_STRENGTH SL_TFLITE_MODEL_FE_PCAN_STRENGTH
+#define SL_ML_FRONTEND_PCAN_OFFSET SL_TFLITE_MODEL_FE_PCAN_OFFSET
+#define SL_ML_FRONTEND_PCAN_GAIN_BITS SL_TFLITE_MODEL_FE_PCAN_GAIN_BITS
+#define SL_ML_FRONTEND_LOG_SCALE_ENABLE SL_TFLITE_MODEL_FE_LOG_SCALE_ENABLE
+#define SL_ML_FRONTEND_LOG_SCALE_SHIFT SL_TFLITE_MODEL_FE_LOG_SCALE_SHIFT
+#else
+#error No frontend configurations were found in the model, enable manual configurations in "sl_ml_audio_feature_generation_config.h"
+#endif // SL_TFLITE_MODEL_FE_SAMPLE_RATE
+
+#ifdef SL_TFLITE_MODEL_FE_QUANTIZE_DYNAMIC_SCALE_ENABLE
+#define SL_ML_AUDIO_FEATURE_GENERATION_QUANTIZE_DYNAMIC_SCALE_ENABLE SL_TFLITE_MODEL_FE_QUANTIZE_DYNAMIC_SCALE_ENABLE
+#endif
+
+#else // SL_ML_AUDIO_FEATURE_GENERATION_MANUAL_CONFIG_ENABLE == 1
+
+// Audio Sample Rate
+// Default: 8000
+#define SL_ML_FRONTEND_SAMPLE_RATE_HZ 16000
+
+// Length of an audio sample in milliseconds
+// This determines how much audio is used to generate a
+// single feature buffer.
+// Default: 1000
+#define SL_ML_FRONTEND_SAMPLE_LENGTH_MS 772
+
+// Window Size
+// Length of window in ms
+// Default: 30
+#define SL_ML_FRONTEND_WINDOW_SIZE_MS 32
+
+// Window Step
+// Step size in ms for next window
+// Default: 20
+#define SL_ML_FRONTEND_WINDOW_STEP_MS 10
+
+// FFT length
+// <32U=> 32
+// <64U=> 64
+// <128U=> 128
+// <256U=> 256
+// <512U=> 512
+// <1024U=> 1024
+// <2048U=> 2048
+// <4096U=> 4096
+// <8192U=> 8192
+// Specifies the length of the RFFT
+// Only supports lengths of a power of 2
+// Default: 256U
+#define SL_ML_FRONTEND_FFT_LENGTH 512U
+
+// Number of Filterbank Channels
+// Default: 32
+#define SL_ML_FRONTEND_FILTERBANK_N_CHANNELS 40
+
+// Lower Frequency Limit
+// The lowest frequency to invclude in the filterbanks
+// Default: 0.0
+#define SL_ML_FRONTEND_FILTERBANK_LOWER_BAND_LIMIT 0.0
+
+// Upper Frequency Limit
+// The highest frequency inlcuded in the filterbanks
+// Note: Must be less than or equal to Sample Rate/2
+// Default: 4000.0
+#define SL_ML_FRONTEND_FILTERBANK_UPPER_BAND_LIMIT 8000.0
+
+// Enable Noise Reduction Module
+// Default: 0
+#define SL_ML_FRONTEND_NOISE_REDUCTION_ENABLE 0
+
+// Smoothing Bits
+// Scale up signal by 2^(smoothing_bits) before reduction
+// Default: 5
+#define SL_ML_FRONTEND_NOISE_REDUCTION_SMOOTHING_BITS 5
+
+// Even Smoothing
+// Smoothing coefficient for even-numbered channels
+// Default: 0.004
+#define SL_ML_FRONTEND_NOISE_REDUCTION_EVEN_SMOOTHING 0.004
+
+// Odd Smoothing
+// Smoothing coefficient for odd-numbered channels
+// Default: 0.004
+#define SL_ML_FRONTEND_NOISE_REDUCTION_ODD_SMOOTHING 0.004
+
+// Minimum Signal Remaining
+// Fraction of signal to preserve in smoothing
+// Default: 0.05
+#define SL_ML_FRONTEND_NOISE_REDUCTION_MIN_SIGNAL_REMAINING 0.05
+//
+
+// Enable PCAN auto gain control
+// Default: 0
+#define SL_ML_FRONTEND_PCAN_ENABLE 0
+
+// PCAN Strength
+// Gain Normalization Exponent
+// Default: 0.95
+#define SL_ML_FRONTEND_PCAN_STRENGTH 0.95
+
+// PCAN Offset
+// Positive value added in the normalization denominator
+// Default: 80.0
+#define SL_ML_FRONTEND_PCAN_OFFSET 80.0
+
+// Gain bits
+// Number of fractional bits in the gain
+// Default: 21
+#define SL_ML_FRONTEND_PCAN_GAIN_BITS 21
+//
+
+// Enable Log Scaling
+// Default: 1
+#define SL_ML_FRONTEND_LOG_SCALE_ENABLE 1
+
+// Scale Shift
+// Scale filterbanks by 2^(scale shift)
+// Default: 6
+#define SL_ML_FRONTEND_LOG_SCALE_SHIFT 6
+//
+
+// Enable dynamic quantization when filling tensor with features
+// When using sl_ml_audio_feature_generation_fill_tensor(), this
+// will enable dynamic scaling of the microfrontend output before
+// quantizing the values to int8.
+// When not enabled, the fill tensor function performs a static
+// quantization.
+// Default: 0
+#define SL_ML_AUDIO_FEATURE_GENERATION_QUANTIZE_DYNAMIC_SCALE_ENABLE 1
+
+#endif // SL_ML_AUDIO_FEATURE_GENERATION_MANUAL_CONFIG_ENABLE == 0
+
+#endif // SL_ML_AUDIO_FEATURE_GENERATION_CONFIG_H
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_mx25_flash_shutdown_eusart_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_mx25_flash_shutdown_eusart_config.h
new file mode 100644
index 000000000..791a00a6f
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_mx25_flash_shutdown_eusart_config.h
@@ -0,0 +1,67 @@
+/***************************************************************************//**
+ * @file
+ * @brief SL_MX25_FLASH_SHUTDOWN_USART Config
+ *******************************************************************************
+ * # License
+ * Copyright 2020 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_MX25_FLASH_SHUTDOWN_CONFIG_H
+#define SL_MX25_FLASH_SHUTDOWN_CONFIG_H
+
+// <<< sl:start pin_tool >>>
+// {eusart signal=TX,RX,SCLK} SL_MX25_FLASH_SHUTDOWN
+// [EUSART_SL_MX25_FLASH_SHUTDOWN]
+#define SL_MX25_FLASH_SHUTDOWN_PERIPHERAL EUSART1
+#define SL_MX25_FLASH_SHUTDOWN_PERIPHERAL_NO 1
+
+// EUSART1 TX on PC03
+#define SL_MX25_FLASH_SHUTDOWN_TX_PORT SL_GPIO_PORT_C
+#define SL_MX25_FLASH_SHUTDOWN_TX_PIN 3
+
+// EUSART1 RX on PC02
+#define SL_MX25_FLASH_SHUTDOWN_RX_PORT SL_GPIO_PORT_C
+#define SL_MX25_FLASH_SHUTDOWN_RX_PIN 2
+
+// EUSART1 SCLK on PC01
+#define SL_MX25_FLASH_SHUTDOWN_SCLK_PORT SL_GPIO_PORT_C
+#define SL_MX25_FLASH_SHUTDOWN_SCLK_PIN 1
+
+// [EUSART_SL_MX25_FLASH_SHUTDOWN]
+
+// SL_MX25_FLASH_SHUTDOWN_CS
+
+// $[GPIO_SL_MX25_FLASH_SHUTDOWN_CS]
+#ifndef SL_MX25_FLASH_SHUTDOWN_CS_PORT
+#define SL_MX25_FLASH_SHUTDOWN_CS_PORT SL_GPIO_PORT_A
+#endif
+#ifndef SL_MX25_FLASH_SHUTDOWN_CS_PIN
+#define SL_MX25_FLASH_SHUTDOWN_CS_PIN 7
+#endif
+// [GPIO_SL_MX25_FLASH_SHUTDOWN_CS]$
+
+// <<< sl:end pin_tool >>>
+
+#endif // SL_MX25_FLASH_SHUTDOWN_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_nn_mvp_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_nn_mvp_config.h
new file mode 100644
index 000000000..11ca9e3a5
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_nn_mvp_config.h
@@ -0,0 +1,51 @@
+/***************************************************************************//**
+ * @file
+ * @brief MVP configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2023 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+#ifndef SL_NN_MVP_CONFIG_H
+#define SL_NN_MVP_CONFIG_H
+
+// Enable additional speed optimizations for MVP operations
+// By enabling this, the MVP will attempt to optimize select operations
+// to run faster. (The configuration value is a bitmask of options).
+//
+// <0=> Default
+// <1=> Optimize Conv2D with increased RAM usage to store intermediate values
+// <2=> Reduce numerical accuracy for Average pooling with large filters
+// <0xFFFFFFFF=> Enable all optimizations
+//
+// Note that RAM usage option may lead to greatly increased RAM usage.
+// Default: 0
+#define SL_MVP_OPTIMIZE_SPEED 1
+
+#endif /* SL_NN_MVP_CONFIG_H */
+
+// <<< end of configuration section >>>
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_power_manager_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_power_manager_config.h
new file mode 100644
index 000000000..291b0a59c
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_power_manager_config.h
@@ -0,0 +1,100 @@
+/***************************************************************************//**
+ * @file
+ * @brief Power Manager configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2020 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+#ifndef SL_POWER_MANAGER_CONFIG_H
+#define SL_POWER_MANAGER_CONFIG_H
+
+// Power Manager Configuration
+
+// Enable custom IRQ handler for external HF oscillator.
+// Enable if CMU_IRQHandler/HFXO0_IRQHandler is needed from your application.
+// The function sl_power_manager_irq_handler() will have to be called from your custom handler if this is enabled.
+// Default: 0
+#ifndef SL_POWER_MANAGER_CUSTOM_HF_OSCILLATOR_IRQ_HANDLER
+#define SL_POWER_MANAGER_CUSTOM_HF_OSCILLATOR_IRQ_HANDLER 0
+#endif
+
+// Enable fast wakeup (disable voltage scaling in EM2/3 mode)
+// Enable or disable voltage scaling in EM2/3 modes (when available). This decreases wakeup time by about 30 us.
+// Deprecated. It is replaced by the function sl_power_manager_em23_voltage_scaling_enable_fast_wakeup()
+// Default: 0
+#ifndef SL_POWER_MANAGER_CONFIG_VOLTAGE_SCALING_FAST_WAKEUP
+#define SL_POWER_MANAGER_CONFIG_VOLTAGE_SCALING_FAST_WAKEUP 0
+#endif
+
+// Enable voltage scaling in EM0 and EM1 mode.
+// Enable or disable voltage scaling in EM0/1 modes. With this config enabled, the voltage
+// scaling will be configured at the lowest possible level based on the system clock.
+// Default: 0
+#ifndef SL_POWER_MANAGER_ENABLE_EM01_VOLTAGE_SCALING
+#define SL_POWER_MANAGER_ENABLE_EM01_VOLTAGE_SCALING 0
+#endif
+
+// Enable debugging feature
+// Enable or disable debugging features (trace the different modules that have requirements).
+// Default: 0
+#ifndef SL_POWER_MANAGER_DEBUG
+#define SL_POWER_MANAGER_DEBUG 0
+#endif
+
+// Maximum numbers of requirements that can be logged
+// Default: 10
+#ifndef SL_POWER_MANAGER_DEBUG_POOL_SIZE
+#define SL_POWER_MANAGER_DEBUG_POOL_SIZE 10
+#endif
+//
+
+// Pin retention mode
+//
+// No retention
+// Retention through EM4
+// Retention through EM4 and wakeup
+// power_manager_pin_retention_disable
+#ifndef SL_POWER_MANAGER_INIT_EMU_EM4_PIN_RETENTION_MODE
+#define SL_POWER_MANAGER_INIT_EMU_EM4_PIN_RETENTION_MODE EMU_EM4CTRL_EM4IORETMODE_DISABLE
+#endif
+
+// Enable EM2 debugging feature
+// Enable or disable debugging features.
+// Force PD0B/PD0D to stay on during EM2 entry. This allows the debugger to remain connected in EM2 and EM3.
+// Enabling debug connectivity results in an increased power consumption in EM2/EM3.
+// Default: 1
+#ifndef SL_POWER_MANAGER_INIT_EMU_EM2_DEBUG_ENABLE
+#define SL_POWER_MANAGER_INIT_EMU_EM2_DEBUG_ENABLE 1
+#endif
+//
+
+//
+
+#endif /* SL_POWER_MANAGER_CONFIG_H */
+
+// <<< end of configuration section >>>
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_rail_util_pa_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_rail_util_pa_config.h
new file mode 100644
index 000000000..6dbea4944
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_rail_util_pa_config.h
@@ -0,0 +1,83 @@
+/***************************************************************************//**
+ * @file
+ * @brief Power Amplifier configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2023 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_RAIL_UTIL_PA_CONFIG_H
+#define SL_RAIL_UTIL_PA_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// PA Configuration
+// Initial PA Power (deci-dBm, 100 = 10.0 dBm)
+// Default: 100
+#define SL_RAIL_UTIL_PA_POWER_DECI_DBM 100
+
+// PA Ramp Time (microseconds)
+// <0-65535:1>
+// Default: 10
+#define SL_RAIL_UTIL_PA_RAMP_TIME_US 10
+
+// Milli-volts on PA supply pin (PA_VDD)
+// <0-65535:1>
+// Default: 3300
+#define SL_RAIL_UTIL_PA_VOLTAGE_MV 3300
+
+// 2.4 GHz PA Selection
+// Highest Possible
+// High Power (chip-specific)
+// Low Power
+// Disable
+// Default: RAIL_TX_POWER_MODE_2P4GIG_HIGHEST
+#define SL_RAIL_UTIL_PA_SELECTION_2P4GHZ RAIL_TX_POWER_MODE_2P4GIG_HIGHEST
+
+// Sub-GHz PA Selection
+// Disable
+// Default: RAIL_TX_POWER_MODE_NONE
+#define SL_RAIL_UTIL_PA_SELECTION_SUBGHZ RAIL_TX_POWER_MODE_NONE
+//
+
+// PA Curve Configuration
+// Header file containing custom PA curves
+// Default: "pa_curves_efr32.h"
+#define SL_RAIL_UTIL_PA_CURVE_HEADER "pa_curves_efr32.h"
+
+// Header file containing PA curve types
+// Default: "pa_curve_types_efr32.h"
+#define SL_RAIL_UTIL_PA_CURVE_TYPES "pa_curve_types_efr32.h"
+//
+
+// PA Calibration Configuration
+// Enable PA Calibration
+// Default: 1
+#define SL_RAIL_UTIL_PA_CALIBRATION_ENABLE 1
+//
+
+// <<< end of configuration section >>>
+
+#endif // SL_RAIL_UTIL_PA_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_rail_util_pa_tables_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_rail_util_pa_tables_config.h
new file mode 100644
index 000000000..c2b0b9e78
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_rail_util_pa_tables_config.h
@@ -0,0 +1,49 @@
+/***************************************************************************//**
+ * @file
+ * @brief PA Tables configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2025 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_RAIL_UTIL_PA_TABLES_CONFIG_H
+#define SL_RAIL_UTIL_PA_TABLES_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// PA Table Configuration
+// PA Table Selection
+// <"sl_rail_util_pa_dbm_powersetting_mapping_table_10dbm.h"=> 10dBm PA powersetting mapping table
+// <"sl_rail_util_pa_dbm_powersetting_mapping_table_0dbm.h"=> 0dBm PA powersetting mapping table
+// <"sl_rail_util_pa_dbm_powersetting_mapping_table_automode_0_10dbm.h"=> 0dBm-10dBm automode PA powersetting mapping table
+// Default: "sl_rail_util_pa_dbm_powersetting_mapping_table_automode_0_10dbm.h"
+#define SL_RAIL_UTIL_PA_TABLE_HEADER "sl_rail_util_pa_dbm_powersetting_mapping_table_automode_0_10dbm.h"
+//
+
+// <<< end of configuration section >>>
+
+#include SL_RAIL_UTIL_PA_TABLE_HEADER
+
+#endif // SL_RAIL_UTIL_PA_TABLES_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_rail_util_power_manager_init_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_rail_util_power_manager_init_config.h
new file mode 100644
index 000000000..03a1dfd0b
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_rail_util_power_manager_init_config.h
@@ -0,0 +1,44 @@
+/***************************************************************************//**
+ * @file
+ * @brief RAIL power manager configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2020 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_RAIL_UTIL_POWER_MANAGER_INIT_CONFIG_H
+#define SL_RAIL_UTIL_POWER_MANAGER_INIT_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// RAIL power manager configuration
+
+// Enable RAIL power manager initialization
+// Default: 1
+#define SL_RAIL_UTIL_RAIL_POWER_MANAGER_INIT 1
+
+//
+// <<< end of configuration section >>>
+#endif // SL_RAIL_UTIL_POWER_MANAGER_INIT_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_rail_util_sequencer_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_rail_util_sequencer_config.h
new file mode 100644
index 000000000..56e6a16f3
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_rail_util_sequencer_config.h
@@ -0,0 +1,46 @@
+/***************************************************************************//**
+ * @file
+ * @brief
+ *******************************************************************************
+ * # License
+ * Copyright 2023 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_RAIL_UTIL_SEQUENCER_H
+#define SL_RAIL_UTIL_SEQUENCER_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define SL_RAIL_UTIL_SEQUENCER_RUNTIME_IMAGE_SELECTION 0
+
+#define SL_RAIL_UTIL_SEQUENCER_IMAGE RAIL_SEQ_IMAGE_PA_10_DBM
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // SL_RAIL_UTIL_SEQUENCER_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_simple_led_led0_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_simple_led_led0_config.h
new file mode 100644
index 000000000..55e287aa0
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_simple_led_led0_config.h
@@ -0,0 +1,60 @@
+/***************************************************************************//**
+ * @file
+ * @brief Simple Led Driver Configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2019 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_SIMPLE_LED_LED0_CONFIG_H
+#define SL_SIMPLE_LED_LED0_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Simple LED configuration
+//
+// Active low
+// Active high
+// Default: SL_SIMPLE_LED_POLARITY_ACTIVE_HIGH
+#define SL_SIMPLE_LED_LED0_POLARITY SL_SIMPLE_LED_POLARITY_ACTIVE_LOW
+// end led configuration
+
+// <<< end of configuration section >>>
+
+// <<< sl:start pin_tool >>>
+
+// SL_SIMPLE_LED_LED0
+// $[GPIO_SL_SIMPLE_LED_LED0]
+#ifndef SL_SIMPLE_LED_LED0_PORT
+#define SL_SIMPLE_LED_LED0_PORT SL_GPIO_PORT_D
+#endif
+#ifndef SL_SIMPLE_LED_LED0_PIN
+#define SL_SIMPLE_LED_LED0_PIN 7
+#endif
+// [GPIO_SL_SIMPLE_LED_LED0]$
+
+// <<< sl:end pin_tool >>>
+
+#endif // SL_SIMPLE_LED_LED0_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_simple_led_led1_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_simple_led_led1_config.h
new file mode 100644
index 000000000..c9e67dd69
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_simple_led_led1_config.h
@@ -0,0 +1,60 @@
+/***************************************************************************//**
+ * @file
+ * @brief Simple Led Driver Configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2019 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_SIMPLE_LED_LED1_CONFIG_H
+#define SL_SIMPLE_LED_LED1_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Simple LED configuration
+//
+// Active low
+// Active high
+// Default: SL_SIMPLE_LED_POLARITY_ACTIVE_HIGH
+#define SL_SIMPLE_LED_LED1_POLARITY SL_SIMPLE_LED_POLARITY_ACTIVE_LOW
+// end led configuration
+
+// <<< end of configuration section >>>
+
+// <<< sl:start pin_tool >>>
+
+// SL_SIMPLE_LED_LED1
+// $[GPIO_SL_SIMPLE_LED_LED1]
+#ifndef SL_SIMPLE_LED_LED1_PORT
+#define SL_SIMPLE_LED_LED1_PORT SL_GPIO_PORT_A
+#endif
+#ifndef SL_SIMPLE_LED_LED1_PIN
+#define SL_SIMPLE_LED_LED1_PIN 4
+#endif
+// [GPIO_SL_SIMPLE_LED_LED1]$
+
+// <<< sl:end pin_tool >>>
+
+#endif // SL_SIMPLE_LED_LED1_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_simple_led_led2_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_simple_led_led2_config.h
new file mode 100644
index 000000000..10cecca37
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_simple_led_led2_config.h
@@ -0,0 +1,60 @@
+/***************************************************************************//**
+ * @file
+ * @brief Simple Led Driver Configuration
+ *******************************************************************************
+ * # License
+ * Copyright 2019 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+#ifndef SL_SIMPLE_LED_LED2_CONFIG_H
+#define SL_SIMPLE_LED_LED2_CONFIG_H
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+// Simple LED configuration
+//
+// Active low
+// Active high
+// Default: SL_SIMPLE_LED_POLARITY_ACTIVE_HIGH
+#define SL_SIMPLE_LED_LED2_POLARITY SL_SIMPLE_LED_POLARITY_ACTIVE_LOW
+// end led configuration
+
+// <<< end of configuration section >>>
+
+// <<< sl:start pin_tool >>>
+
+// SL_SIMPLE_LED_LED2
+// $[GPIO_SL_SIMPLE_LED_LED2]
+#ifndef SL_SIMPLE_LED_LED2_PORT
+#define SL_SIMPLE_LED_LED2_PORT SL_GPIO_PORT_B
+#endif
+#ifndef SL_SIMPLE_LED_LED2_PIN
+#define SL_SIMPLE_LED_LED2_PIN 0
+#endif
+// [GPIO_SL_SIMPLE_LED_LED2]$
+
+// <<< sl:end pin_tool >>>
+
+#endif // SL_SIMPLE_LED_LED2_CONFIG_H
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_sleeptimer_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_sleeptimer_config.h
new file mode 100644
index 000000000..bba646d65
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_sleeptimer_config.h
@@ -0,0 +1,82 @@
+/***************************************************************************//**
+ * @file
+ * @brief Sleep Timer configuration file.
+ *******************************************************************************
+ * # License
+ * Copyright 2020 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+#ifndef SL_SLEEPTIMER_CONFIG_H
+#define SL_SLEEPTIMER_CONFIG_H
+
+#define SL_SLEEPTIMER_PERIPHERAL_DEFAULT 0
+#define SL_SLEEPTIMER_PERIPHERAL_RTCC 1
+#define SL_SLEEPTIMER_PERIPHERAL_PRORTC 2
+#define SL_SLEEPTIMER_PERIPHERAL_RTC 3
+#define SL_SLEEPTIMER_PERIPHERAL_SYSRTC 4
+#define SL_SLEEPTIMER_PERIPHERAL_BURTC 5
+#define SL_SLEEPTIMER_PERIPHERAL_WTIMER 6
+#define SL_SLEEPTIMER_PERIPHERAL_TIMER 7
+
+// Timer Peripheral Used by Sleeptimer
+// Default (auto select)
+// RTCC
+// Radio internal RTC (PRORTC)
+// RTC
+// SYSRTC
+// Back-Up RTC (BURTC)
+// WTIMER
+// TIMER
+// Selection of the Timer Peripheral Used by the Sleeptimer
+#define SL_SLEEPTIMER_PERIPHERAL SL_SLEEPTIMER_PERIPHERAL_DEFAULT
+
+// TIMER/WTIMER Instance Used by Sleeptimer (not applicable for other peripherals)
+// Make sure TIMER instance size is 32bits. Check datasheet for 32bits TIMERs.
+// Default: 0
+#define SL_SLEEPTIMER_TIMER_INSTANCE 0
+
+// Enable wallclock functionality
+// Enable or disable wallclock functionalities (get_time, get_date, etc).
+// Default: 0
+#define SL_SLEEPTIMER_WALLCLOCK_CONFIG 0
+
+// Timer frequency divider (not applicable for WTIMER/TIMER)
+// WTIMER/TIMER peripherals are always prescaled to 1024.
+// Default: 1
+#define SL_SLEEPTIMER_FREQ_DIVIDER 1
+
+// If Radio internal RTC (PRORTC) HAL is used, determines if it owns the IRQ handler. Enable, if no wireless stack is used.
+// Default: 0
+#define SL_SLEEPTIMER_PRORTC_HAL_OWNS_IRQ_HANDLER 0
+
+// Enable DEBUGRUN functionality on hardware RTC.
+// Default: 0
+#define SL_SLEEPTIMER_DEBUGRUN 0
+
+#endif /* SLEEPTIMER_CONFIG_H */
+
+// <<< end of configuration section >>>
\ No newline at end of file
diff --git a/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_tflite_micro_config.h b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_tflite_micro_config.h
new file mode 100644
index 000000000..388d82262
--- /dev/null
+++ b/application/AuraSense/firmware/aura-baby-monitor-soc/config/sl_tflite_micro_config.h
@@ -0,0 +1,66 @@
+/***************************************************************************//**
+ * @file
+ * @brief Configuration file for TensorFlow Lite Micro.
+ *******************************************************************************
+ * # License
+ * Copyright 2021 Silicon Laboratories Inc. www.silabs.com
+ *******************************************************************************
+ *
+ * SPDX-License-Identifier: Zlib
+ *
+ * The licensor of this software is Silicon Laboratories Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ *
+ ******************************************************************************/
+
+// <<< Use Configuration Wizard in Context Menu >>>
+
+#ifndef SL_TFLITE_MICRO_CONFIG_H
+#define SL_TFLITE_MICRO_CONFIG_H
+
+/*******************************************************************************
+ ****************************** DEFINES ************************************
+ ******************************************************************************/
+
+// Automatically initialize model
+// If this is enabled, TensorFlow Lite for Microcontrollers will be
+// initalized using metadata from the flatbuffer model in the
+// configuration folder.
+// This includes instantiating an interpreter based on the model
+// operations and allocating memory required for the tensors. Modify
+// the memory allocation size below.
+// Default: 1
+#define SL_TFLITE_MICRO_INTERPRETER_INIT_ENABLE (1)
+
+// Tensor Arena Size
+// TensorFlow Lite for Microcontrollers requires a certain amount of
+// preallocated working memory for input, output and intermediate arrays.
+// The memory requirement varies between models, and can be found by trial
+// and error. Alternatively, you can set this value to -1,
+// then the arena size will be automatically inferred upon model initialization.
+// Note: Models provided by the MLTK (Silicon Labs Machine Learning Toolkit)
+// have a pre-configured arena size associated with them. Changing this
+// configuration to a non-zero value will overwrite any pre-configured value
+//