diff --git a/.github/workflows/angular-demos.yml b/.github/workflows/angular-demos.yml
index c23dfe2a8..b87c63974 100644
--- a/.github/workflows/angular-demos.yml
+++ b/.github/workflows/angular-demos.yml
@@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
- node-version: [14.x, 16.x, 18.x, 20.x]
+ node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/angular.yml b/.github/workflows/angular.yml
index 629df7594..7d286e2ed 100644
--- a/.github/workflows/angular.yml
+++ b/.github/workflows/angular.yml
@@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
- node-version: [14.x, 16.x, 18.x, 20.x]
+ node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/dotnet-demos.yml b/.github/workflows/dotnet-demos.yml
index 47662081f..7e1dba362 100644
--- a/.github/workflows/dotnet-demos.yml
+++ b/.github/workflows/dotnet-demos.yml
@@ -29,10 +29,13 @@ jobs:
include:
- os: ubuntu-latest
platform: linux
+ nuget-path: ~/.nuget/NuGet/local-nuget
- os: windows-latest
platform: windows
+ nuget-path: ~/AppData/Roaming/NuGet/local-nuget
- os: macos-latest
platform: mac
+ nuget-path: ~/.nuget/NuGet/local-nuget
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml
index 9e831788a..32043c35e 100644
--- a/.github/workflows/dotnet.yml
+++ b/.github/workflows/dotnet.yml
@@ -53,6 +53,12 @@ jobs:
- dotnet-version: 6.0.x
binding-framework: net6.0
test-framework: net6.0
+ - os: ubuntu-latest
+ nuget-path: ~/.nuget/NuGet/local-nuget
+ - os: macos-latest
+ nuget-path: ~/.nuget/NuGet/local-nuget
+ - os: windows-latest
+ nuget-path: ~/AppData/Roaming/NuGet/local-nuget
steps:
- name: Checkout repository and submodules
diff --git a/.github/workflows/go-demos.yml b/.github/workflows/go-demos.yml
index 35be0903b..90af7ecdf 100644
--- a/.github/workflows/go-demos.yml
+++ b/.github/workflows/go-demos.yml
@@ -25,13 +25,19 @@ jobs:
strategy:
matrix:
- go: [ '1.16', '1.17', '1.18' ]
+ go: [ '1.16', '1.17', '1.18', '1.19', '1.20', 'stable' ]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
+ - name: Set up Mingw
+ uses: egor-tensin/setup-mingw@v2
+ if: ${{ (matrix.os == 'windows-latest') && (matrix.go != 'stable') && (matrix.go < 1.20) }}
+ with:
+ version: 11.2.0
+
- name: Setup go
uses: actions/setup-go@v4
with:
@@ -46,13 +52,19 @@ jobs:
strategy:
matrix:
- go: [ '1.16', '1.17', '1.18' ]
+ go: [ '1.16', '1.17', '1.18', '1.19', '1.20', 'stable' ]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
+ - name: Set up Mingw
+ uses: egor-tensin/setup-mingw@v2
+ if: ${{ (matrix.os == 'windows-latest') && (matrix.go != 'stable') && (matrix.go < 1.20) }}
+ with:
+ version: 11.2.0
+
- name: Setup go
uses: actions/setup-go@v4
with:
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 87482e287..56a012d31 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -35,13 +35,19 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
- go: [ '1.16', '1.17', '1.18' ]
+ go: [ '1.16', '1.17', '1.18', '1.19', '1.20', 'stable' ]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
+ - name: Set up Mingw
+ uses: egor-tensin/setup-mingw@v2
+ if: ${{ (matrix.os == 'windows-latest') && (matrix.go != 'stable') && (matrix.go < 1.20) }}
+ with:
+ version: 11.2.0
+
- name: Setup go
uses: actions/setup-go@v4
with:
diff --git a/.github/workflows/nodejs-codestyle.yml b/.github/workflows/nodejs-codestyle.yml
index a898f7f18..e3266dc57 100644
--- a/.github/workflows/nodejs-codestyle.yml
+++ b/.github/workflows/nodejs-codestyle.yml
@@ -29,9 +29,6 @@ jobs:
with:
node-version: lts/*
- - name: Pre-build dependencies
- run: npm install yarn
-
- name: Run Binding Linter
run: yarn && yarn lint
working-directory: sdk/nodejs
diff --git a/.github/workflows/nodejs-demos.yml b/.github/workflows/nodejs-demos.yml
index 3de827176..6369f1a17 100644
--- a/.github/workflows/nodejs-demos.yml
+++ b/.github/workflows/nodejs-demos.yml
@@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
- node-version: [14.x, 16.x, 18.x, 20.x]
+ node-version: [16.x, 18.x, 20.x]
include:
- os: ubuntu-latest
platform: linux
@@ -46,9 +46,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- - name: Pre-build dependencies
- run: npm install yarn
-
- name: Install dependencies
run: yarn install
@@ -63,6 +60,7 @@ jobs:
runs-on: ${{ matrix.machine }}
strategy:
+ fail-fast: false
matrix:
machine: [rpi2, rpi3-32, rpi3-64, rpi4-32, rpi4-64, jetson, beaglebone]
include:
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
index 5ddc7be57..0193415af 100644
--- a/.github/workflows/nodejs.yml
+++ b/.github/workflows/nodejs.yml
@@ -34,7 +34,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
- node-version: [14.x, 16.x, 18.x, 20.x]
+ node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
@@ -46,27 +46,17 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- - name: Local Porcupine dependency
- run: yarn && yarn build
- working-directory: resources/porcupine/binding/nodejs
-
- - name: Local Rhino dependency
- run: yarn && yarn build
- working-directory: resources/rhino/binding/nodejs
-
- - name: Pre-build dependencies
- run: npm install yarn
-
- name: Install dependencies
run: yarn install
- name: Test
- run: yarn test --access_key=${{secrets.PV_VALID_ACCESS_KEY}}
+ run: yarn test --access_key=${{secrets.PV_VALID_ACCESS_KEY}}
build-self-hosted:
runs-on: ${{ matrix.machine }}
strategy:
+ fail-fast: false
matrix:
machine: [rpi2, rpi3-32, rpi3-64, rpi4-32, rpi4-64, jetson, beaglebone]
@@ -75,17 +65,6 @@ jobs:
with:
submodules: recursive
- - name: Local Porcupine dependency
- run: yarn && yarn build
- working-directory: resources/porcupine/binding/nodejs
-
- - name: Local Rhino dependency
- run: yarn && yarn build
- working-directory: resources/rhino/binding/nodejs
-
- - name: Pre-build dependencies
- run: npm install --global yarn
-
- name: Install dependencies
run: yarn install
diff --git a/.github/workflows/python-demos.yml b/.github/workflows/python-demos.yml
index 447747af3..e2b87b3d3 100644
--- a/.github/workflows/python-demos.yml
+++ b/.github/workflows/python-demos.yml
@@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
- python-version: ['3.7', '3.8', '3.9', '3.10']
+ python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
include:
- os: ubuntu-latest
platform: linux
@@ -46,7 +46,9 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Pre-build dependencies
- run: python -m pip install --upgrade pip
+ run: |
+ python -m pip install --upgrade pip
+ pip install wheel
- name: Install dependencies
run: pip install -r requirements.txt
@@ -85,6 +87,11 @@ jobs:
with:
submodules: recursive
+ - name: Pre-build dependencies
+ run: |
+ python3 -m pip install --upgrade pip
+ pip3 install wheel
+
- name: Install dependencies
run: pip3 install -r requirements.txt
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index ed7546e90..fd5776788 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -34,7 +34,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
- python-version: ['3.7', '3.8', '3.9', '3.10']
+ python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/react-demos.yml b/.github/workflows/react-demos.yml
index 090949cff..091c00af2 100644
--- a/.github/workflows/react-demos.yml
+++ b/.github/workflows/react-demos.yml
@@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
- node-version: [14.x, 16.x, 18.x, 20.x]
+ node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/react-native-demos.yml b/.github/workflows/react-native-demos.yml
index febf20385..93b58c83e 100644
--- a/.github/workflows/react-native-demos.yml
+++ b/.github/workflows/react-native-demos.yml
@@ -41,8 +41,28 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- - name: Pre-build dependencies
- run: npm install yarn
+ # ************ REMOVE AFTER RELEASE *****************
+ - name: Build and package ppn
+ working-directory: resources/porcupine/binding/react-native
+ run: yarn && yarn pkg
+
+ - name: Add to demo
+ run: yarn add ../../resources/porcupine/binding/react-native/pkg/picovoice-porcupine-react-native-3.0.0.tgz
+
+ - name: Build and package rhn
+ working-directory: resources/rhino/binding/react-native
+ run: yarn && yarn pkg
+
+ - name: Add to demo
+ run: yarn add ../../resources/rhino/binding/react-native/pkg/picovoice-rhino-react-native-3.0.0.tgz
+
+ - name: Build and package pv
+ working-directory: sdk/react-native
+ run: yarn && yarn pkg
+
+ - name: Add to demo
+ run: yarn add ../../sdk/react-native/pkg/picovoice-picovoice-react-native-3.0.0.tgz
+ # ***************************************************
- name: Install dependencies
run: yarn android-install
@@ -71,8 +91,28 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- - name: Pre-build dependencies
- run: npm install yarn
+ # ************ REMOVE AFTER RELEASE *****************
+ - name: Build and package ppn
+ working-directory: resources/porcupine/binding/react-native
+ run: yarn && yarn pkg
+
+ - name: Add to demo
+ run: yarn add ../../resources/porcupine/binding/react-native/pkg/picovoice-porcupine-react-native-3.0.0.tgz
+
+ - name: Build and package rhn
+ working-directory: resources/rhino/binding/react-native
+ run: yarn && yarn pkg
+
+ - name: Add to demo
+ run: yarn add ../../resources/rhino/binding/react-native/pkg/picovoice-rhino-react-native-3.0.0.tgz
+
+ - name: Build and package pv
+ working-directory: sdk/react-native
+ run: yarn && yarn pkg
+
+ - name: Add to demo
+ run: yarn add ../../sdk/react-native/pkg/picovoice-picovoice-react-native-3.0.0.tgz
+ # ***************************************************
- name: Install dependencies
run: yarn ios-install
@@ -110,8 +150,28 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- - name: Pre-build dependencies
- run: npm install yarn --legacy-peer-deps
+ # ************ REMOVE AFTER RELEASE *****************
+ - name: Build and package ppn
+ working-directory: resources/porcupine/binding/react-native
+ run: yarn && yarn pkg
+
+ - name: Add to demo
+ run: yarn add ../../resources/porcupine/binding/react-native/pkg/picovoice-porcupine-react-native-3.0.0.tgz
+
+ - name: Build and package rhn
+ working-directory: resources/rhino/binding/react-native
+ run: yarn && yarn pkg
+
+ - name: Add to demo
+ run: yarn add ../../resources/rhino/binding/react-native/pkg/picovoice-rhino-react-native-3.0.0.tgz
+
+ - name: Build and package pv
+ working-directory: sdk/react-native
+ run: yarn && yarn pkg
+
+ - name: Add to demo
+ run: yarn add ../../sdk/react-native/pkg/picovoice-picovoice-react-native-3.0.0.tgz
+ # ***************************************************
- name: Install dependencies
run: yarn android-install
@@ -143,8 +203,28 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- - name: Pre-build dependencies
- run: npm install yarn --legacy-peer-deps
+ # ************ REMOVE AFTER RELEASE *****************
+ - name: Build and package ppn
+ working-directory: resources/porcupine/binding/react-native
+ run: yarn && yarn pkg
+
+ - name: Add to demo
+ run: yarn add ../../resources/porcupine/binding/react-native/pkg/picovoice-porcupine-react-native-3.0.0.tgz
+
+ - name: Build and package rhn
+ working-directory: resources/rhino/binding/react-native
+ run: yarn && yarn pkg
+
+ - name: Add to demo
+ run: yarn add ../../resources/rhino/binding/react-native/pkg/picovoice-rhino-react-native-3.0.0.tgz
+
+ - name: Build and package pv
+ working-directory: sdk/react-native
+ run: yarn && yarn pkg
+
+ - name: Add to demo
+ run: yarn add ../../sdk/react-native/pkg/picovoice-picovoice-react-native-3.0.0.tgz
+ # ***************************************************
- name: Install dependencies
run: yarn ios-install
diff --git a/.github/workflows/react.yml b/.github/workflows/react.yml
index b8ad46376..b1abcdd60 100644
--- a/.github/workflows/react.yml
+++ b/.github/workflows/react.yml
@@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
- node-version: [14.x, 16.x, 18.x, 20.x]
+ node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/rust-codestyle.yml b/.github/workflows/rust-codestyle.yml
index b01ea13fd..3b2ab593a 100644
--- a/.github/workflows/rust-codestyle.yml
+++ b/.github/workflows/rust-codestyle.yml
@@ -41,14 +41,6 @@ jobs:
toolchain: stable
override: true
- - name: Local Porcupine dependency
- run: ./copy.sh
- working-directory: resources/porcupine/binding/rust
-
- - name: Local Rhino dependency
- run: ./copy.sh
- working-directory: resources/rhino/binding/rust
-
- name: Run clippy
run: cargo clippy -- -D warnings
working-directory: sdk/rust
@@ -93,6 +85,10 @@ jobs:
toolchain: stable
override: true
+ - name: Local dependency
+ run: cargo build
+ working-directory: sdk/rust
+
- name: Run clippy
run: cargo clippy -- -D warnings
working-directory: demo/rust/micdemo
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 3521663b0..e2da5f216 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -55,14 +55,6 @@ jobs:
toolchain: stable
override: true
- - name: Local Porcupine dependency
- run: ./copy.sh
- working-directory: resources/porcupine/binding/rust
-
- - name: Local Rhino dependency
- run: ./copy.sh
- working-directory: resources/rhino/binding/rust
-
- name: Rust build
run: cargo build --verbose
@@ -84,17 +76,9 @@ jobs:
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
- toolchain: nightly
+ toolchain: stable
override: true
- - name: Local Porcupine dependency
- run: ./copy.sh
- working-directory: resources/porcupine/binding/rust
-
- - name: Local Rhino dependency
- run: ./copy.sh
- working-directory: resources/rhino/binding/rust
-
- name: Rust build
run: cargo build --verbose
diff --git a/.github/workflows/unity.yml b/.github/workflows/unity.yml
index 081983742..ded45d372 100644
--- a/.github/workflows/unity.yml
+++ b/.github/workflows/unity.yml
@@ -48,37 +48,38 @@ jobs:
- name: Run tests
run: xvfb-run --auto-servernum --server-args='-screen 0 640x480x24'
- /home/picovoice/Unity/Hub/Editor/2019.4.34f1/Editor/Unity -runTests -batchmode -projectPath . -testResults unityresults.xml -testPlatform StandaloneLinux64 -logFile -
+ /home/picovoice/Unity/Hub/Editor/2021.3.31f1/Editor/Unity -runTests -batchmode -projectPath . -testResults unityresults.xml -testPlatform StandaloneLinux64 -logFile -
- name: Check Results
run: sed -n 2p unityresults.xml | grep 'result="Passed"'
- playtest-mac:
- name: Run PlayTest unit tests on macOS
- runs-on: pv-ios
+ # NOTE: fix later as mac runner halts unity test app in between runs. Running locally works fine as well as first try after restarting runner.
+ # playtest-mac:
+ # name: Run PlayTest unit tests on macOS
+ # runs-on: pv-ios
- steps:
- - uses: actions/checkout@v3
- with:
- submodules: 'recursive'
+ # steps:
+ # - uses: actions/checkout@v3
+ # with:
+ # submodules: 'recursive'
- - name: Pre-build dependencies
- run: |
- ./copy.sh
- ./copy_test_resources.sh
+ # - name: Pre-build dependencies
+ # run: |
+ # ./copy.sh
+ # ./copy_test_resources.sh
- - name: Clean conflicting dylib
- run: rm -rf Assets/Picovoice/Plugins/mac/arm64
+ # - name: Clean conflicting dylib
+ # run: rm -rf Assets/Picovoice/Plugins/mac/arm64
- - name: Inject AppID
- run: sed -i '.bak' 's:{TESTING_ACCESS_KEY_HERE}:${{secrets.PV_VALID_ACCESS_KEY}}:'
- Assets/Picovoice/Tests/Integration.cs
+ # - name: Inject AppID
+ # run: sed -i '.bak' 's:{TESTING_ACCESS_KEY_HERE}:${{secrets.PV_VALID_ACCESS_KEY}}:'
+ # Assets/Picovoice/Tests/Integration.cs
- - name: Run tests
- run: /Applications/Unity/Hub/Editor/2019.4.34f1/Unity.app/Contents/MacOS/Unity -runTests -batchmode -projectPath . -testResults unityresults.xml -testPlatform StandaloneOSX -logFile -
+ # - name: Run tests
+ # run: /Applications/Unity/Hub/Editor/2021.3.31f1/Unity.app/Contents/MacOS/Unity -runTests -batchmode -projectPath . -testResults unityresults.xml -testPlatform StandaloneOSX -logFile -
- - name: Check Results
- run: sed -n 2p unityresults.xml | grep 'result="Passed"'
+ # - name: Check Results
+ # run: sed -n 2p unityresults.xml | grep 'result="Passed"'
playtest-windows:
name: Run PlayTest unit tests on Windows
@@ -102,7 +103,7 @@ jobs:
- name: Run tests
run: >
- & "C:\Program Files\Unity\Hub\Editor\2019.4.34f1\Editor\Unity.exe" -runTests -batchmode -projectPath . -testResults unityresults.xml -testPlatform StandaloneWindows64 -logFile - | Out-Host
+ & "C:\Program Files\Unity\Hub\Editor\2021.3.31f1\Editor\Unity.exe" -runTests -batchmode -projectPath . -testResults unityresults.xml -testPlatform StandaloneWindows64 -logFile - | Out-Host
- name: Check Results
run: bash -c "sed -n 2p unityresults.xml | grep Passed"
@@ -131,7 +132,7 @@ jobs:
run: /Users/alirezakenarsari-anhari/Library/Android/sdk/emulator/emulator -avd Pixel_6_API_33 &
- name: Run tests
- run: /Applications/Unity/Hub/Editor/2019.4.34f1/Unity.app/Contents/MacOS/Unity -runTests -batchmode -projectPath . -testResults unityresults.xml -testPlatform Android -logFile -
+ run: /Applications/Unity/Hub/Editor/2021.3.31f1/Unity.app/Contents/MacOS/Unity -runTests -batchmode -buildTarget Android -projectPath . -testResults unityresults.xml -testPlatform Android -logFile -
- name: Check Results
run: sed -n 2p unityresults.xml | grep 'result="Passed"'
diff --git a/.github/workflows/vue-demos.yml b/.github/workflows/vue-demos.yml
index 7430ff57e..0ce0d233e 100644
--- a/.github/workflows/vue-demos.yml
+++ b/.github/workflows/vue-demos.yml
@@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
- node-version: [14.x, 16.x, 18.x, 20.x]
+ node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/vue.yml b/.github/workflows/vue.yml
index 19c4e3f4f..96c0e3795 100644
--- a/.github/workflows/vue.yml
+++ b/.github/workflows/vue.yml
@@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
- node-version: [14.x, 16.x, 18.x, 20.x]
+ node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/web-demos.yml b/.github/workflows/web-demos.yml
index 657616bbd..2eb14523c 100644
--- a/.github/workflows/web-demos.yml
+++ b/.github/workflows/web-demos.yml
@@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
- node-version: [14.x, 16.x, 18.x, 20.x]
+ node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
@@ -50,6 +50,8 @@ jobs:
steps:
- uses: actions/checkout@v3
+ with:
+ submodules: recursive
- name: Set up Node.js lts/*
uses: actions/setup-node@v3
diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml
index 5ab8704ee..eec9240e4 100644
--- a/.github/workflows/web.yml
+++ b/.github/workflows/web.yml
@@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
- node-version: [14.x, 16.x, 18.x, 20.x]
+ node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
diff --git a/demo/android/Activity/picovoice-activity-demo-app/build.gradle b/demo/android/Activity/picovoice-activity-demo-app/build.gradle
index 61ba8e054..24c8add9e 100644
--- a/demo/android/Activity/picovoice-activity-demo-app/build.gradle
+++ b/demo/android/Activity/picovoice-activity-demo-app/build.gradle
@@ -102,7 +102,7 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.google.code.gson:gson:2.10'
- implementation 'ai.picovoice:picovoice-android:2.2.1'
+ implementation 'ai.picovoice:picovoice-android:3.0.0'
}
afterEvaluate {
diff --git a/demo/android/Activity/picovoice-activity-demo-app/src/main/java/ai/picovoice/picovoicedemo/MainActivity.java b/demo/android/Activity/picovoice-activity-demo-app/src/main/java/ai/picovoice/picovoicedemo/MainActivity.java
index 3246cee90..a25deb873 100644
--- a/demo/android/Activity/picovoice-activity-demo-app/src/main/java/ai/picovoice/picovoicedemo/MainActivity.java
+++ b/demo/android/Activity/picovoice-activity-demo-app/src/main/java/ai/picovoice/picovoicedemo/MainActivity.java
@@ -51,6 +51,7 @@ public class MainActivity extends AppCompatActivity {
private static final String ACCESS_KEY = "${YOUR_ACCESS_KEY_HERE}"; // AccessKey obtained from Picovoice Console (https://console.picovoice.ai/)
private String wakeWordName = "";
private String contextName = "";
+ private String contextInformation = "";
private PicovoiceManager picovoiceManager;
private TextView intentTextView;
@@ -183,23 +184,33 @@ private void initPicovoice() {
rhinoModel = "rhino_params_" + BuildConfig.FLAVOR + ".pv";
}
- picovoiceManager = new PicovoiceManager.Builder()
- .setAccessKey(ACCESS_KEY)
- .setKeywordPath("wakewords/" + wakeWordName.replace(" ", "_") + ".ppn")
- .setPorcupineSensitivity(0.75f)
- .setPorcupineModelPath("models/" + porcupineModel)
- .setWakeWordCallback(picovoiceWakeWordCallback)
- .setContextPath("contexts/" + contextName + ".rhn")
- .setRhinoSensitivity(0.25f)
- .setRhinoModelPath("models/" + rhinoModel)
- .setInferenceCallback(picovoiceInferenceCallback)
- .setProcessErrorCallback(picovoiceManagerErrorCallback)
- .build(getApplicationContext());
-
try {
- Log.i("PicovoiceManager", picovoiceManager.getContextInformation());
+ picovoiceManager = new PicovoiceManager.Builder()
+ .setAccessKey(ACCESS_KEY)
+ .setKeywordPath("wakewords/" + wakeWordName.replace(" ", "_") + ".ppn")
+ .setPorcupineSensitivity(0.75f)
+ .setPorcupineModelPath("models/" + porcupineModel)
+ .setWakeWordCallback(picovoiceWakeWordCallback)
+ .setContextPath("contexts/" + contextName + ".rhn")
+ .setRhinoSensitivity(0.25f)
+ .setRhinoModelPath("models/" + rhinoModel)
+ .setInferenceCallback(picovoiceInferenceCallback)
+ .setProcessErrorCallback(picovoiceManagerErrorCallback)
+ .build(getApplicationContext());
+ contextInformation = picovoiceManager.getContextInformation();
+ Log.i("PicovoiceManager", contextInformation);
+ } catch (PicovoiceInvalidArgumentException e) {
+ onPicovoiceError(e.getMessage());
+ } catch (PicovoiceActivationException e) {
+ onPicovoiceError("AccessKey activation error");
+ } catch (PicovoiceActivationLimitException e) {
+ onPicovoiceError("AccessKey reached its device limit");
+ } catch (PicovoiceActivationRefusedException e) {
+ onPicovoiceError("AccessKey refused");
+ } catch (PicovoiceActivationThrottledException e) {
+ onPicovoiceError("AccessKey has been throttled");
} catch (PicovoiceException e) {
- Log.e("PicovoiceManager", "Failed to get context info: \n" + e);
+ onPicovoiceError("Failed to initialize Picovoice " + e.getMessage());
}
}
@@ -219,49 +230,12 @@ public void process(View view) {
picovoiceManager.stop();
intentTextView.setText("");
}
- } catch (PicovoiceInvalidArgumentException e) {
- onPicovoiceError(
- String.format(
- "%s\nEnsure your AccessKey '%s' is a valid access key.",
- e.getLocalizedMessage(),
- ACCESS_KEY));
- } catch (PicovoiceActivationException e) {
- onPicovoiceError("AccessKey activation error");
- } catch (PicovoiceActivationLimitException e) {
- onPicovoiceError("AccessKey reached its device limit");
- } catch (PicovoiceActivationRefusedException e) {
- onPicovoiceError("AccessKey refused");
- } catch (PicovoiceActivationThrottledException e) {
- onPicovoiceError("AccessKey has been throttled");
} catch (PicovoiceException e) {
- onPicovoiceError("Failed to initialize Picovoice " + e.getMessage());
+ Log.e("PicovoiceManager", e.getMessage());
}
}
public void showContextCheatSheet(View view) {
- String contextInformation;
- try {
- contextInformation = picovoiceManager.getContextInformation();
- } catch (PicovoiceException e) {
- Log.e("PicovoiceManager", "Failed to get context info: \n" + e);
- return;
- }
-
- if (contextInformation.equals("")) {
- if (!hasRecordPermission()) {
- requestRecordPermission(1);
- return;
- }
- try {
- picovoiceManager.start();
- contextInformation = picovoiceManager.getContextInformation();
- picovoiceManager.stop();
- } catch (PicovoiceException e) {
- onPicovoiceError(e.getMessage());
- return;
- }
- }
-
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
ViewGroup viewGroup = findViewById(R.id.content);
View dialogView = LayoutInflater.from(view.getContext())
diff --git a/demo/android/Service/picovoice-service-demo-app/build.gradle b/demo/android/Service/picovoice-service-demo-app/build.gradle
index 88064a92e..d4cd22e25 100644
--- a/demo/android/Service/picovoice-service-demo-app/build.gradle
+++ b/demo/android/Service/picovoice-service-demo-app/build.gradle
@@ -27,7 +27,7 @@ dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- implementation 'ai.picovoice:picovoice-android:2.2.1'
+ implementation 'ai.picovoice:picovoice-android:3.0.0'
}
task copyPorcupineResources(type: Copy) {
diff --git a/demo/android/Service/picovoice-service-demo-app/src/main/java/ai/picovoice/picovoicedemoservice/PicovoiceService.java b/demo/android/Service/picovoice-service-demo-app/src/main/java/ai/picovoice/picovoicedemoservice/PicovoiceService.java
index 5fa8149d5..0256459f4 100644
--- a/demo/android/Service/picovoice-service-demo-app/src/main/java/ai/picovoice/picovoicedemoservice/PicovoiceService.java
+++ b/demo/android/Service/picovoice-service-demo-app/src/main/java/ai/picovoice/picovoicedemoservice/PicovoiceService.java
@@ -106,11 +106,7 @@ public int onStartCommand(Intent intent, int flags, int startId) {
picovoiceManager.start();
started = true;
} catch (PicovoiceInvalidArgumentException e) {
- onPicovoiceError(
- String.format(
- "%s\nEnsure your AccessKey '%s' is a valid access key.",
- e.getLocalizedMessage(),
- ACCESS_KEY));
+ onPicovoiceError(e.getMessage());
} catch (PicovoiceActivationException e) {
onPicovoiceError("AccessKey activation error");
} catch (PicovoiceActivationLimitException e) {
@@ -120,7 +116,7 @@ public int onStartCommand(Intent intent, int flags, int startId) {
} catch (PicovoiceActivationThrottledException e) {
onPicovoiceError("AccessKey has been throttled");
} catch (PicovoiceException e) {
- onPicovoiceError("Failed to initialize Picovoice " + e.getMessage());
+ onPicovoiceError("Failed to initialize Picovoice: " + e.getMessage());
}
Notification notification = started ?
diff --git a/demo/angular/package.json b/demo/angular/package.json
index ebe40369e..3a906f86e 100644
--- a/demo/angular/package.json
+++ b/demo/angular/package.json
@@ -1,6 +1,6 @@
{
"name": "picovoice-angular-demo",
- "version": "2.2.0",
+ "version": "3.0.0",
"scripts": {
"ng": "ng",
"start": "node scripts/run_demo.js serve",
@@ -18,7 +18,7 @@
"@angular/platform-browser": "^15.0.3",
"@angular/platform-browser-dynamic": "^15.0.3",
"@angular/router": "^15.0.3",
- "@picovoice/picovoice-angular": "~2.2.1",
+ "@picovoice/picovoice-angular": "~3.0.0",
"@picovoice/web-voice-processor": "~4.0.8",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
diff --git a/demo/angular/src/app/voice_widget.component.html b/demo/angular/src/app/voice_widget.component.html
index 2df6a9491..30196571f 100644
--- a/demo/angular/src/app/voice_widget.component.html
+++ b/demo/angular/src/app/voice_widget.component.html
@@ -18,7 +18,7 @@
Picovoice Loaded: {{ isLoaded }}
Listening: {{ isListening }}
Error: {{ error !== null }}
-
{{ error.toString() }}
+ {{ error.message }}
diff --git a/demo/angular/src/app/voice_widget.component.scss b/demo/angular/src/app/voice_widget.component.scss
index 008c1e904..3c6700da5 100644
--- a/demo/angular/src/app/voice_widget.component.scss
+++ b/demo/angular/src/app/voice_widget.component.scss
@@ -21,7 +21,9 @@
border-left: 5px solid red;
font-family: monospace;
font-weight: bold;
- font-size: 1.5rem;
+ font-size: 1.2rem;
+ white-space: pre;
+ overflow-wrap: break-word;
}
overflow: hidden;
diff --git a/demo/angular/yarn.lock b/demo/angular/yarn.lock
index e10f42dc1..fd54e24fd 100644
--- a/demo/angular/yarn.lock
+++ b/demo/angular/yarn.lock
@@ -2,7 +2,12 @@
# yarn lockfile v1
-"@ampproject/remapping@2.2.0", "@ampproject/remapping@^2.1.0":
+"@aashutoshrathi/word-wrap@^1.2.3":
+ version "1.2.6"
+ resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf"
+ integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==
+
+"@ampproject/remapping@2.2.0":
version "2.2.0"
resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==
@@ -10,46 +15,55 @@
"@jridgewell/gen-mapping" "^0.1.0"
"@jridgewell/trace-mapping" "^0.3.9"
-"@angular-devkit/architect@0.1500.4":
- version "0.1500.4"
- resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1500.4.tgz#ffcb226ebcb0cf69db509c7351bd77a61c9ab04f"
- integrity sha512-U9RQueICmmNk9c2zQjUN8qi/+H6kO2VKqeyuh3Vwj6yj4lQEINf1SNX8Ba9UFH/rxNo64iFM0k5x5vX0VajvCw==
+"@ampproject/remapping@^2.1.0", "@ampproject/remapping@^2.2.0":
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
+ integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
dependencies:
- "@angular-devkit/core" "15.0.4"
+ "@jridgewell/gen-mapping" "^0.3.0"
+ "@jridgewell/trace-mapping" "^0.3.9"
+
+"@angular-devkit/architect@0.1502.10":
+ version "0.1502.10"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1502.10.tgz#4c25ba881635937d922b18e7959b38a476badc82"
+ integrity sha512-S8lN73WYCfpEpw1Q41ZcUinw7JfDeSM8LyGs797OVshnW75QcOkOecWj/3CKR23G44IgFrHN6sqtzWxKmMxLig==
+ dependencies:
+ "@angular-devkit/core" "15.2.10"
rxjs "6.6.7"
"@angular-devkit/build-angular@^15.0.3":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-15.0.4.tgz#b9004972ac7ea2906aac0e4dfcf5afa7d31f0851"
- integrity sha512-F1KyaZEIWcVP2xIIiu3ZnH+FzuEehR9rli1F566dPijbll8EnknnItEugFtVhyoaVTh8eJmm1SfsoQrneMbrsg==
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-15.2.10.tgz#af4080a4811461bd1cab4f3b1b10edef53f31da8"
+ integrity sha512-3pCPVEJilVwHIJC6Su1/PIEqvFfU1Lxew9yItxX4s6dud8HY+fuKrsDnao4NNMFNqCLqL4el5QbSBKnnpWH1sg==
dependencies:
"@ampproject/remapping" "2.2.0"
- "@angular-devkit/architect" "0.1500.4"
- "@angular-devkit/build-webpack" "0.1500.4"
- "@angular-devkit/core" "15.0.4"
- "@babel/core" "7.20.2"
- "@babel/generator" "7.20.4"
+ "@angular-devkit/architect" "0.1502.10"
+ "@angular-devkit/build-webpack" "0.1502.10"
+ "@angular-devkit/core" "15.2.10"
+ "@babel/core" "7.20.12"
+ "@babel/generator" "7.20.14"
"@babel/helper-annotate-as-pure" "7.18.6"
- "@babel/plugin-proposal-async-generator-functions" "7.20.1"
- "@babel/plugin-transform-async-to-generator" "7.18.6"
+ "@babel/helper-split-export-declaration" "7.18.6"
+ "@babel/plugin-proposal-async-generator-functions" "7.20.7"
+ "@babel/plugin-transform-async-to-generator" "7.20.7"
"@babel/plugin-transform-runtime" "7.19.6"
"@babel/preset-env" "7.20.2"
- "@babel/runtime" "7.20.1"
- "@babel/template" "7.18.10"
+ "@babel/runtime" "7.20.13"
+ "@babel/template" "7.20.7"
"@discoveryjs/json-ext" "0.5.7"
- "@ngtools/webpack" "15.0.4"
+ "@ngtools/webpack" "15.2.10"
ansi-colors "4.1.3"
autoprefixer "10.4.13"
- babel-loader "9.1.0"
+ babel-loader "9.1.2"
babel-plugin-istanbul "6.1.1"
- browserslist "4.21.4"
- cacache "17.0.2"
+ browserslist "4.21.5"
+ cacache "17.0.4"
chokidar "3.5.3"
copy-webpack-plugin "11.0.0"
critters "0.0.16"
css-loader "6.7.3"
- esbuild-wasm "0.15.13"
- glob "8.0.3"
+ esbuild-wasm "0.17.8"
+ glob "8.1.0"
https-proxy-agent "5.0.1"
inquirer "8.2.4"
jsonc-parser "3.2.0"
@@ -58,164 +72,164 @@
less-loader "11.1.0"
license-webpack-plugin "4.0.2"
loader-utils "3.2.1"
- magic-string "0.26.7"
- mini-css-extract-plugin "2.6.1"
- open "8.4.0"
+ magic-string "0.29.0"
+ mini-css-extract-plugin "2.7.2"
+ open "8.4.1"
ora "5.4.1"
- parse5-html-rewriting-stream "6.0.1"
+ parse5-html-rewriting-stream "7.0.0"
piscina "3.2.0"
- postcss "8.4.19"
- postcss-loader "7.0.1"
+ postcss "8.4.31"
+ postcss-loader "7.0.2"
resolve-url-loader "5.0.0"
rxjs "6.6.7"
- sass "1.56.1"
+ sass "1.58.1"
sass-loader "13.2.0"
- semver "7.3.8"
+ semver "7.5.3"
source-map-loader "4.0.1"
source-map-support "0.5.21"
- terser "5.15.1"
+ terser "5.16.3"
text-table "0.2.0"
tree-kill "1.2.2"
- tslib "2.4.1"
- webpack "5.75.0"
- webpack-dev-middleware "5.3.3"
+ tslib "2.5.0"
+ webpack "5.76.1"
+ webpack-dev-middleware "6.0.1"
webpack-dev-server "4.11.1"
webpack-merge "5.8.0"
webpack-subresource-integrity "5.1.0"
optionalDependencies:
- esbuild "0.15.13"
+ esbuild "0.17.8"
-"@angular-devkit/build-webpack@0.1500.4":
- version "0.1500.4"
- resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1500.4.tgz#e0e025ce97d450a67bc3231cba0d8ea4650fbbc3"
- integrity sha512-ay2vHMfyhaPDkzEISlRV1ZiTD/VCUunW+uRfNIzo9/o83UjTKVcqYUOUOvbIbrsb6JbQoNY+DwkES5frG1UmnA==
+"@angular-devkit/build-webpack@0.1502.10":
+ version "0.1502.10"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1502.10.tgz#665dfa76a0c6548821fa372356e2c9b55e8eebac"
+ integrity sha512-55b9WZIGU4DNgiIV2lkkN6iQxJrgWY5CDaNu0kJC/qazotJgBbcN/8jgBx2DD8HNE1V3iXxWk66pt1h946Po+Q==
dependencies:
- "@angular-devkit/architect" "0.1500.4"
+ "@angular-devkit/architect" "0.1502.10"
rxjs "6.6.7"
-"@angular-devkit/core@15.0.4":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-15.0.4.tgz#257ba1d76cd106216d0150f480d0062e726af996"
- integrity sha512-4ITpRAevd652SxB+qNesIQ9qfbm7wT5UBU5kJOPPwGL77I21g8CQpkmV1n5VSacPvC9Zbz90feOWexf7w7JzcA==
+"@angular-devkit/core@15.2.10":
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-15.2.10.tgz#e2c1fadaaa87ae62b3f3c752fa6fafc31197151b"
+ integrity sha512-bFPm7wjvfBds9km2rCJxUhzkqe4h3h/199yJtzC1bNvwRr2LMHvtyoQAzftda+gs7Ulqac5wzUEZX/cVV3WrsA==
dependencies:
- ajv "8.11.0"
+ ajv "8.12.0"
ajv-formats "2.1.1"
jsonc-parser "3.2.0"
rxjs "6.6.7"
source-map "0.7.4"
-"@angular-devkit/schematics@15.0.4":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-15.0.4.tgz#64de42f9100d7080bc3c59bb06d1e4f6f15a088e"
- integrity sha512-/gXiLFS0+xFdx6wPoBpe/c6/K9I5edMpaASqPf4XheKtrsSvL+qTlIi3nsbfItzOiDXbaBmlbxGfkMHz/yg0Ig==
+"@angular-devkit/schematics@15.2.10":
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-15.2.10.tgz#72ea6ac84082995221781bcb72df3143b4ffddc3"
+ integrity sha512-EeoDs4oKFpLZNa21G/8dqBdclEc4U2piI9EeXCVTaN6z5DYXIZ0G1WtCXU8nhD+GckS47rmfZ4/3lMaXAvED+g==
dependencies:
- "@angular-devkit/core" "15.0.4"
+ "@angular-devkit/core" "15.2.10"
jsonc-parser "3.2.0"
- magic-string "0.26.7"
+ magic-string "0.29.0"
ora "5.4.1"
rxjs "6.6.7"
"@angular-eslint/builder@^15.1.0":
- version "15.1.0"
- resolved "https://registry.yarnpkg.com/@angular-eslint/builder/-/builder-15.1.0.tgz#8175dbb3daa637fbd643c3a1db55e49e5341e1e2"
- integrity sha512-MoPeJv4a1wSoFj8fVA01hFb+QQke2t74CSVuc6o4EqkWI0tYMM1Wg19fPtTZnj4spkGA82j2mf/tazKGRe/nrw==
-
-"@angular-eslint/bundled-angular-compiler@15.1.0":
- version "15.1.0"
- resolved "https://registry.yarnpkg.com/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-15.1.0.tgz#9e86e8cef2631b044e76fcfede5553fc07262a5d"
- integrity sha512-zcOx+PnYuVDIG3wd/JVzCYdEUarKGtgIcN4iU9ZF+BVk5e8i9cbD3U8U3EDJKbrrokbFl9GBBJMCOa6XYTGJwQ==
-
-"@angular-eslint/eslint-plugin-template@15.1.0", "@angular-eslint/eslint-plugin-template@^15.1.0":
- version "15.1.0"
- resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-15.1.0.tgz#5635761fdb3eff22f9cf2d75e782a94c73a162f5"
- integrity sha512-WofUNiLcO/oprnzswkF+u1PC6ulmqB/m7fNKMMnbExMYuK1P38gjp59FW7E+2Ivz+A4/8a5xV+U+cy3oRgh4NQ==
- dependencies:
- "@angular-eslint/bundled-angular-compiler" "15.1.0"
- "@angular-eslint/utils" "15.1.0"
- "@typescript-eslint/type-utils" "5.44.0"
- "@typescript-eslint/utils" "5.44.0"
+ version "15.2.1"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/builder/-/builder-15.2.1.tgz#ce8c65e3b671897db75ad90b41ef4cd6efe626f0"
+ integrity sha512-7x2DANebLRl997Mj4DhZrnz5+vnSjavGGveJ0mBuU7CEsL0ZYLftdRqL0e0HtU3ksseS7xpchD6OM08nkNgySw==
+
+"@angular-eslint/bundled-angular-compiler@15.2.1":
+ version "15.2.1"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-15.2.1.tgz#7c77a4a19942868d844372b5b3b562c0d630de1e"
+ integrity sha512-LO7Am8eVCr7oh6a0VmKSL7K03CnQEQhFO7Wt/YtbfYOxVjrbwmYLwJn+wZPOT7A02t/BttOD/WXuDrOWtSMQ/Q==
+
+"@angular-eslint/eslint-plugin-template@15.2.1", "@angular-eslint/eslint-plugin-template@^15.1.0":
+ version "15.2.1"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-15.2.1.tgz#af39f66e9d971d7f7635add9cf1a396f1766fd64"
+ integrity sha512-IeiSLk6YxapFdH2z5o/O3R7VwtBd2T6fWmhLFPwDYMDknrwegnOjwswCdBplOccpUp0wqlCeGUx7LTsuzwaz7w==
+ dependencies:
+ "@angular-eslint/bundled-angular-compiler" "15.2.1"
+ "@angular-eslint/utils" "15.2.1"
+ "@typescript-eslint/type-utils" "5.48.2"
+ "@typescript-eslint/utils" "5.48.2"
aria-query "5.1.3"
axobject-query "3.1.1"
-"@angular-eslint/eslint-plugin@15.1.0", "@angular-eslint/eslint-plugin@^15.1.0":
- version "15.1.0"
- resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin/-/eslint-plugin-15.1.0.tgz#b91f050df0ffaa4d07496b2ca3cdad2be39df28d"
- integrity sha512-3RRDnxaCEI5DdKq3hipXvrxctPPssrUXnNbgczJRIJ3cssr4ndobCSNqUSepA6vWj5mWe7w+nnh4vgfhZ5keig==
+"@angular-eslint/eslint-plugin@15.2.1", "@angular-eslint/eslint-plugin@^15.1.0":
+ version "15.2.1"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin/-/eslint-plugin-15.2.1.tgz#616e7aa1f3aea6203e887c20749b87d08bb95d3e"
+ integrity sha512-OM7b1kS4E4CkXjkaWN+lEzawh4VxY6l7FO1Cuk4s7iv3/YpZG3rJxIZBqnFLTixwrBuqw8y4FNBzF3eDgmFAUw==
dependencies:
- "@angular-eslint/utils" "15.1.0"
- "@typescript-eslint/utils" "5.44.0"
+ "@angular-eslint/utils" "15.2.1"
+ "@typescript-eslint/utils" "5.48.2"
"@angular-eslint/schematics@^15.1.0":
- version "15.1.0"
- resolved "https://registry.yarnpkg.com/@angular-eslint/schematics/-/schematics-15.1.0.tgz#aadc73f4b6142468237ba6da7e7c72a6520839a0"
- integrity sha512-BJm7FFVCad8TV8Gtwq+FbgtLGvjJDlpt5Rne1hCd4nCr8vlQZxSWVwnTHRkAs+qd5dYn3p7bGcKZxEZzeVkWjA==
+ version "15.2.1"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/schematics/-/schematics-15.2.1.tgz#f562e1b8b0824ade1cfdc5bbabab26c50510a7f1"
+ integrity sha512-0ZfBCejHWIcgy3J5kFs9sS/jqi8i5AptxggOwFySOlCLJ+CzNrktjD4jff1Zy8K/VLzY0Ci0BSZXvgWfP0k9Rg==
dependencies:
- "@angular-eslint/eslint-plugin" "15.1.0"
- "@angular-eslint/eslint-plugin-template" "15.1.0"
- ignore "5.2.0"
+ "@angular-eslint/eslint-plugin" "15.2.1"
+ "@angular-eslint/eslint-plugin-template" "15.2.1"
+ ignore "5.2.4"
strip-json-comments "3.1.1"
tmp "0.2.1"
"@angular-eslint/template-parser@^15.1.0":
- version "15.1.0"
- resolved "https://registry.yarnpkg.com/@angular-eslint/template-parser/-/template-parser-15.1.0.tgz#e3525dd27173d7d088dd20259a732a220bf0f8b0"
- integrity sha512-ctcA7OAV1wwFByW1te3uZwzySuIRlo8NblG5yUtgU5BXt3nXwIDwoSr3tvI2dRHobNHcXVQcOFVzyOdXD/vsIg==
+ version "15.2.1"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/template-parser/-/template-parser-15.2.1.tgz#dbe4978afdcea81b9d5cac3d672c20de5821dc54"
+ integrity sha512-ViCi79gC2aKJecmYLkOT+QlT5WMRNXeYz0Dr9Pr8qXzIbY0oAWE7nOT5jkXwQ9oUk+ybtGCWHma5JVJWVJsIog==
dependencies:
- "@angular-eslint/bundled-angular-compiler" "15.1.0"
+ "@angular-eslint/bundled-angular-compiler" "15.2.1"
eslint-scope "^7.0.0"
-"@angular-eslint/utils@15.1.0":
- version "15.1.0"
- resolved "https://registry.yarnpkg.com/@angular-eslint/utils/-/utils-15.1.0.tgz#b0d6acbdaa0f77232e080fbd731db4a5eabc69de"
- integrity sha512-Vt59o7wq3UOgHSCrOaHg0SgxgbAGhG0ofNQwd7sLqNP2/w/90dWY2jwWXIVSuZ+BmfVj3wgNi3KujbSWJP1cfg==
+"@angular-eslint/utils@15.2.1":
+ version "15.2.1"
+ resolved "https://registry.yarnpkg.com/@angular-eslint/utils/-/utils-15.2.1.tgz#b286fddb1b8b43d96b91009237da7f74d9e64dda"
+ integrity sha512-++FneAJHxJqcSu0igVN6uOkSoHxlzgLoMBswuovYJy3UKwm33/T6WFku8++753Ca/JucIoR1gdUfO7SoSspMDg==
dependencies:
- "@angular-eslint/bundled-angular-compiler" "15.1.0"
- "@typescript-eslint/utils" "5.44.0"
+ "@angular-eslint/bundled-angular-compiler" "15.2.1"
+ "@typescript-eslint/utils" "5.48.2"
"@angular/animations@^15.0.3":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-15.0.4.tgz#550ab892fc9b5bd2ce0aceae54ba0dd668163359"
- integrity sha512-fOqf7fHX9aspIUmlOsig8ZyZlalU+eIBsUgu4QpH9+vfQzGCJcKIjPClW4Yb7rkNlyLlfQqaICOxG9gOxuEI7Q==
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-15.2.10.tgz#c9194ba9a2b9b4e466e9c76e18591cde096a28e8"
+ integrity sha512-yxfN8qQpMaukRU5LjFkJBmy85rqrOp86tYVCsf+hmPEFRiXBMUj6xYLeCMcpk3Mt1JtnWGBR34ivGx+7bNeAow==
dependencies:
tslib "^2.3.0"
"@angular/cli@^15.0.3":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-15.0.4.tgz#c0bf88a668bd6550dc85298cf229032a8d72f142"
- integrity sha512-dQEus458EvBYZuM10UPO/1BYshV3cprY4os6uQj6YLdEwOogElkAedUILgtTYOo3jrwc+qjefHVJbz6R+xJCOg==
- dependencies:
- "@angular-devkit/architect" "0.1500.4"
- "@angular-devkit/core" "15.0.4"
- "@angular-devkit/schematics" "15.0.4"
- "@schematics/angular" "15.0.4"
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-15.2.10.tgz#4035a64510e11894be2ff695e48ee0ef6badb494"
+ integrity sha512-/TSnm/ZQML6A4lvunyN2tjTB5utuvk3d1Pnfyehp/FXtV6YfZm6+EZrOpKkKPCxTuAgW6c9KK4yQtt3RuNVpwQ==
+ dependencies:
+ "@angular-devkit/architect" "0.1502.10"
+ "@angular-devkit/core" "15.2.10"
+ "@angular-devkit/schematics" "15.2.10"
+ "@schematics/angular" "15.2.10"
"@yarnpkg/lockfile" "1.1.0"
ansi-colors "4.1.3"
ini "3.0.1"
inquirer "8.2.4"
jsonc-parser "3.2.0"
- npm-package-arg "9.1.2"
+ npm-package-arg "10.1.0"
npm-pick-manifest "8.0.1"
- open "8.4.0"
+ open "8.4.1"
ora "5.4.1"
- pacote "15.0.6"
+ pacote "15.1.0"
resolve "1.22.1"
- semver "7.3.8"
+ semver "7.5.3"
symbol-observable "4.0.0"
yargs "17.6.2"
"@angular/common@^15.0.3":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular/common/-/common-15.0.4.tgz#29f0aa02739c33370e52305b266c75282114b4b2"
- integrity sha512-0x/2IhaetJqfXMeQ4DlRnOTzGWD0OvOeKORyi0q7WXPxSoD9MUezQHGmzkc5lK9tDYE9cNYyQfkUBcbJT/k6MA==
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular/common/-/common-15.2.10.tgz#897923023c8ca4a361ce218bdee9a3f09060df75"
+ integrity sha512-jdBn3fctkqoNrJn9VLsUHpcCEhCxWSczdsR+BBbD6T0oLl6vMrAVNjPwfBejnlgfWN1KoRU9kgOYsMxa5apIWQ==
dependencies:
tslib "^2.3.0"
"@angular/compiler-cli@^15.0.3":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-15.0.4.tgz#dfe699846cd5d69f5e0d33164173eb2ecba20b72"
- integrity sha512-e6Jt4qkIiyqBg8ZlpcQaQtQ5OAnfl8gfkJnIwSvvCg0mPCJv+ZkQAL5s3SpzzM5jd7Nr0jBq3zd2Fv0eKW2ayw==
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-15.2.10.tgz#e51013aa0f3da303fc74f8e1948c550d8e74ead5"
+ integrity sha512-mCFIxrs60XicKfA2o42hA7LrQvhybi9BQveWuZn/2iIEOXx7R62Iemz8E21pLWftAZHGxEW3NECfBrY1d3gVmA==
dependencies:
- "@babel/core" "^7.17.2"
+ "@babel/core" "7.19.3"
"@jridgewell/sourcemap-codec" "^1.4.14"
chokidar "^3.0.0"
convert-source-map "^1.5.1"
@@ -227,44 +241,44 @@
yargs "^17.2.1"
"@angular/compiler@^15.0.3":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-15.0.4.tgz#9c54194312d80f1ed9f7f5001308adf273f18bfd"
- integrity sha512-KtxgRJUGZamOXpIILFG2FTUW+bbc2phi/o6955/Q4LR1HOICQrYEy8PrT1Gp+lVXFKgDG+6cb01lH14LoBQvyw==
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-15.2.10.tgz#bd78f327d12eb5978f9dd05440aa23d4b5b925a9"
+ integrity sha512-M0XkeU0O73UlJZwDvOyp8/apetz9UKj78eTFDseMYJDLcxe6MpkbkxqpsGZnKYDj7LIep8PmCAKEkhtenE82zw==
dependencies:
tslib "^2.3.0"
"@angular/core@^15.0.3":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular/core/-/core-15.0.4.tgz#699105cbd7651dd679b623032100bf55fd616380"
- integrity sha512-Xf8Nuu0iM/VjQHPS4A0jufqTYZCfiGqc0iAD7j9zM3TD6caQ3OP4mxXVYYTpIG+APKel38+Gol8cpQB/8PVbqQ==
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular/core/-/core-15.2.10.tgz#93c1e0d460d21711654c578d2709a402e1822023"
+ integrity sha512-meGGidnitQJGDxYd9/LrqYiVlId+vGaLoiLgJdKBz+o2ZO6OmXQGuNw2VBqf17/Cc0/UjzrOY7+kILNFKkk/WQ==
dependencies:
tslib "^2.3.0"
"@angular/forms@^15.0.3":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-15.0.4.tgz#8356ea4b314af06c904bc2fb3afec9e248f79f69"
- integrity sha512-3Ft/p2ug/zp2p0g2rhLq9v/5F1G11xa+YujAKL5kOFa0zUoroDG6n4b6VEcsGWmDE9NR7Vkiys9rHckiJUluHg==
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-15.2.10.tgz#09308e887df2fa4d349300c9d1f05cadfb3872b3"
+ integrity sha512-NIntGsNcN6o8L1txsbWXOf6f3K/CUBizdKsxsYVYGJIXEW5qU6UnWmfAZffNNXsT/XvbgUCjgDwT0cAwcqZPuQ==
dependencies:
tslib "^2.3.0"
"@angular/platform-browser-dynamic@^15.0.3":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-15.0.4.tgz#e7fa434df62ea1b64ed98dff79ab6ce3b083f78d"
- integrity sha512-SCUxsfJAHXnAyo2ulmfqs3vGnB/tWNKe+G2KKshrSLyCYIJ3UgpsoPAo1mGih64qo8TWOQk9PJgrlVEB2DoWYg==
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-15.2.10.tgz#cc9ad3dcded6cb945ee8c4eef14db081dc6c3dfd"
+ integrity sha512-JHP6W+FX715Qv7DhqvfZLuBZXSDJrboiQsR06gUAgDSjAUyhbqmpVg/2YOtgeWpPkzNDtXdPU2PhcRdIv5J3Yg==
dependencies:
tslib "^2.3.0"
"@angular/platform-browser@^15.0.3":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-15.0.4.tgz#d66edd3d8811ea5b2a0b7ce6c42708a85533b5d6"
- integrity sha512-SOLrzh9AsHzhfre95ShvHd0hBcyEcFftJuAaU+35L4GiOAY+CznFuJUq4LjITCMQDHGzdpUlRjoUyJRQFmlvXQ==
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-15.2.10.tgz#ca5a904b4da9e0cf719414db89514ee4221cb93d"
+ integrity sha512-9tbgVGSJqwfrOzT8aA/kWBLNhJSQ9gUg0CJxwFBSJm8VkBUJrszoBlDsnSvlxx8/W2ejNULKHFTXeUzq0O/+RQ==
dependencies:
tslib "^2.3.0"
"@angular/router@^15.0.3":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@angular/router/-/router-15.0.4.tgz#d5159d8b0ac745ad0f0ffe8029d67c7d52681f8c"
- integrity sha512-6cBUu1kSigORGpWq+Wc3hTLRQcJvtlaZ5OFOIzKGiBEPgezn/AzrWHi/bEccWLZAVFhbUOhcRn9GwudqiqX6+A==
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@angular/router/-/router-15.2.10.tgz#a5d32d769b930e905582ed6c7aa8122e63655738"
+ integrity sha512-LmuqEg0iIXSw7bli6HKJ19cbxP91v37GtRwbGKswyLihqzTgvjBYpvcfMnB5FRQ5LWkTwq5JclkX03dZw290Yg==
dependencies:
tslib "^2.3.0"
@@ -273,124 +287,156 @@
resolved "https://registry.yarnpkg.com/@assemblyscript/loader/-/loader-0.10.1.tgz#70e45678f06c72fa2e350e8553ec4a4d72b92e06"
integrity sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
- integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.22.13":
+ version "7.22.13"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e"
+ integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==
dependencies:
- "@babel/highlight" "^7.18.6"
+ "@babel/highlight" "^7.22.13"
+ chalk "^2.4.2"
-"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.1", "@babel/compat-data@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"
- integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==
+"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.1", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.9":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.2.tgz#6a12ced93455827037bfb5ed8492820d60fc32cc"
+ integrity sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==
-"@babel/core@7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.2.tgz#8dc9b1620a673f92d3624bd926dc49a52cf25b92"
- integrity sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==
+"@babel/core@7.19.3":
+ version "7.19.3"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.3.tgz#2519f62a51458f43b682d61583c3810e7dcee64c"
+ integrity sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.2"
- "@babel/helper-compilation-targets" "^7.20.0"
- "@babel/helper-module-transforms" "^7.20.2"
- "@babel/helpers" "^7.20.1"
- "@babel/parser" "^7.20.2"
+ "@babel/generator" "^7.19.3"
+ "@babel/helper-compilation-targets" "^7.19.3"
+ "@babel/helper-module-transforms" "^7.19.0"
+ "@babel/helpers" "^7.19.0"
+ "@babel/parser" "^7.19.3"
"@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.1"
- "@babel/types" "^7.20.2"
+ "@babel/traverse" "^7.19.3"
+ "@babel/types" "^7.19.3"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.2.1"
semver "^6.3.0"
-"@babel/core@^7.12.3", "@babel/core@^7.17.2":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.7.tgz#37072f951bd4d28315445f66e0ec9f6ae0c8c35f"
- integrity sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw==
+"@babel/core@7.20.12":
+ version "7.20.12"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.12.tgz#7930db57443c6714ad216953d1356dac0eb8496d"
+ integrity sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.20.7"
"@babel/helper-compilation-targets" "^7.20.7"
- "@babel/helper-module-transforms" "^7.20.7"
+ "@babel/helper-module-transforms" "^7.20.11"
"@babel/helpers" "^7.20.7"
"@babel/parser" "^7.20.7"
"@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
+ "@babel/traverse" "^7.20.12"
"@babel/types" "^7.20.7"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
- json5 "^2.2.1"
+ json5 "^2.2.2"
semver "^6.3.0"
-"@babel/generator@7.20.4":
- version "7.20.4"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.4.tgz#4d9f8f0c30be75fd90a0562099a26e5839602ab8"
- integrity sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==
+"@babel/core@^7.12.3":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.2.tgz#ed10df0d580fff67c5f3ee70fd22e2e4c90a9f94"
+ integrity sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==
+ dependencies:
+ "@ampproject/remapping" "^2.2.0"
+ "@babel/code-frame" "^7.22.13"
+ "@babel/generator" "^7.23.0"
+ "@babel/helper-compilation-targets" "^7.22.15"
+ "@babel/helper-module-transforms" "^7.23.0"
+ "@babel/helpers" "^7.23.2"
+ "@babel/parser" "^7.23.0"
+ "@babel/template" "^7.22.15"
+ "@babel/traverse" "^7.23.2"
+ "@babel/types" "^7.23.0"
+ convert-source-map "^2.0.0"
+ debug "^4.1.0"
+ gensync "^1.0.0-beta.2"
+ json5 "^2.2.3"
+ semver "^6.3.1"
+
+"@babel/generator@7.20.14":
+ version "7.20.14"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.14.tgz#9fa772c9f86a46c6ac9b321039400712b96f64ce"
+ integrity sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==
dependencies:
- "@babel/types" "^7.20.2"
+ "@babel/types" "^7.20.7"
"@jridgewell/gen-mapping" "^0.3.2"
jsesc "^2.5.1"
-"@babel/generator@^7.20.2", "@babel/generator@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.7.tgz#f8ef57c8242665c5929fe2e8d82ba75460187b4a"
- integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==
+"@babel/generator@^7.19.3", "@babel/generator@^7.20.7", "@babel/generator@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420"
+ integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==
dependencies:
- "@babel/types" "^7.20.7"
+ "@babel/types" "^7.23.0"
"@jridgewell/gen-mapping" "^0.3.2"
+ "@jridgewell/trace-mapping" "^0.3.17"
jsesc "^2.5.1"
-"@babel/helper-annotate-as-pure@7.18.6", "@babel/helper-annotate-as-pure@^7.18.6":
+"@babel/helper-annotate-as-pure@7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"
integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb"
- integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==
+"@babel/helper-annotate-as-pure@^7.18.6", "@babel/helper-annotate-as-pure@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882"
+ integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==
dependencies:
- "@babel/helper-explode-assignable-expression" "^7.18.6"
- "@babel/types" "^7.18.9"
+ "@babel/types" "^7.22.5"
-"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.0", "@babel/helper-compilation-targets@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb"
- integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956"
+ integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==
dependencies:
- "@babel/compat-data" "^7.20.5"
- "@babel/helper-validator-option" "^7.18.6"
- browserslist "^4.21.3"
- lru-cache "^5.1.1"
- semver "^6.3.0"
-
-"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.5", "@babel/helper-create-class-features-plugin@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.7.tgz#d0e1f8d7e4ed5dac0389364d9c0c191d948ade6f"
- integrity sha512-LtoWbDXOaidEf50hmdDqn9g8VEzsorMexoWMQdQODbvmqYmaF23pBP5VNPAGIFHsFQCIeKokDiz3CH5Y2jlY6w==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-member-expression-to-functions" "^7.20.7"
- "@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/helper-replace-supers" "^7.20.7"
- "@babel/helper-split-export-declaration" "^7.18.6"
+ "@babel/types" "^7.22.15"
-"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz#5ea79b59962a09ec2acf20a963a01ab4d076ccca"
- integrity sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==
+"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.19.3", "@babel/helper-compilation-targets@^7.20.0", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52"
+ integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.18.6"
- regexpu-core "^5.2.1"
+ "@babel/compat-data" "^7.22.9"
+ "@babel/helper-validator-option" "^7.22.15"
+ browserslist "^4.21.9"
+ lru-cache "^5.1.1"
+ semver "^6.3.1"
+
+"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz#97a61b385e57fe458496fad19f8e63b63c867de4"
+ integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-member-expression-to-functions" "^7.22.15"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.9"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ semver "^6.3.1"
+
+"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1"
+ integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ regexpu-core "^5.3.1"
+ semver "^6.3.1"
"@babel/helper-define-polyfill-provider@^0.3.3":
version "0.3.3"
@@ -404,191 +450,173 @@
resolve "^1.14.2"
semver "^6.1.2"
-"@babel/helper-environment-visitor@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
- integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
+"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
+ integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
-"@babel/helper-explode-assignable-expression@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096"
- integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==
+"@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759"
+ integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/template" "^7.22.15"
+ "@babel/types" "^7.23.0"
-"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c"
- integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==
+"@babel/helper-hoist-variables@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
+ integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
dependencies:
- "@babel/template" "^7.18.10"
- "@babel/types" "^7.19.0"
+ "@babel/types" "^7.22.5"
-"@babel/helper-hoist-variables@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678"
- integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==
+"@babel/helper-member-expression-to-functions@^7.22.15":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366"
+ integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/types" "^7.23.0"
-"@babel/helper-member-expression-to-functions@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz#a6f26e919582275a93c3aa6594756d71b0bb7f05"
- integrity sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==
+"@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0"
+ integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==
dependencies:
- "@babel/types" "^7.20.7"
+ "@babel/types" "^7.22.15"
-"@babel/helper-module-imports@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
- integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
+"@babel/helper-module-transforms@^7.19.0", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz#3ec246457f6c842c0aee62a01f60739906f7047e"
+ integrity sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-module-imports" "^7.22.15"
+ "@babel/helper-simple-access" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@babel/helper-validator-identifier" "^7.22.20"
-"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6", "@babel/helper-module-transforms@^7.20.2", "@babel/helper-module-transforms@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.7.tgz#7a6c9a1155bef55e914af574153069c9d9470c43"
- integrity sha512-FNdu7r67fqMUSVuQpFQGE6BPdhJIhitoxhGzDbAXNcA07uoVG37fOiMk3OSV8rEICuyG6t8LGkd9EE64qIEoIA==
+"@babel/helper-optimise-call-expression@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e"
+ integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==
dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-simple-access" "^7.20.2"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/helper-validator-identifier" "^7.19.1"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
- "@babel/types" "^7.20.7"
+ "@babel/types" "^7.22.5"
-"@babel/helper-optimise-call-expression@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe"
- integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==
- dependencies:
- "@babel/types" "^7.18.6"
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
+ integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629"
- integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==
-
-"@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519"
- integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==
+"@babel/helper-remap-async-to-generator@^7.18.9", "@babel/helper-remap-async-to-generator@^7.22.5":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0"
+ integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-wrap-function" "^7.18.9"
- "@babel/types" "^7.18.9"
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-wrap-function" "^7.22.20"
-"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz#243ecd2724d2071532b2c8ad2f0f9f083bcae331"
- integrity sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==
+"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793"
+ integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==
dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-member-expression-to-functions" "^7.20.7"
- "@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
- "@babel/types" "^7.20.7"
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-member-expression-to-functions" "^7.22.15"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
-"@babel/helper-simple-access@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9"
- integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==
+"@babel/helper-simple-access@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de"
+ integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==
dependencies:
- "@babel/types" "^7.20.2"
+ "@babel/types" "^7.22.5"
-"@babel/helper-skip-transparent-expression-wrappers@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684"
- integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==
+"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847"
+ integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==
dependencies:
- "@babel/types" "^7.20.0"
+ "@babel/types" "^7.22.5"
-"@babel/helper-split-export-declaration@^7.18.6":
+"@babel/helper-split-export-declaration@7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075"
integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-string-parser@^7.19.4":
- version "7.19.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
- integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
-
-"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
- version "7.19.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
- integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
-
-"@babel/helper-validator-option@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
- integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
-
-"@babel/helper-wrap-function@^7.18.9":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3"
- integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==
- dependencies:
- "@babel/helper-function-name" "^7.19.0"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.5"
- "@babel/types" "^7.20.5"
-
-"@babel/helpers@^7.20.1", "@babel/helpers@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.7.tgz#04502ff0feecc9f20ecfaad120a18f011a8e6dce"
- integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==
- dependencies:
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
- "@babel/types" "^7.20.7"
-
-"@babel/highlight@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
- integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
- dependencies:
- "@babel/helper-validator-identifier" "^7.18.6"
- chalk "^2.0.0"
+"@babel/helper-split-export-declaration@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
+ integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-string-parser@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
+ integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
+
+"@babel/helper-validator-identifier@^7.22.20":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
+ integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
+
+"@babel/helper-validator-option@^7.18.6", "@babel/helper-validator-option@^7.22.15":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040"
+ integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==
+
+"@babel/helper-wrap-function@^7.22.20":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz#15352b0b9bfb10fc9c76f79f6342c00e3411a569"
+ integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==
+ dependencies:
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/template" "^7.22.15"
+ "@babel/types" "^7.22.19"
+
+"@babel/helpers@^7.19.0", "@babel/helpers@^7.20.7", "@babel/helpers@^7.23.2":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.2.tgz#2832549a6e37d484286e15ba36a5330483cac767"
+ integrity sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==
+ dependencies:
+ "@babel/template" "^7.22.15"
+ "@babel/traverse" "^7.23.2"
+ "@babel/types" "^7.23.0"
+
+"@babel/highlight@^7.22.13":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54"
+ integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.22.20"
+ chalk "^2.4.2"
js-tokens "^4.0.0"
-"@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.20.2", "@babel/parser@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b"
- integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==
+"@babel/parser@^7.14.7", "@babel/parser@^7.19.3", "@babel/parser@^7.20.7", "@babel/parser@^7.22.15", "@babel/parser@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719"
+ integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2"
- integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz#02dc8a03f613ed5fdc29fb2f728397c78146c962"
+ integrity sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz#d9c85589258539a22a901033853101a6198d4ef1"
- integrity sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
- "@babel/plugin-proposal-optional-chaining" "^7.20.7"
-
-"@babel/plugin-proposal-async-generator-functions@7.20.1":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz#352f02baa5d69f4e7529bdac39aaa02d41146af9"
- integrity sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.15.tgz#2aeb91d337d4e1a1e7ce85b76a37f5301781200f"
+ integrity sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==
dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/helper-remap-async-to-generator" "^7.18.9"
- "@babel/plugin-syntax-async-generators" "^7.8.4"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/plugin-transform-optional-chaining" "^7.22.15"
-"@babel/plugin-proposal-async-generator-functions@^7.20.1":
+"@babel/plugin-proposal-async-generator-functions@7.20.7", "@babel/plugin-proposal-async-generator-functions@^7.20.1":
version "7.20.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326"
integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==
@@ -607,11 +635,11 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-proposal-class-static-block@^7.18.6":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz#92592e9029b13b15be0f7ce6a7aedc2879ca45a7"
- integrity sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz#77bdd66fb7b605f3a61302d224bdfacf5547977d"
+ integrity sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.20.7"
+ "@babel/helper-create-class-features-plugin" "^7.21.0"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
@@ -682,10 +710,10 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
-"@babel/plugin-proposal-optional-chaining@^7.18.9", "@babel/plugin-proposal-optional-chaining@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz#49f2b372519ab31728cc14115bb0998b15bfda55"
- integrity sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==
+"@babel/plugin-proposal-optional-chaining@^7.18.9":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea"
+ integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
@@ -700,12 +728,12 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-proposal-private-property-in-object@^7.18.6":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz#309c7668f2263f1c711aa399b5a9a6291eef6135"
- integrity sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==
+ version "7.21.11"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz#69d597086b6760c4126525cfa154f34631ff272c"
+ integrity sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-create-class-features-plugin" "^7.20.5"
+ "@babel/helper-create-class-features-plugin" "^7.21.0"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
@@ -753,11 +781,11 @@
"@babel/helper-plugin-utils" "^7.8.3"
"@babel/plugin-syntax-import-assertions@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4"
- integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98"
+ integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-json-strings@^7.8.3":
version "7.8.3"
@@ -823,22 +851,13 @@
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-transform-arrow-functions@^7.18.6":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz#bea332b0e8b2dab3dafe55a163d8227531ab0551"
- integrity sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958"
+ integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-async-to-generator@7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615"
- integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==
- dependencies:
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-remap-async-to-generator" "^7.18.6"
-
-"@babel/plugin-transform-async-to-generator@^7.18.6":
+"@babel/plugin-transform-async-to-generator@7.20.7":
version "7.20.7"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz#dfee18623c8cb31deb796aa3ca84dda9cea94354"
integrity sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==
@@ -847,189 +866,207 @@
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-remap-async-to-generator" "^7.18.9"
+"@babel/plugin-transform-async-to-generator@^7.18.6":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775"
+ integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==
+ dependencies:
+ "@babel/helper-module-imports" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-remap-async-to-generator" "^7.22.5"
+
"@babel/plugin-transform-block-scoped-functions@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8"
- integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024"
+ integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-block-scoping@^7.20.2":
- version "7.20.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.8.tgz#ad142bce04ae32225e2379ca54f06d5cea92fdb8"
- integrity sha512-ztBCIWJvcWJvtxhMqIrItLmGlbxaa/5hl7HlZvV4f9oS08wWn/mEtf5D35qxFp3rTK8KjV9TePEoeal8z02gzA==
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz#8744d02c6c264d82e1a4bc5d2d501fd8aff6f022"
+ integrity sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-classes@^7.20.2":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz#f438216f094f6bb31dc266ebfab8ff05aecad073"
- integrity sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-compilation-targets" "^7.20.7"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-replace-supers" "^7.20.7"
- "@babel/helper-split-export-declaration" "^7.18.6"
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz#aaf4753aee262a232bbc95451b4bdf9599c65a0b"
+ integrity sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-compilation-targets" "^7.22.15"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.9"
+ "@babel/helper-split-export-declaration" "^7.22.6"
globals "^11.1.0"
"@babel/plugin-transform-computed-properties@^7.18.9":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz#704cc2fd155d1c996551db8276d55b9d46e4d0aa"
- integrity sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869"
+ integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/template" "^7.20.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/template" "^7.22.5"
"@babel/plugin-transform-destructuring@^7.20.2":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz#8bda578f71620c7de7c93af590154ba331415454"
- integrity sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz#6447aa686be48b32eaf65a73e0e2c0bd010a266c"
+ integrity sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8"
- integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165"
+ integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-duplicate-keys@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e"
- integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285"
+ integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-exponentiation-operator@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd"
- integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a"
+ integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==
dependencies:
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-for-of@^7.18.8":
- version "7.18.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1"
- integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz#f64b4ccc3a4f131a996388fae7680b472b306b29"
+ integrity sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-function-name@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0"
- integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143"
+ integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==
dependencies:
- "@babel/helper-compilation-targets" "^7.18.9"
- "@babel/helper-function-name" "^7.18.9"
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-compilation-targets" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-literals@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc"
- integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920"
+ integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-member-expression-literals@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e"
- integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def"
+ integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-modules-amd@^7.19.6":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.7.tgz#1e5cfeb4e5f9b392e86f85698896336b442f8760"
- integrity sha512-+1IVLD+dHOzRZWNFFSoyPZz4ffsVmOP+OhhjeahLKpU97v/52LcCb9RabRl5eHM1/HAuH5Dl0q9Pyzrq1v2otQ==
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz#05b2bc43373faa6d30ca89214731f76f966f3b88"
+ integrity sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==
dependencies:
- "@babel/helper-module-transforms" "^7.20.7"
- "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-module-transforms" "^7.23.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-modules-commonjs@^7.19.6":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.7.tgz#abb5f84695e74d46acf48244082f6cbf8bb23120"
- integrity sha512-76jqqFiFdCD+RJwEdtBHUG2/rEKQAmpejPbAKyQECEE3/y4U5CMPc9IXvipS990vgQhzq+ZRw6WJ+q4xJ/P24w==
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz#b3dba4757133b2762c00f4f94590cf6d52602481"
+ integrity sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==
dependencies:
- "@babel/helper-module-transforms" "^7.20.7"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-simple-access" "^7.20.2"
+ "@babel/helper-module-transforms" "^7.23.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-simple-access" "^7.22.5"
"@babel/plugin-transform-modules-systemjs@^7.19.6":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz#59e2a84064b5736a4471b1aa7b13d4431d327e0d"
- integrity sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz#77591e126f3ff4132a40595a6cccd00a6b60d160"
+ integrity sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==
dependencies:
- "@babel/helper-hoist-variables" "^7.18.6"
- "@babel/helper-module-transforms" "^7.19.6"
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/helper-validator-identifier" "^7.19.1"
+ "@babel/helper-hoist-variables" "^7.22.5"
+ "@babel/helper-module-transforms" "^7.23.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-validator-identifier" "^7.22.20"
"@babel/plugin-transform-modules-umd@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9"
- integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98"
+ integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==
dependencies:
- "@babel/helper-module-transforms" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-module-transforms" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-named-capturing-groups-regex@^7.19.1":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz#626298dd62ea51d452c3be58b285d23195ba69a8"
- integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f"
+ integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.20.5"
- "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-new-target@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8"
- integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d"
+ integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-object-super@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c"
- integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c"
+ integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-replace-supers" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.5"
+
+"@babel/plugin-transform-optional-chaining@^7.22.15":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz#73ff5fc1cf98f542f09f29c0631647d8ad0be158"
+ integrity sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-transform-parameters@^7.20.1", "@babel/plugin-transform-parameters@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz#0ee349e9d1bc96e78e3b37a7af423a4078a7083f"
- integrity sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz#719ca82a01d177af358df64a514d64c2e3edb114"
+ integrity sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-property-literals@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3"
- integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766"
+ integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-regenerator@^7.18.6":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz#57cda588c7ffb7f4f8483cc83bdcea02a907f04d"
- integrity sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==
+ version "7.22.10"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca"
+ integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
- regenerator-transform "^0.15.1"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ regenerator-transform "^0.15.2"
"@babel/plugin-transform-reserved-words@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a"
- integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb"
+ integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-runtime@7.19.6":
version "7.19.6"
@@ -1044,55 +1081,55 @@
semver "^6.3.0"
"@babel/plugin-transform-shorthand-properties@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9"
- integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624"
+ integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-spread@^7.19.0":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e"
- integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b"
+ integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
"@babel/plugin-transform-sticky-regex@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc"
- integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa"
+ integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-template-literals@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e"
- integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff"
+ integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-typeof-symbol@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0"
- integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34"
+ integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-unicode-escapes@^7.18.10":
- version "7.18.10"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz#1ecfb0eda83d09bbcb77c09970c2dd55832aa246"
- integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==
+ version "7.22.10"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz#c723f380f40a2b2f57a62df24c9005834c8616d9"
+ integrity sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-unicode-regex@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca"
- integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183"
+ integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/preset-env@7.20.2":
version "7.20.2"
@@ -1176,9 +1213,9 @@
semver "^6.3.0"
"@babel/preset-modules@^0.1.5":
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9"
- integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6.tgz#31bcdd8f19538437339d17af00d177d854d9d458"
+ integrity sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
@@ -1186,30 +1223,26 @@
"@babel/types" "^7.4.4"
esutils "^2.0.2"
-"@babel/runtime@7.20.1":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.1.tgz#1148bb33ab252b165a06698fde7576092a78b4a9"
- integrity sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==
- dependencies:
- regenerator-runtime "^0.13.10"
+"@babel/regjsgen@^0.8.0":
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
+ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
-"@babel/runtime@^7.8.4":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.7.tgz#fcb41a5a70550e04a7b708037c7c32f7f356d8fd"
- integrity sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==
+"@babel/runtime@7.20.13":
+ version "7.20.13"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.13.tgz#7055ab8a7cff2b8f6058bf6ae45ff84ad2aded4b"
+ integrity sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==
dependencies:
regenerator-runtime "^0.13.11"
-"@babel/template@7.18.10":
- version "7.18.10"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71"
- integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==
+"@babel/runtime@^7.8.4":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.2.tgz#062b0ac103261d68a966c4c7baf2ae3e62ec3885"
+ integrity sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==
dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/parser" "^7.18.10"
- "@babel/types" "^7.18.10"
+ regenerator-runtime "^0.14.0"
-"@babel/template@^7.18.10", "@babel/template@^7.20.7":
+"@babel/template@7.20.7":
version "7.20.7"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8"
integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==
@@ -1218,29 +1251,38 @@
"@babel/parser" "^7.20.7"
"@babel/types" "^7.20.7"
-"@babel/traverse@^7.20.1", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7":
- version "7.20.8"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.8.tgz#e3a23eb04af24f8bbe8a8ba3eef6155b77df0b08"
- integrity sha512-/RNkaYDeCy4MjyV70+QkSHhxbvj2JO/5Ft2Pa880qJOG8tWrqcT/wXUuCCv43yogfqPzHL77Xu101KQPf4clnQ==
- dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.7"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-hoist-variables" "^7.18.6"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.20.7"
- "@babel/types" "^7.20.7"
+"@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.22.15", "@babel/template@^7.22.5":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38"
+ integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==
+ dependencies:
+ "@babel/code-frame" "^7.22.13"
+ "@babel/parser" "^7.22.15"
+ "@babel/types" "^7.22.15"
+
+"@babel/traverse@^7.19.3", "@babel/traverse@^7.20.12", "@babel/traverse@^7.23.2":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8"
+ integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==
+ dependencies:
+ "@babel/code-frame" "^7.22.13"
+ "@babel/generator" "^7.23.0"
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-function-name" "^7.23.0"
+ "@babel/helper-hoist-variables" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@babel/parser" "^7.23.0"
+ "@babel/types" "^7.23.0"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.4.4":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f"
- integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==
+"@babel/types@^7.18.6", "@babel/types@^7.19.3", "@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.4.4":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb"
+ integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==
dependencies:
- "@babel/helper-string-parser" "^7.19.4"
- "@babel/helper-validator-identifier" "^7.19.1"
+ "@babel/helper-string-parser" "^7.22.5"
+ "@babel/helper-validator-identifier" "^7.22.20"
to-fast-properties "^2.0.0"
"@discoveryjs/json-ext@0.5.7":
@@ -1248,24 +1290,136 @@
resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
-"@esbuild/android-arm@0.15.13":
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.15.13.tgz#ce11237a13ee76d5eae3908e47ba4ddd380af86a"
- integrity sha512-RY2fVI8O0iFUNvZirXaQ1vMvK0xhCcl0gqRj74Z6yEiO1zAUa7hbsdwZM1kzqbxHK7LFyMizipfXT3JME+12Hw==
+"@esbuild/android-arm64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.8.tgz#b3d5b65a3b2e073a6c7ee36b1f3c30c8f000315b"
+ integrity sha512-oa/N5j6v1svZQs7EIRPqR8f+Bf8g6HBDjD/xHC02radE/NjKHK7oQmtmLxPs1iVwYyvE+Kolo6lbpfEQ9xnhxQ==
+
+"@esbuild/android-arm@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.8.tgz#c41e496af541e175369d48164d0cf01a5f656cf6"
+ integrity sha512-0/rb91GYKhrtbeglJXOhAv9RuYimgI8h623TplY2X+vA4EXnk3Zj1fXZreJ0J3OJJu1bwmb0W7g+2cT/d8/l/w==
+
+"@esbuild/android-x64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.8.tgz#080fa67c29be77f5a3ca5ee4cc78d5bf927e3a3b"
+ integrity sha512-bTliMLqD7pTOoPg4zZkXqCDuzIUguEWLpeqkNfC41ODBHwoUgZ2w5JBeYimv4oP6TDVocoYmEhZrCLQTrH89bg==
+
+"@esbuild/darwin-arm64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.8.tgz#053622bf9a82f43d5c075b7818e02618f7b4a397"
+ integrity sha512-ghAbV3ia2zybEefXRRm7+lx8J/rnupZT0gp9CaGy/3iolEXkJ6LYRq4IpQVI9zR97ID80KJVoUlo3LSeA/sMAg==
+
+"@esbuild/darwin-x64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.8.tgz#8a1aadb358d537d8efad817bb1a5bff91b84734b"
+ integrity sha512-n5WOpyvZ9TIdv2V1K3/iIkkJeKmUpKaCTdun9buhGRWfH//osmUjlv4Z5mmWdPWind/VGcVxTHtLfLCOohsOXw==
+
+"@esbuild/freebsd-arm64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.8.tgz#e6738d0081ba0721a5c6c674e84c6e7fcea61989"
+ integrity sha512-a/SATTaOhPIPFWvHZDoZYgxaZRVHn0/LX1fHLGfZ6C13JqFUZ3K6SMD6/HCtwOQ8HnsNaEeokdiDSFLuizqv5A==
+
+"@esbuild/freebsd-x64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.8.tgz#1855e562f2b730f4483f6e94086e9e2597feb4c3"
+ integrity sha512-xpFJb08dfXr5+rZc4E+ooZmayBW6R3q59daCpKZ/cDU96/kvDM+vkYzNeTJCGd8rtO6fHWMq5Rcv/1cY6p6/0Q==
+
+"@esbuild/linux-arm64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.8.tgz#481da38952721a3fdb77c17a36ceaacc4270b5c5"
+ integrity sha512-v3iwDQuDljLTxpsqQDl3fl/yihjPAyOguxuloON9kFHYwopeJEf1BkDXODzYyXEI19gisEsQlG1bM65YqKSIww==
+
+"@esbuild/linux-arm@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.8.tgz#18127072b270bb6321c6d11be20bfd30e0d6ad17"
+ integrity sha512-6Ij8gfuGszcEwZpi5jQIJCVIACLS8Tz2chnEBfYjlmMzVsfqBP1iGmHQPp7JSnZg5xxK9tjCc+pJ2WtAmPRFVA==
+
+"@esbuild/linux-ia32@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.8.tgz#ee400af7b3bc69e8ca2e593ca35156ffb9abd54f"
+ integrity sha512-8svILYKhE5XetuFk/B6raFYIyIqydQi+GngEXJgdPdI7OMKUbSd7uzR02wSY4kb53xBrClLkhH4Xs8P61Q2BaA==
+
+"@esbuild/linux-loong64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.8.tgz#8c509d8a454693d39824b83b3f66c400872fce82"
+ integrity sha512-B6FyMeRJeV0NpyEOYlm5qtQfxbdlgmiGdD+QsipzKfFky0K5HW5Td6dyK3L3ypu1eY4kOmo7wW0o94SBqlqBSA==
+
+"@esbuild/linux-mips64el@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.8.tgz#f2b0d36e63fb26bc3f95b203b6a80638292101ca"
+ integrity sha512-CCb67RKahNobjm/eeEqeD/oJfJlrWyw29fgiyB6vcgyq97YAf3gCOuP6qMShYSPXgnlZe/i4a8WFHBw6N8bYAA==
+
+"@esbuild/linux-ppc64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.8.tgz#1e628be003e036e90423716028cc884fe5ba25bd"
+ integrity sha512-bytLJOi55y55+mGSdgwZ5qBm0K9WOCh0rx+vavVPx+gqLLhxtSFU0XbeYy/dsAAD6xECGEv4IQeFILaSS2auXw==
+
+"@esbuild/linux-riscv64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.8.tgz#419a815cb4c3fb9f1b78ef5295f5b48b8bf6427a"
+ integrity sha512-2YpRyQJmKVBEHSBLa8kBAtbhucaclb6ex4wchfY0Tj3Kg39kpjeJ9vhRU7x4mUpq8ISLXRXH1L0dBYjAeqzZAw==
+
+"@esbuild/linux-s390x@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.8.tgz#291c49ae5c3d11d226352755c0835911fe1a9e5c"
+ integrity sha512-QgbNY/V3IFXvNf11SS6exkpVcX0LJcob+0RWCgV9OiDAmVElnxciHIisoSix9uzYzScPmS6dJFbZULdSAEkQVw==
+
+"@esbuild/linux-x64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.8.tgz#03199d91c76faf80bd54104f5cbf0a489bc39f6a"
+ integrity sha512-mM/9S0SbAFDBc4OPoyP6SEOo5324LpUxdpeIUUSrSTOfhHU9hEfqRngmKgqILqwx/0DVJBzeNW7HmLEWp9vcOA==
+
+"@esbuild/netbsd-x64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.8.tgz#b436d767e1b21852f9ed212e2bb57f77203b0ae2"
+ integrity sha512-eKUYcWaWTaYr9zbj8GertdVtlt1DTS1gNBWov+iQfWuWyuu59YN6gSEJvFzC5ESJ4kMcKR0uqWThKUn5o8We6Q==
+
+"@esbuild/openbsd-x64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.8.tgz#d1481d8539e21d4729cd04a0450a26c2c8789e89"
+ integrity sha512-Vc9J4dXOboDyMXKD0eCeW0SIeEzr8K9oTHJU+Ci1mZc5njPfhKAqkRt3B/fUNU7dP+mRyralPu8QUkiaQn7iIg==
+
+"@esbuild/sunos-x64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.8.tgz#2cfb8126e079b2c00fd1bf095541e9f5c47877e4"
+ integrity sha512-0xvOTNuPXI7ft1LYUgiaXtpCEjp90RuBBYovdd2lqAFxje4sEucurg30M1WIm03+3jxByd3mfo+VUmPtRSVuOw==
+
+"@esbuild/win32-arm64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.8.tgz#7c6ecfd097ca23b82119753bf7072bbaefe51e3a"
+ integrity sha512-G0JQwUI5WdEFEnYNKzklxtBheCPkuDdu1YrtRrjuQv30WsYbkkoixKxLLv8qhJmNI+ATEWquZe/N0d0rpr55Mg==
+
+"@esbuild/win32-ia32@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.8.tgz#cffec63c3cb0ef8563a04df4e09fa71056171d00"
+ integrity sha512-Fqy63515xl20OHGFykjJsMnoIWS+38fqfg88ClvPXyDbLtgXal2DTlhb1TfTX34qWi3u4I7Cq563QcHpqgLx8w==
+
+"@esbuild/win32-x64@0.17.8":
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.8.tgz#200a0965cf654ac28b971358ecdca9cc5b44c335"
+ integrity sha512-1iuezdyDNngPnz8rLRDO2C/ZZ/emJLb72OsZeqQ6gL6Avko/XCXZw+NuxBSNhBAP13Hie418V7VMt9et1FMvpg==
+
+"@eslint-community/eslint-utils@^4.2.0":
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
+ integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
+ dependencies:
+ eslint-visitor-keys "^3.3.0"
-"@esbuild/linux-loong64@0.15.13":
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.15.13.tgz#64e8825bf0ce769dac94ee39d92ebe6272020dfc"
- integrity sha512-+BoyIm4I8uJmH/QDIH0fu7MG0AEx9OXEDXnqptXCwKOlOqZiS4iraH1Nr7/ObLMokW3sOCeBNyD68ATcV9b9Ag==
+"@eslint-community/regexpp@^4.6.1":
+ version "4.9.1"
+ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.9.1.tgz#449dfa81a57a1d755b09aa58d826c1262e4283b4"
+ integrity sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==
-"@eslint/eslintrc@^1.4.0":
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.4.0.tgz#8ec64e0df3e7a1971ee1ff5158da87389f167a63"
- integrity sha512-7yfvXy6MWLgWSFsLhz5yH3iQ52St8cdUY6FoGieKkRDVxuxmrNuUetIuu6cmjNWwniUHiWXjxCr5tTXDrbYS5A==
+"@eslint/eslintrc@^2.1.2":
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.2.tgz#c6936b4b328c64496692f76944e755738be62396"
+ integrity sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
- espree "^9.4.0"
+ espree "^9.6.0"
globals "^13.19.0"
ignore "^5.2.0"
import-fresh "^3.2.1"
@@ -1273,17 +1427,17 @@
minimatch "^3.1.2"
strip-json-comments "^3.1.1"
-"@gar/promisify@^1.1.3":
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
- integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
+"@eslint/js@8.52.0":
+ version "8.52.0"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.52.0.tgz#78fe5f117840f69dc4a353adf9b9cd926353378c"
+ integrity sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==
-"@humanwhocodes/config-array@^0.11.8":
- version "0.11.8"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9"
- integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==
+"@humanwhocodes/config-array@^0.11.13":
+ version "0.11.13"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.13.tgz#075dc9684f40a531d9b26b0822153c1e832ee297"
+ integrity sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==
dependencies:
- "@humanwhocodes/object-schema" "^1.2.1"
+ "@humanwhocodes/object-schema" "^2.0.1"
debug "^4.1.1"
minimatch "^3.0.5"
@@ -1292,10 +1446,22 @@
resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
-"@humanwhocodes/object-schema@^1.2.1":
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
- integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
+"@humanwhocodes/object-schema@^2.0.1":
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz#e5211452df060fa8522b55c7b3c0c4d1981cb044"
+ integrity sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==
+
+"@isaacs/cliui@^8.0.2":
+ version "8.0.2"
+ resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
+ integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==
+ dependencies:
+ string-width "^5.1.2"
+ string-width-cjs "npm:string-width@^4.2.0"
+ strip-ansi "^7.0.1"
+ strip-ansi-cjs "npm:strip-ansi@^6.0.1"
+ wrap-ansi "^8.1.0"
+ wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
"@istanbuljs/load-nyc-config@^1.0.0":
version "1.1.0"
@@ -1322,54 +1488,54 @@
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9"
- integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098"
+ integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
-"@jridgewell/resolve-uri@3.1.0":
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
- integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
+"@jridgewell/resolve-uri@^3.1.0":
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721"
+ integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==
"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
version "1.1.2"
resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
-"@jridgewell/source-map@^0.3.2":
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb"
- integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==
+"@jridgewell/source-map@^0.3.2", "@jridgewell/source-map@^0.3.3":
+ version "0.3.5"
+ resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91"
+ integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
-"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13", "@jridgewell/sourcemap-codec@^1.4.14":
- version "1.4.14"
- resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
- integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
+"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13", "@jridgewell/sourcemap-codec@^1.4.14":
+ version "1.4.15"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
+ integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
-"@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.9":
- version "0.3.17"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985"
- integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==
+"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
+ version "0.3.20"
+ resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f"
+ integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==
dependencies:
- "@jridgewell/resolve-uri" "3.1.0"
- "@jridgewell/sourcemap-codec" "1.4.14"
+ "@jridgewell/resolve-uri" "^3.1.0"
+ "@jridgewell/sourcemap-codec" "^1.4.14"
"@leichtgewicht/ip-codec@^2.0.1":
version "2.0.4"
resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b"
integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==
-"@ngtools/webpack@15.0.4":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-15.0.4.tgz#c1fe2feeab9f7933ef3e76682b26e11d8cd02423"
- integrity sha512-+1riOTohRHhN2N8Y+usHFtNz+Rt6q/44puj9rwjlKwWIA+6qxAv3kQhVHivVaU3bCAB9B/3jAxSuZTNHk0wgTg==
+"@ngtools/webpack@15.2.10":
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-15.2.10.tgz#8118450206ae9398d81ca2eebe1b369321ac5583"
+ integrity sha512-ZExB4rKh/Saad31O/Ofd2XvRuILuCNTYs0+qJL697Be2pzeewvzBhE4Xe1Mm7Jg13aWSPeuIdzSGOqCdwxxxFQ==
"@nodelib/fs.scandir@2.1.5":
version "2.1.5"
@@ -1392,14 +1558,6 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@npmcli/fs@^2.1.0":
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.2.tgz#a9e2541a4a2fec2e69c29b35e6060973da79b865"
- integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==
- dependencies:
- "@gar/promisify" "^1.1.3"
- semver "^7.3.5"
-
"@npmcli/fs@^3.1.0":
version "3.1.0"
resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.0.tgz#233d43a25a91d68c3a863ba0da6a3f00924a173e"
@@ -1408,13 +1566,12 @@
semver "^7.3.5"
"@npmcli/git@^4.0.0":
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-4.0.3.tgz#354db5fe1f29696303638e191d8538ee9b01b4bb"
- integrity sha512-8cXNkDIbnXPVbhXMmQ7/bklCAjtmPaXfI9aEM4iH+xSuEHINLMHhlfESvVwdqmHJRJkR48vNJTSUvoF6GRPSFA==
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-4.1.0.tgz#ab0ad3fd82bc4d8c1351b6c62f0fa56e8fe6afa6"
+ integrity sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==
dependencies:
"@npmcli/promise-spawn" "^6.0.0"
lru-cache "^7.4.4"
- mkdirp "^1.0.4"
npm-pick-manifest "^8.0.0"
proc-log "^3.0.0"
promise-inflight "^1.0.1"
@@ -1423,21 +1580,13 @@
which "^3.0.0"
"@npmcli/installed-package-contents@^2.0.1":
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-2.0.1.tgz#3cad3141c95613426820128757a3549bef1b346b"
- integrity sha512-GIykAFdOVK31Q1/zAtT5MbxqQL2vyl9mvFJv+OGu01zxbhL3p0xc8gJjdNGX1mWmUT43aEKVO2L6V/2j4TOsAA==
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz#bfd817eccd9e8df200919e73f57f9e3d9e4f9e33"
+ integrity sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==
dependencies:
npm-bundled "^3.0.0"
npm-normalize-package-bin "^3.0.0"
-"@npmcli/move-file@^2.0.0":
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-2.0.1.tgz#26f6bdc379d87f75e55739bab89db525b06100e4"
- integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==
- dependencies:
- mkdirp "^1.0.4"
- rimraf "^3.0.2"
-
"@npmcli/node-gyp@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz#101b2d0490ef1aa20ed460e4c0813f0db560545a"
@@ -1451,9 +1600,9 @@
which "^3.0.0"
"@npmcli/run-script@^6.0.0":
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-6.0.0.tgz#f89e322c729e26ae29db6cc8cc76559074aac208"
- integrity sha512-ql+AbRur1TeOdl1FY+RAwGW9fcr4ZwiVKabdvm93mujGREVuVLbdkXRJDrkTXSdCjaxYydr1wlA2v67jxWG5BQ==
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-6.0.2.tgz#a25452d45ee7f7fb8c16dfaf9624423c0c0eb885"
+ integrity sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA==
dependencies:
"@npmcli/node-gyp" "^3.0.0"
"@npmcli/promise-spawn" "^6.0.0"
@@ -1461,34 +1610,34 @@
read-package-json-fast "^3.0.0"
which "^3.0.0"
-"@picovoice/picovoice-angular@~2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@picovoice/picovoice-angular/-/picovoice-angular-2.2.1.tgz#021c91d9c5fd263a55b0cd2afc16854c6305be24"
- integrity sha512-mGYJxlF34J1FNKnJra3B7F6sHnd6vcdZuaW9/MhFpdTXv7bwfgXapmR03kg+LUdQyjMrXs6tIKr1ryMGZU6l4g==
+"@picovoice/picovoice-angular@~3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/picovoice-angular/-/picovoice-angular-3.0.0.tgz#437bec1705f4a6c9e7e99219434a666982694345"
+ integrity sha512-QwfPMeJhqgRhFXCoMNWSxURFYvm06TFgzWBsiZe5V9k1Z20RWeIW/CpG1EzfqGqRiEEtwukqEXzz0VBjsZdRtw==
dependencies:
- "@picovoice/picovoice-web" "=2.2.1"
+ "@picovoice/picovoice-web" "=3.0.0"
tslib "^2.3.0"
-"@picovoice/picovoice-web@=2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@picovoice/picovoice-web/-/picovoice-web-2.2.1.tgz#55f7f43ce7cd524616d3ceb2049576d2bcabd17e"
- integrity sha512-Wl5ikiwzUXAilEbXVKz3Up9xmuEgRplYbIob3NgdzixyJMB/6Vm2CsjC9kh8KqHvrk5HKb/RBRI2x4Hh/PpF9Q==
+"@picovoice/picovoice-web@=3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/picovoice-web/-/picovoice-web-3.0.0.tgz#e7e8dccbb90634db6db7b04ce31dcb830076f9ac"
+ integrity sha512-A0QY7FO0BomX1g/FMtMUtuSJQnvD5lvSLBaJe1B3iIZxGvdnR45fkLyLXDUEkQD+7wbctdhKWjfhnnOZMbBaGA==
dependencies:
- "@picovoice/porcupine-web" "=2.2.1"
- "@picovoice/rhino-web" "=2.2.1"
+ "@picovoice/porcupine-web" "=3.0.0"
+ "@picovoice/rhino-web" "=3.0.0"
"@picovoice/web-utils" "=1.3.1"
-"@picovoice/porcupine-web@=2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@picovoice/porcupine-web/-/porcupine-web-2.2.1.tgz#d1302405309b8222105c216dc3dfc1ef346015f0"
- integrity sha512-EX40nkUwWusQrbUaQjn2ZP4lYBfjztcXrnFmXQPUL7NuknTVbDAG2t5pEzSTjyb6n/91nXcEOC1EGi5u3xRSzA==
+"@picovoice/porcupine-web@=3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/porcupine-web/-/porcupine-web-3.0.0.tgz#e97e5e90b37af2b4938637efcaaf3cedc9fad6a3"
+ integrity sha512-zwhdh2YHy867wwp6G9YQU0q94VCveOQAAjeeDNFK/poJVtCaVc56kFH7wW0odkJ6s49ob8rQwOBdg7iPpZD0Fw==
dependencies:
"@picovoice/web-utils" "=1.3.1"
-"@picovoice/rhino-web@=2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@picovoice/rhino-web/-/rhino-web-2.2.1.tgz#68ece011d99ecd638e8935147c8e443c294becf5"
- integrity sha512-kwNNvuUt+6x/kfLplLeCV1J2RbTZEkKwe5WoyY6yZbtJB1Tb/+HcWlNaeSU1kLTegxZ6UL+ETT/gay4psDKLmQ==
+"@picovoice/rhino-web@=3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/rhino-web/-/rhino-web-3.0.0.tgz#d3cf3a4d4062726e2f7be5926122e8833e8857a7"
+ integrity sha512-P0sA19lpuh1szkzXgfRxR1bhldoLqkfQP0Ok9uViZYYfX6jcknEziYhNIiAqGdVOexuPbXupAmNsTAru7FfuqQ==
dependencies:
"@picovoice/web-utils" "=1.3.1"
@@ -1506,131 +1655,196 @@
dependencies:
"@picovoice/web-utils" "=1.3.1"
-"@schematics/angular@15.0.4":
- version "15.0.4"
- resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-15.0.4.tgz#87a59551417b87547a129cdca1d07b236402df89"
- integrity sha512-4l4WZlr9MnhXo2B7eLczttgkeq8Agm3zfiX0trYkOdYqLtzOKxPiI+RrZSsfIDmmLSE1EillZ3PtDImMzAgQPg==
+"@pkgjs/parseargs@^0.11.0":
+ version "0.11.0"
+ resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
+ integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
+
+"@schematics/angular@15.2.10":
+ version "15.2.10"
+ resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-15.2.10.tgz#fa6c05f37ba82422abd6b3f13a2fc78ec7a4eb3d"
+ integrity sha512-eLdyP+T1TueNQ8FCP7sP+tt8z+YQ1BINsJsyAyoJT/XZjcCV7LUxgDIU94/kuvIotmJ2xTuFWHFPfAY+CN3duQ==
dependencies:
- "@angular-devkit/core" "15.0.4"
- "@angular-devkit/schematics" "15.0.4"
+ "@angular-devkit/core" "15.2.10"
+ "@angular-devkit/schematics" "15.2.10"
jsonc-parser "3.2.0"
+"@sigstore/bundle@^1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-1.1.0.tgz#17f8d813b09348b16eeed66a8cf1c3d6bd3d04f1"
+ integrity sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==
+ dependencies:
+ "@sigstore/protobuf-specs" "^0.2.0"
+
+"@sigstore/protobuf-specs@^0.2.0":
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz#be9ef4f3c38052c43bd399d3f792c97ff9e2277b"
+ integrity sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==
+
+"@sigstore/sign@^1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-1.0.0.tgz#6b08ebc2f6c92aa5acb07a49784cb6738796f7b4"
+ integrity sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==
+ dependencies:
+ "@sigstore/bundle" "^1.1.0"
+ "@sigstore/protobuf-specs" "^0.2.0"
+ make-fetch-happen "^11.0.1"
+
+"@sigstore/tuf@^1.0.3":
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-1.0.3.tgz#2a65986772ede996485728f027b0514c0b70b160"
+ integrity sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==
+ dependencies:
+ "@sigstore/protobuf-specs" "^0.2.0"
+ tuf-js "^1.1.7"
+
"@tootallnate/once@2":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf"
integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==
+"@tufjs/canonical-json@1.0.0":
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz#eade9fd1f537993bc1f0949f3aea276ecc4fab31"
+ integrity sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==
+
+"@tufjs/models@1.0.4":
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-1.0.4.tgz#5a689630f6b9dbda338d4b208019336562f176ef"
+ integrity sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==
+ dependencies:
+ "@tufjs/canonical-json" "1.0.0"
+ minimatch "^9.0.0"
+
"@types/body-parser@*":
- version "1.19.2"
- resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0"
- integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==
+ version "1.19.4"
+ resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.4.tgz#78ad68f1f79eb851aa3634db0c7f57f6f601b462"
+ integrity sha512-N7UDG0/xiPQa2D/XrVJXjkWbpqHCd2sBaB32ggRF2l83RhPfamgKGF8gwwqyksS95qUS5ZYF9aF+lLPRlwI2UA==
dependencies:
"@types/connect" "*"
"@types/node" "*"
"@types/bonjour@^3.5.9":
- version "3.5.10"
- resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.10.tgz#0f6aadfe00ea414edc86f5d106357cda9701e275"
- integrity sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==
+ version "3.5.12"
+ resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.12.tgz#49badafb988e6c433ca675a5fd769b93b7649fc8"
+ integrity sha512-ky0kWSqXVxSqgqJvPIkgFkcn4C8MnRog308Ou8xBBIVo39OmUFy+jqNe0nPwLCDFxUpmT9EvT91YzOJgkDRcFg==
dependencies:
"@types/node" "*"
"@types/connect-history-api-fallback@^1.3.5":
- version "1.3.5"
- resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz#d1f7a8a09d0ed5a57aee5ae9c18ab9b803205dae"
- integrity sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==
+ version "1.5.2"
+ resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.2.tgz#acf51e088b3bb6507f7b093bd2b0de20940179cc"
+ integrity sha512-gX2j9x+NzSh4zOhnRPSdPPmTepS4DfxES0AvIFv3jGv5QyeAJf6u6dY5/BAoAJU9Qq1uTvwOku8SSC2GnCRl6Q==
dependencies:
"@types/express-serve-static-core" "*"
"@types/node" "*"
"@types/connect@*":
- version "3.4.35"
- resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1"
- integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==
+ version "3.4.37"
+ resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.37.tgz#c66a96689fd3127c8772eb3e9e5c6028ec1a9af5"
+ integrity sha512-zBUSRqkfZ59OcwXon4HVxhx5oWCJmc0OtBTK05M+p0dYjgN6iTwIL2T/WbsQZrEsdnwaF9cWQ+azOnpPvIqY3Q==
dependencies:
"@types/node" "*"
"@types/eslint-scope@^3.7.3":
- version "3.7.4"
- resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16"
- integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==
+ version "3.7.6"
+ resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.6.tgz#585578b368ed170e67de8aae7b93f54a1b2fdc26"
+ integrity sha512-zfM4ipmxVKWdxtDaJ3MP3pBurDXOCoyjvlpE3u6Qzrmw4BPbfm4/ambIeTk/r/J0iq/+2/xp0Fmt+gFvXJY2PQ==
dependencies:
"@types/eslint" "*"
"@types/estree" "*"
"@types/eslint@*":
- version "8.4.10"
- resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.4.10.tgz#19731b9685c19ed1552da7052b6f668ed7eb64bb"
- integrity sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==
+ version "8.44.6"
+ resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.6.tgz#60e564551966dd255f4c01c459f0b4fb87068603"
+ integrity sha512-P6bY56TVmX8y9J87jHNgQh43h6VVU+6H7oN7hgvivV81K2XY8qJZ5vqPy/HdUoVIelii2kChYVzQanlswPWVFw==
dependencies:
"@types/estree" "*"
"@types/json-schema" "*"
"@types/estree@*":
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.0.tgz#5fb2e536c1ae9bf35366eed879e827fa59ca41c2"
- integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.3.tgz#2be19e759a3dd18c79f9f436bd7363556c1a73dd"
+ integrity sha512-CS2rOaoQ/eAgAfcTfq6amKG7bsN+EMcgGY4FAFQdvSj2y1ixvOZTUA9mOtCai7E1SYu283XNw7urKK30nP3wkQ==
"@types/estree@^0.0.51":
version "0.0.51"
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40"
integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==
-"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.31":
- version "4.17.31"
- resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz#a1139efeab4e7323834bb0226e62ac019f474b2f"
- integrity sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==
+"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33":
+ version "4.17.39"
+ resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.39.tgz#2107afc0a4b035e6cb00accac3bdf2d76ae408c8"
+ integrity sha512-BiEUfAiGCOllomsRAZOiMFP7LAnrifHpt56pc4Z7l9K6ACyN06Ns1JLMBxwkfLOjJRlSf06NwWsT7yzfpaVpyQ==
dependencies:
"@types/node" "*"
"@types/qs" "*"
"@types/range-parser" "*"
+ "@types/send" "*"
"@types/express@*", "@types/express@^4.17.13":
- version "4.17.15"
- resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.15.tgz#9290e983ec8b054b65a5abccb610411953d417ff"
- integrity sha512-Yv0k4bXGOH+8a+7bELd2PqHQsuiANB+A8a4gnQrkRWzrkKlb6KHaVvyXhqs04sVW/OWlbPyYxRgYlIXLfrufMQ==
+ version "4.17.20"
+ resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.20.tgz#e7c9b40276d29e38a4e3564d7a3d65911e2aa433"
+ integrity sha512-rOaqlkgEvOW495xErXMsmyX3WKBInbhG5eqojXYi3cGUaLoRDlXa5d52fkfWZT963AZ3v2eZ4MbKE6WpDAGVsw==
dependencies:
"@types/body-parser" "*"
- "@types/express-serve-static-core" "^4.17.31"
+ "@types/express-serve-static-core" "^4.17.33"
"@types/qs" "*"
"@types/serve-static" "*"
+"@types/http-errors@*":
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.3.tgz#c54e61f79b3947d040f150abd58f71efb422ff62"
+ integrity sha512-pP0P/9BnCj1OVvQR2lF41EkDG/lWWnDyA203b/4Fmi2eTyORnBtcDoKDwjWQthELrBvWkMOrvSOnZ8OVlW6tXA==
+
"@types/http-proxy@^1.17.8":
- version "1.17.9"
- resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.9.tgz#7f0e7931343761efde1e2bf48c40f02f3f75705a"
- integrity sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==
+ version "1.17.13"
+ resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.13.tgz#dd3a4da550580eb0557d4c7128a2ff1d1a38d465"
+ integrity sha512-GkhdWcMNiR5QSQRYnJ+/oXzu0+7JJEPC8vkWXK351BkhjraZF+1W13CUYARUvX9+NqIU2n6YHA4iwywsc/M6Sw==
dependencies:
"@types/node" "*"
"@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
- version "7.0.11"
- resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
- integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
+ version "7.0.14"
+ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.14.tgz#74a97a5573980802f32c8e47b663530ab3b6b7d1"
+ integrity sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==
"@types/mime@*":
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10"
- integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.3.tgz#886674659ce55fe7c6c06ec5ca7c0eb276a08f91"
+ integrity sha512-i8MBln35l856k5iOhKk2XJ4SeAWg75mLIpZB4v6imOagKL6twsukBZGDMNhdOVk7yRFTMPpfILocMos59Q1otQ==
-"@types/node@*", "@types/node@^18.11.12":
- version "18.11.17"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.17.tgz#5c009e1d9c38f4a2a9d45c0b0c493fe6cdb4bcb5"
- integrity sha512-HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng==
+"@types/mime@^1":
+ version "1.3.4"
+ resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.4.tgz#a4ed836e069491414bab92c31fdea9e557aca0d9"
+ integrity sha512-1Gjee59G25MrQGk8bsNvC6fxNiRgUlGn2wlhGf95a59DrprnnHk80FIMMFG9XHMdrfsuA119ht06QPDXA1Z7tw==
+
+"@types/node@*":
+ version "20.8.8"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.8.tgz#adee050b422061ad5255fc38ff71b2bb96ea2a0e"
+ integrity sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==
+ dependencies:
+ undici-types "~5.25.1"
+
+"@types/node@^18.11.12":
+ version "18.18.6"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.18.6.tgz#26da694f75cdb057750f49d099da5e3f3824cb3e"
+ integrity sha512-wf3Vz+jCmOQ2HV1YUJuCWdL64adYxumkrxtc+H1VUQlnQI04+5HtH+qZCOE21lBE7gIrt+CwX2Wv8Acrw5Ak6w==
"@types/parse-json@^4.0.0":
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
- integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.1.tgz#27f7559836ad796cea31acb63163b203756a5b4e"
+ integrity sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng==
"@types/qs@*":
- version "6.9.7"
- resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb"
- integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==
+ version "6.9.9"
+ resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.9.tgz#66f7b26288f6799d279edf13da7ccd40d2fa9197"
+ integrity sha512-wYLxw35euwqGvTDx6zfY1vokBFnsK0HNrzc6xNHchxfO2hpuRg74GbkEW7e3sSmPvj0TjCDT1VCa6OtHXnubsg==
"@types/range-parser@*":
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc"
- integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==
+ version "1.2.6"
+ resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.6.tgz#7cb33992049fd7340d5b10c0098e104184dfcd2a"
+ integrity sha512-+0autS93xyXizIYiyL02FCY8N+KkKPhILhcUSA276HxzreZ16kl+cmwvV2qAM/PuCCwPXzOXOWhiPcw20uSFcA==
"@types/retry@0.12.0":
version "0.12.0"
@@ -1638,36 +1852,45 @@
integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==
"@types/semver@^7.3.12":
- version "7.3.13"
- resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91"
- integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==
+ version "7.5.4"
+ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.4.tgz#0a41252ad431c473158b22f9bfb9a63df7541cff"
+ integrity sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ==
+
+"@types/send@*":
+ version "0.17.3"
+ resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.3.tgz#81b2ea5a3a18aad357405af2d643ccbe5a09020b"
+ integrity sha512-/7fKxvKUoETxjFUsuFlPB9YndePpxxRAOfGC/yJdc9kTjTeP5kRCTzfnE8kPUKCeyiyIZu0YQ76s50hCedI1ug==
+ dependencies:
+ "@types/mime" "^1"
+ "@types/node" "*"
"@types/serve-index@^1.9.1":
- version "1.9.1"
- resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.1.tgz#1b5e85370a192c01ec6cec4735cf2917337a6278"
- integrity sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==
+ version "1.9.3"
+ resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.3.tgz#af9403916eb6fbf7d6ec6f47b2a4c46eb3222cc9"
+ integrity sha512-4KG+yMEuvDPRrYq5fyVm/I2uqAJSAwZK9VSa+Zf+zUq9/oxSSvy3kkIqyL+jjStv6UCVi8/Aho0NHtB1Fwosrg==
dependencies:
"@types/express" "*"
"@types/serve-static@*", "@types/serve-static@^1.13.10":
- version "1.15.0"
- resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.0.tgz#c7930ff61afb334e121a9da780aac0d9b8f34155"
- integrity sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==
+ version "1.15.4"
+ resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.4.tgz#44b5895a68ca637f06c229119e1c774ca88f81b2"
+ integrity sha512-aqqNfs1XTF0HDrFdlY//+SGUxmdSUbjeRXb5iaZc3x0/vMbYmdw9qvOgHWOyyLFxSSRnUuP5+724zBgfw8/WAw==
dependencies:
+ "@types/http-errors" "*"
"@types/mime" "*"
"@types/node" "*"
"@types/sockjs@^0.3.33":
- version "0.3.33"
- resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.33.tgz#570d3a0b99ac995360e3136fd6045113b1bd236f"
- integrity sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==
+ version "0.3.35"
+ resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.35.tgz#f4a568c73d2a8071944bd6ffdca0d4e66810cd21"
+ integrity sha512-tIF57KB+ZvOBpAQwSaACfEu7htponHXaFzP7RfKYgsOS0NoYnn+9+jzp7bbq4fWerizI3dTB4NfAZoyeQKWJLw==
dependencies:
"@types/node" "*"
"@types/ws@^8.5.1":
- version "8.5.3"
- resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.3.tgz#7d25a1ffbecd3c4f2d35068d0b283c037003274d"
- integrity sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==
+ version "8.5.8"
+ resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.8.tgz#13efec7bd439d0bdf2af93030804a94f163b1430"
+ integrity sha512-flUksGIQCnJd6sZ1l5dqCEG/ksaoAg/eUwiLAGTJQcfgvZJKF++Ta4bJA6A5aPSJmsr+xlseHn4KLgVlNnvPTg==
dependencies:
"@types/node" "*"
@@ -1704,13 +1927,13 @@
"@typescript-eslint/types" "5.27.1"
"@typescript-eslint/visitor-keys" "5.27.1"
-"@typescript-eslint/scope-manager@5.44.0":
- version "5.44.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.44.0.tgz#988c3f34b45b3474eb9ff0674c18309dedfc3e04"
- integrity sha512-2pKml57KusI0LAhgLKae9kwWeITZ7IsZs77YxyNyIVOwQ1kToyXRaJLl+uDEXzMN5hnobKUOo2gKntK9H1YL8g==
+"@typescript-eslint/scope-manager@5.48.2":
+ version "5.48.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.48.2.tgz#bb7676cb78f1e94921eaab637a4b5d596f838abc"
+ integrity sha512-zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw==
dependencies:
- "@typescript-eslint/types" "5.44.0"
- "@typescript-eslint/visitor-keys" "5.44.0"
+ "@typescript-eslint/types" "5.48.2"
+ "@typescript-eslint/visitor-keys" "5.48.2"
"@typescript-eslint/type-utils@5.27.1":
version "5.27.1"
@@ -1721,13 +1944,13 @@
debug "^4.3.4"
tsutils "^3.21.0"
-"@typescript-eslint/type-utils@5.44.0":
- version "5.44.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.44.0.tgz#bc5a6e8a0269850714a870c9268c038150dfb3c7"
- integrity sha512-A1u0Yo5wZxkXPQ7/noGkRhV4J9opcymcr31XQtOzcc5nO/IHN2E2TPMECKWYpM3e6olWEM63fq/BaL1wEYnt/w==
+"@typescript-eslint/type-utils@5.48.2":
+ version "5.48.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.48.2.tgz#7d3aeca9fa37a7ab7e3d9056a99b42f342c48ad7"
+ integrity sha512-QVWx7J5sPMRiOMJp5dYshPxABRoZV1xbRirqSk8yuIIsu0nvMTZesKErEA3Oix1k+uvsk8Cs8TGJ6kQ0ndAcew==
dependencies:
- "@typescript-eslint/typescript-estree" "5.44.0"
- "@typescript-eslint/utils" "5.44.0"
+ "@typescript-eslint/typescript-estree" "5.48.2"
+ "@typescript-eslint/utils" "5.48.2"
debug "^4.3.4"
tsutils "^3.21.0"
@@ -1736,10 +1959,10 @@
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.27.1.tgz#34e3e629501349d38be6ae97841298c03a6ffbf1"
integrity sha512-LgogNVkBhCTZU/m8XgEYIWICD6m4dmEDbKXESCbqOXfKZxRKeqpiJXQIErv66sdopRKZPo5l32ymNqibYEH/xg==
-"@typescript-eslint/types@5.44.0":
- version "5.44.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.44.0.tgz#f3f0b89aaff78f097a2927fe5688c07e786a0241"
- integrity sha512-Tp+zDnHmGk4qKR1l+Y1rBvpjpm5tGXX339eAlRBDg+kgZkz9Bw+pqi4dyseOZMsGuSH69fYfPJCBKBrbPCxYFQ==
+"@typescript-eslint/types@5.48.2":
+ version "5.48.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.48.2.tgz#635706abb1ec164137f92148f06f794438c97b8e"
+ integrity sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==
"@typescript-eslint/typescript-estree@5.27.1":
version "5.27.1"
@@ -1754,13 +1977,13 @@
semver "^7.3.7"
tsutils "^3.21.0"
-"@typescript-eslint/typescript-estree@5.44.0":
- version "5.44.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.44.0.tgz#0461b386203e8d383bb1268b1ed1da9bc905b045"
- integrity sha512-M6Jr+RM7M5zeRj2maSfsZK2660HKAJawv4Ud0xT+yauyvgrsHu276VtXlKDFnEmhG+nVEd0fYZNXGoAgxwDWJw==
+"@typescript-eslint/typescript-estree@5.48.2":
+ version "5.48.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.2.tgz#6e206b462942b32383582a6c9251c05021cc21b0"
+ integrity sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==
dependencies:
- "@typescript-eslint/types" "5.44.0"
- "@typescript-eslint/visitor-keys" "5.44.0"
+ "@typescript-eslint/types" "5.48.2"
+ "@typescript-eslint/visitor-keys" "5.48.2"
debug "^4.3.4"
globby "^11.1.0"
is-glob "^4.0.3"
@@ -1779,16 +2002,16 @@
eslint-scope "^5.1.1"
eslint-utils "^3.0.0"
-"@typescript-eslint/utils@5.44.0":
- version "5.44.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.44.0.tgz#d733da4d79d6c30f1a68b531cdda1e0c1f00d52d"
- integrity sha512-fMzA8LLQ189gaBjS0MZszw5HBdZgVwxVFShCO3QN+ws3GlPkcy9YuS3U4wkT6su0w+Byjq3mS3uamy9HE4Yfjw==
+"@typescript-eslint/utils@5.48.2":
+ version "5.48.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.48.2.tgz#3777a91dcb22b8499a25519e06eef2e9569295a3"
+ integrity sha512-2h18c0d7jgkw6tdKTlNaM7wyopbLRBiit8oAxoP89YnuBOzCZ8g8aBCaCqq7h208qUTroL7Whgzam7UY3HVLow==
dependencies:
"@types/json-schema" "^7.0.9"
"@types/semver" "^7.3.12"
- "@typescript-eslint/scope-manager" "5.44.0"
- "@typescript-eslint/types" "5.44.0"
- "@typescript-eslint/typescript-estree" "5.44.0"
+ "@typescript-eslint/scope-manager" "5.48.2"
+ "@typescript-eslint/types" "5.48.2"
+ "@typescript-eslint/typescript-estree" "5.48.2"
eslint-scope "^5.1.1"
eslint-utils "^3.0.0"
semver "^7.3.7"
@@ -1801,14 +2024,19 @@
"@typescript-eslint/types" "5.27.1"
eslint-visitor-keys "^3.3.0"
-"@typescript-eslint/visitor-keys@5.44.0":
- version "5.44.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.44.0.tgz#10740dc28902bb903d12ee3a005cc3a70207d433"
- integrity sha512-a48tLG8/4m62gPFbJ27FxwCOqPKxsb8KC3HkmYoq2As/4YyjQl1jDbRr1s63+g4FS/iIehjmN3L5UjmKva1HzQ==
+"@typescript-eslint/visitor-keys@5.48.2":
+ version "5.48.2"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.2.tgz#c247582a0bcce467461d7b696513bf9455000060"
+ integrity sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ==
dependencies:
- "@typescript-eslint/types" "5.44.0"
+ "@typescript-eslint/types" "5.48.2"
eslint-visitor-keys "^3.3.0"
+"@ungap/structured-clone@^1.2.0":
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
+ integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==
+
"@webassemblyjs/ast@1.11.1":
version "1.11.1"
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7"
@@ -1964,19 +2192,19 @@ accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8:
negotiator "0.6.3"
acorn-import-assertions@^1.7.6:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9"
- integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac"
+ integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==
acorn-jsx@^5.3.2:
version "5.3.2"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
-acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.0:
- version "8.8.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73"
- integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==
+acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0:
+ version "8.10.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5"
+ integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==
adjust-sourcemap-loader@^4.0.0:
version "4.0.0"
@@ -1994,12 +2222,10 @@ agent-base@6, agent-base@^6.0.2:
debug "4"
agentkeepalive@^4.2.1:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz#a7975cbb9f83b367f06c90cc51ff28fe7d499717"
- integrity sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.5.0.tgz#2673ad1389b3c418c5a20c5d7364f93ca04be923"
+ integrity sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==
dependencies:
- debug "^4.1.0"
- depd "^1.1.2"
humanize-ms "^1.2.1"
aggregate-error@^3.0.0:
@@ -2022,24 +2248,24 @@ ajv-keywords@^3.5.2:
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
-ajv-keywords@^5.0.0:
+ajv-keywords@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16"
integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==
dependencies:
fast-deep-equal "^3.1.3"
-ajv@8.11.0:
- version "8.11.0"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f"
- integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==
+ajv@8.12.0, ajv@^8.0.0, ajv@^8.9.0:
+ version "8.12.0"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1"
+ integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==
dependencies:
fast-deep-equal "^3.1.1"
json-schema-traverse "^1.0.0"
require-from-string "^2.0.2"
uri-js "^4.2.2"
-ajv@^6.10.0, ajv@^6.12.4, ajv@^6.12.5:
+ajv@^6.12.4, ajv@^6.12.5:
version "6.12.6"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
@@ -2049,16 +2275,6 @@ ajv@^6.10.0, ajv@^6.12.4, ajv@^6.12.5:
json-schema-traverse "^0.4.1"
uri-js "^4.2.2"
-ajv@^8.0.0, ajv@^8.8.0:
- version "8.11.2"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.2.tgz#aecb20b50607acf2569b6382167b65a96008bb78"
- integrity sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==
- dependencies:
- fast-deep-equal "^3.1.1"
- json-schema-traverse "^1.0.0"
- require-from-string "^2.0.2"
- uri-js "^4.2.2"
-
ansi-colors@4.1.3:
version "4.1.3"
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b"
@@ -2081,6 +2297,11 @@ ansi-regex@^5.0.1:
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
+ansi-regex@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a"
+ integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==
+
ansi-styles@^3.2.1:
version "3.2.1"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
@@ -2095,6 +2316,11 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
dependencies:
color-convert "^2.0.1"
+ansi-styles@^6.1.0:
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
+ integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
+
anymatch@~3.1.2:
version "3.1.3"
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
@@ -2135,6 +2361,14 @@ aria-query@5.1.3:
dependencies:
deep-equal "^2.0.5"
+array-buffer-byte-length@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead"
+ integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
+ dependencies:
+ call-bind "^1.0.2"
+ is-array-buffer "^3.0.1"
+
array-flatten@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
@@ -2150,6 +2384,19 @@ array-union@^2.1.0:
resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
+arraybuffer.prototype.slice@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz#98bd561953e3e74bb34938e77647179dfe6e9f12"
+ integrity sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==
+ dependencies:
+ array-buffer-byte-length "^1.0.0"
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+ get-intrinsic "^1.2.1"
+ is-array-buffer "^3.0.2"
+ is-shared-array-buffer "^1.0.2"
+
autoprefixer@10.4.13:
version "10.4.13"
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.13.tgz#b5136b59930209a321e9fa3dca2e7c4d223e83a8"
@@ -2174,10 +2421,10 @@ axobject-query@3.1.1:
dependencies:
deep-equal "^2.0.5"
-babel-loader@9.1.0:
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.0.tgz#839e9ae88aea930864ef9ec0f356dfca96ecf238"
- integrity sha512-Antt61KJPinUMwHwIIz9T5zfMgevnfZkEVWYDWlG888fgdvRRGD0JTuf/fFozQnfT+uq64sk1bmdHDy/mOEWnA==
+babel-loader@9.1.2:
+ version "9.1.2"
+ resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.2.tgz#a16a080de52d08854ee14570469905a5fc00d39c"
+ integrity sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==
dependencies:
find-cache-dir "^3.3.2"
schema-utils "^4.0.0"
@@ -2270,9 +2517,9 @@ body-parser@1.20.1:
unpipe "1.0.0"
bonjour-service@^1.0.11:
- version "1.0.14"
- resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.0.14.tgz#c346f5bc84e87802d08f8d5a60b93f758e514ee7"
- integrity sha512-HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ==
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.1.1.tgz#960948fa0e0153f5d26743ab15baf8e33752c135"
+ integrity sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==
dependencies:
array-flatten "^2.1.2"
dns-equal "^1.0.0"
@@ -2306,15 +2553,25 @@ braces@^3.0.2, braces@~3.0.2:
dependencies:
fill-range "^7.0.1"
-browserslist@4.21.4, browserslist@^4.14.5, browserslist@^4.21.3, browserslist@^4.21.4:
- version "4.21.4"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987"
- integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==
+browserslist@4.21.5:
+ version "4.21.5"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7"
+ integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==
+ dependencies:
+ caniuse-lite "^1.0.30001449"
+ electron-to-chromium "^1.4.284"
+ node-releases "^2.0.8"
+ update-browserslist-db "^1.0.10"
+
+browserslist@^4.14.5, browserslist@^4.21.4, browserslist@^4.21.9, browserslist@^4.22.1:
+ version "4.22.1"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.1.tgz#ba91958d1a59b87dab6fed8dfbcb3da5e2e9c619"
+ integrity sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==
dependencies:
- caniuse-lite "^1.0.30001400"
- electron-to-chromium "^1.4.251"
- node-releases "^2.0.6"
- update-browserslist-db "^1.0.9"
+ caniuse-lite "^1.0.30001541"
+ electron-to-chromium "^1.4.535"
+ node-releases "^2.0.13"
+ update-browserslist-db "^1.0.13"
buffer-from@^1.0.0:
version "1.1.2"
@@ -2346,16 +2603,16 @@ bytes@3.1.2:
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5"
integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==
-cacache@17.0.2:
- version "17.0.2"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.0.2.tgz#ff2bd029bf45099b3fe711f56fbf138b846c8d6d"
- integrity sha512-rYUs2x4OjSgCQND7nTrh21AHIBFgd7s/ctAYvU3a8u+nK+R5YaX/SFPDYz4Azz7SGL6+6L9ZZWI4Kawpb7grzQ==
+cacache@17.0.4:
+ version "17.0.4"
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.0.4.tgz#5023ed892ba8843e3b7361c26d0ada37e146290c"
+ integrity sha512-Z/nL3gU+zTUjz5pCA5vVjYM8pmaw2kxM7JEiE0fv3w77Wj+sFbi70CrBruUWH0uNcEdvLDixFpgA2JM4F4DBjA==
dependencies:
"@npmcli/fs" "^3.1.0"
- fs-minipass "^2.1.0"
+ fs-minipass "^3.0.0"
glob "^8.0.1"
lru-cache "^7.7.1"
- minipass "^3.1.6"
+ minipass "^4.0.0"
minipass-collect "^1.0.2"
minipass-flush "^1.0.5"
minipass-pipeline "^1.2.4"
@@ -2365,56 +2622,32 @@ cacache@17.0.2:
tar "^6.1.11"
unique-filename "^3.0.0"
-cacache@^16.1.0:
- version "16.1.3"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.3.tgz#a02b9f34ecfaf9a78c9f4bc16fceb94d5d67a38e"
- integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==
- dependencies:
- "@npmcli/fs" "^2.1.0"
- "@npmcli/move-file" "^2.0.0"
- chownr "^2.0.0"
- fs-minipass "^2.1.0"
- glob "^8.0.1"
- infer-owner "^1.0.4"
- lru-cache "^7.7.1"
- minipass "^3.1.6"
- minipass-collect "^1.0.2"
- minipass-flush "^1.0.5"
- minipass-pipeline "^1.2.4"
- mkdirp "^1.0.4"
- p-map "^4.0.0"
- promise-inflight "^1.0.1"
- rimraf "^3.0.2"
- ssri "^9.0.0"
- tar "^6.1.11"
- unique-filename "^2.0.0"
-
cacache@^17.0.0:
- version "17.0.4"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.0.4.tgz#5023ed892ba8843e3b7361c26d0ada37e146290c"
- integrity sha512-Z/nL3gU+zTUjz5pCA5vVjYM8pmaw2kxM7JEiE0fv3w77Wj+sFbi70CrBruUWH0uNcEdvLDixFpgA2JM4F4DBjA==
+ version "17.1.4"
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.1.4.tgz#b3ff381580b47e85c6e64f801101508e26604b35"
+ integrity sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==
dependencies:
"@npmcli/fs" "^3.1.0"
fs-minipass "^3.0.0"
- glob "^8.0.1"
+ glob "^10.2.2"
lru-cache "^7.7.1"
- minipass "^4.0.0"
+ minipass "^7.0.3"
minipass-collect "^1.0.2"
minipass-flush "^1.0.5"
minipass-pipeline "^1.2.4"
p-map "^4.0.0"
- promise-inflight "^1.0.1"
ssri "^10.0.0"
tar "^6.1.11"
unique-filename "^3.0.0"
-call-bind@^1.0.0, call-bind@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
- integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
+call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.4, call-bind@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.5.tgz#6fa2b7845ce0ea49bf4d8b9ef64727a2c2e2e513"
+ integrity sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==
dependencies:
- function-bind "^1.1.1"
- get-intrinsic "^1.0.2"
+ function-bind "^1.1.2"
+ get-intrinsic "^1.2.1"
+ set-function-length "^1.1.1"
callsites@^3.0.0:
version "3.1.0"
@@ -2426,12 +2659,12 @@ camelcase@^5.3.1:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
-caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001426:
- version "1.0.30001441"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz#987437b266260b640a23cd18fbddb509d7f69f3e"
- integrity sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==
+caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001449, caniuse-lite@^1.0.30001541:
+ version "1.0.30001553"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001553.tgz#e64e7dc8fd4885cd246bb476471420beb5e474b5"
+ integrity sha512-N0ttd6TrFfuqKNi+pMgWJTb9qrdJu4JSpgPFLe/lrD19ugC6fZgF0pUewRowDwzdDnb9V41mFcdlYgl/PyKf4A==
-chalk@^2.0.0, chalk@^2.4.1:
+chalk@^2.4.1, chalk@^2.4.2:
version "2.4.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@@ -2491,9 +2724,9 @@ cli-cursor@^3.1.0:
restore-cursor "^3.1.0"
cli-spinners@^2.5.0:
- version "2.7.0"
- resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.7.0.tgz#f815fd30b5f9eaac02db604c7a231ed7cb2f797a"
- integrity sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==
+ version "2.9.1"
+ resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.1.tgz#9c0b9dad69a6d47cbb4333c14319b060ed395a35"
+ integrity sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==
cli-width@^3.0.0:
version "3.0.0"
@@ -2553,9 +2786,9 @@ color-support@^1.1.3:
integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==
colorette@^2.0.10:
- version "2.0.19"
- resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798"
- integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==
+ version "2.0.20"
+ resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a"
+ integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==
commander@^2.20.0:
version "2.20.3"
@@ -2563,9 +2796,9 @@ commander@^2.20.0:
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
commander@^9.2.0:
- version "9.4.1"
- resolved "https://registry.yarnpkg.com/commander/-/commander-9.4.1.tgz#d1dd8f2ce6faf93147295c0df13c7c21141cfbdd"
- integrity sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==
+ version "9.5.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30"
+ integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==
commondir@^1.0.1:
version "1.0.1"
@@ -2615,15 +2848,20 @@ content-disposition@0.5.4:
safe-buffer "5.2.1"
content-type@~1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
- integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
+ integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
convert-source-map@^1.5.1, convert-source-map@^1.7.0:
version "1.9.0"
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
+convert-source-map@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
+ integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
+
cookie-signature@1.0.6:
version "1.0.6"
resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
@@ -2654,11 +2892,11 @@ copy-webpack-plugin@11.0.0:
serialize-javascript "^6.0.0"
core-js-compat@^3.25.1:
- version "3.26.1"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.26.1.tgz#0e710b09ebf689d719545ac36e49041850f943df"
- integrity sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==
+ version "3.33.1"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.33.1.tgz#debe80464107d75419e00c2ee29f35982118ff84"
+ integrity sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==
dependencies:
- browserslist "^4.21.4"
+ browserslist "^4.22.1"
core-util-is@~1.0.0:
version "1.0.3"
@@ -2699,7 +2937,7 @@ cross-spawn@^6.0.5:
shebang-command "^1.2.0"
which "^1.2.9"
-cross-spawn@^7.0.2, cross-spawn@^7.0.3:
+cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
version "7.0.3"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
@@ -2765,25 +3003,28 @@ debug@^3.2.6:
ms "^2.1.1"
deep-equal@^2.0.5:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.1.0.tgz#5ba60402cf44ab92c2c07f3f3312c3d857a0e1dd"
- integrity sha512-2pxgvWu3Alv1PoWEyVg7HS8YhGlUFUV7N5oOvfL6d+7xAmLSemMwv/c8Zv/i9KFzxV5Kt5CAvQc70fLwVuf4UA==
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.2.tgz#9b2635da569a13ba8e1cc159c2f744071b115daa"
+ integrity sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==
dependencies:
+ array-buffer-byte-length "^1.0.0"
call-bind "^1.0.2"
- es-get-iterator "^1.1.2"
- get-intrinsic "^1.1.3"
+ es-get-iterator "^1.1.3"
+ get-intrinsic "^1.2.1"
is-arguments "^1.1.1"
+ is-array-buffer "^3.0.2"
is-date-object "^1.0.5"
is-regex "^1.1.4"
+ is-shared-array-buffer "^1.0.2"
isarray "^2.0.5"
object-is "^1.1.5"
object-keys "^1.1.1"
object.assign "^4.1.4"
- regexp.prototype.flags "^1.4.3"
+ regexp.prototype.flags "^1.5.0"
side-channel "^1.0.4"
which-boxed-primitive "^1.0.2"
which-collection "^1.0.1"
- which-typed-array "^1.1.8"
+ which-typed-array "^1.1.9"
deep-is@^0.1.3:
version "0.1.4"
@@ -2804,16 +3045,26 @@ defaults@^1.0.3:
dependencies:
clone "^1.0.2"
+define-data-property@^1.0.1, define-data-property@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.1.tgz#c35f7cd0ab09883480d12ac5cb213715587800b3"
+ integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==
+ dependencies:
+ get-intrinsic "^1.2.1"
+ gopd "^1.0.1"
+ has-property-descriptors "^1.0.0"
+
define-lazy-prop@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f"
integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==
-define-properties@^1.1.3, define-properties@^1.1.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
- integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
+define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c"
+ integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==
dependencies:
+ define-data-property "^1.0.1"
has-property-descriptors "^1.0.0"
object-keys "^1.1.1"
@@ -2827,7 +3078,7 @@ depd@2.0.0:
resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
-depd@^1.1.2, depd@~1.1.2:
+depd@~1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==
@@ -2860,9 +3111,9 @@ dns-equal@^1.0.0:
integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==
dns-packet@^5.2.2:
- version "5.4.0"
- resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.4.0.tgz#1f88477cf9f27e78a213fb6d118ae38e759a879b"
- integrity sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==
+ version "5.6.1"
+ resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.1.tgz#ae888ad425a9d1478a0674256ab866de1012cf2f"
+ integrity sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==
dependencies:
"@leichtgewicht/ip-codec" "^2.0.1"
@@ -2903,21 +3154,31 @@ domutils@^2.8.0:
domelementtype "^2.2.0"
domhandler "^4.2.0"
+eastasianwidth@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
+ integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
+
ee-first@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
-electron-to-chromium@^1.4.251:
- version "1.4.284"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592"
- integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==
+electron-to-chromium@^1.4.284, electron-to-chromium@^1.4.535:
+ version "1.4.566"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.566.tgz#5c5ba1d2dc895f4887043f0cc7e61798c7e5919a"
+ integrity sha512-mv+fAy27uOmTVlUULy15U3DVJ+jg+8iyKH1bpwboCRhtDC69GKf1PPTZvEIhCyDr81RFqfxZJYrbgp933a1vtg==
emoji-regex@^8.0.0:
version "8.0.0"
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+emoji-regex@^9.2.2:
+ version "9.2.2"
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
+ integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
+
emojis-list@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
@@ -2936,9 +3197,9 @@ encoding@^0.1.13:
iconv-lite "^0.6.2"
enhanced-resolve@^5.10.0:
- version "5.12.0"
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz#300e1c90228f5b570c4d35babf263f6da7155634"
- integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==
+ version "5.15.0"
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35"
+ integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==
dependencies:
graceful-fs "^4.2.4"
tapable "^2.2.0"
@@ -2948,6 +3209,11 @@ entities@^2.0.0:
resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
+entities@^4.3.0, entities@^4.4.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
+ integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
+
env-paths@^2.2.0:
version "2.2.1"
resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2"
@@ -2972,56 +3238,80 @@ error-ex@^1.3.1:
dependencies:
is-arrayish "^0.2.1"
-es-abstract@^1.19.0, es-abstract@^1.20.4:
- version "1.20.5"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.5.tgz#e6dc99177be37cacda5988e692c3fa8b218e95d2"
- integrity sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==
+es-abstract@^1.22.1:
+ version "1.22.3"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.3.tgz#48e79f5573198de6dee3589195727f4f74bc4f32"
+ integrity sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==
dependencies:
- call-bind "^1.0.2"
+ array-buffer-byte-length "^1.0.0"
+ arraybuffer.prototype.slice "^1.0.2"
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.5"
+ es-set-tostringtag "^2.0.1"
es-to-primitive "^1.2.1"
- function-bind "^1.1.1"
- function.prototype.name "^1.1.5"
- get-intrinsic "^1.1.3"
+ function.prototype.name "^1.1.6"
+ get-intrinsic "^1.2.2"
get-symbol-description "^1.0.0"
+ globalthis "^1.0.3"
gopd "^1.0.1"
- has "^1.0.3"
has-property-descriptors "^1.0.0"
+ has-proto "^1.0.1"
has-symbols "^1.0.3"
- internal-slot "^1.0.3"
+ hasown "^2.0.0"
+ internal-slot "^1.0.5"
+ is-array-buffer "^3.0.2"
is-callable "^1.2.7"
is-negative-zero "^2.0.2"
is-regex "^1.1.4"
is-shared-array-buffer "^1.0.2"
is-string "^1.0.7"
+ is-typed-array "^1.1.12"
is-weakref "^1.0.2"
- object-inspect "^1.12.2"
+ object-inspect "^1.13.1"
object-keys "^1.1.1"
object.assign "^4.1.4"
- regexp.prototype.flags "^1.4.3"
+ regexp.prototype.flags "^1.5.1"
+ safe-array-concat "^1.0.1"
safe-regex-test "^1.0.0"
- string.prototype.trimend "^1.0.6"
- string.prototype.trimstart "^1.0.6"
+ string.prototype.trim "^1.2.8"
+ string.prototype.trimend "^1.0.7"
+ string.prototype.trimstart "^1.0.7"
+ typed-array-buffer "^1.0.0"
+ typed-array-byte-length "^1.0.0"
+ typed-array-byte-offset "^1.0.0"
+ typed-array-length "^1.0.4"
unbox-primitive "^1.0.2"
+ which-typed-array "^1.1.13"
-es-get-iterator@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.2.tgz#9234c54aba713486d7ebde0220864af5e2b283f7"
- integrity sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==
+es-get-iterator@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6"
+ integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==
dependencies:
call-bind "^1.0.2"
- get-intrinsic "^1.1.0"
- has-symbols "^1.0.1"
- is-arguments "^1.1.0"
+ get-intrinsic "^1.1.3"
+ has-symbols "^1.0.3"
+ is-arguments "^1.1.1"
is-map "^2.0.2"
is-set "^2.0.2"
- is-string "^1.0.5"
+ is-string "^1.0.7"
isarray "^2.0.5"
+ stop-iteration-iterator "^1.0.0"
es-module-lexer@^0.9.0:
version "0.9.3"
resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19"
integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==
+es-set-tostringtag@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz#11f7cc9f63376930a5f20be4915834f4bc74f9c9"
+ integrity sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==
+ dependencies:
+ get-intrinsic "^1.2.2"
+ has-tostringtag "^1.0.0"
+ hasown "^2.0.0"
+
es-to-primitive@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
@@ -3031,138 +3321,38 @@ es-to-primitive@^1.2.1:
is-date-object "^1.0.1"
is-symbol "^1.0.2"
-esbuild-android-64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.15.13.tgz#5f25864055dbd62e250f360b38b4c382224063af"
- integrity sha512-yRorukXBlokwTip+Sy4MYskLhJsO0Kn0/Fj43s1krVblfwP+hMD37a4Wmg139GEsMLl+vh8WXp2mq/cTA9J97g==
-
-esbuild-android-arm64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.15.13.tgz#d8820f999314efbe8e0f050653a99ff2da632b0f"
- integrity sha512-TKzyymLD6PiVeyYa4c5wdPw87BeAiTXNtK6amWUcXZxkV51gOk5u5qzmDaYSwiWeecSNHamFsaFjLoi32QR5/w==
-
-esbuild-darwin-64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.13.tgz#99ae7fdaa43947b06cd9d1a1c3c2c9f245d81fd0"
- integrity sha512-WAx7c2DaOS6CrRcoYCgXgkXDliLnFv3pQLV6GeW1YcGEZq2Gnl8s9Pg7ahValZkpOa0iE/ojRVQ87sbUhF1Cbg==
-
-esbuild-darwin-arm64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.13.tgz#bafa1814354ad1a47adcad73de416130ef7f55e3"
- integrity sha512-U6jFsPfSSxC3V1CLiQqwvDuj3GGrtQNB3P3nNC3+q99EKf94UGpsG9l4CQ83zBs1NHrk1rtCSYT0+KfK5LsD8A==
-
-esbuild-freebsd-64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.13.tgz#84ef85535c5cc38b627d1c5115623b088d1de161"
- integrity sha512-whItJgDiOXaDG/idy75qqevIpZjnReZkMGCgQaBWZuKHoElDJC1rh7MpoUgupMcdfOd+PgdEwNQW9DAE6i8wyA==
-
-esbuild-freebsd-arm64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.13.tgz#033f21de434ec8e0c478054b119af8056763c2d8"
- integrity sha512-6pCSWt8mLUbPtygv7cufV0sZLeylaMwS5Fznj6Rsx9G2AJJsAjQ9ifA+0rQEIg7DwJmi9it+WjzNTEAzzdoM3Q==
-
-esbuild-linux-32@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.15.13.tgz#54290ea8035cba0faf1791ce9ae6693005512535"
- integrity sha512-VbZdWOEdrJiYApm2kkxoTOgsoCO1krBZ3quHdYk3g3ivWaMwNIVPIfEE0f0XQQ0u5pJtBsnk2/7OPiCFIPOe/w==
-
-esbuild-linux-64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.15.13.tgz#4264249281ea388ead948614b57fb1ddf7779a2c"
- integrity sha512-rXmnArVNio6yANSqDQlIO4WiP+Cv7+9EuAHNnag7rByAqFVuRusLbGi2697A5dFPNXoO//IiogVwi3AdcfPC6A==
-
-esbuild-linux-arm64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.13.tgz#9323c333924f97a02bdd2ae8912b36298acb312d"
- integrity sha512-alEMGU4Z+d17U7KQQw2IV8tQycO6T+rOrgW8OS22Ua25x6kHxoG6Ngry6Aq6uranC+pNWNMB6aHFPh7aTQdORQ==
-
-esbuild-linux-arm@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.15.13.tgz#b407f47b3ae721fe4e00e19e9f19289bef87a111"
- integrity sha512-Ac6LpfmJO8WhCMQmO253xX2IU2B3wPDbl4IvR0hnqcPrdfCaUa2j/lLMGTjmQ4W5JsJIdHEdW12dG8lFS0MbxQ==
-
-esbuild-linux-mips64le@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.13.tgz#bdf905aae5c0bcaa8f83567fe4c4c1bdc1f14447"
- integrity sha512-47PgmyYEu+yN5rD/MbwS6DxP2FSGPo4Uxg5LwIdxTiyGC2XKwHhHyW7YYEDlSuXLQXEdTO7mYe8zQ74czP7W8A==
-
-esbuild-linux-ppc64le@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.13.tgz#2911eae1c90ff58a3bd3259cb557235df25aa3b4"
- integrity sha512-z6n28h2+PC1Ayle9DjKoBRcx/4cxHoOa2e689e2aDJSaKug3jXcQw7mM+GLg+9ydYoNzj8QxNL8ihOv/OnezhA==
-
-esbuild-linux-riscv64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.13.tgz#1837c660be12b1d20d2a29c7189ea703f93e9265"
- integrity sha512-+Lu4zuuXuQhgLUGyZloWCqTslcCAjMZH1k3Xc9MSEJEpEFdpsSU0sRDXAnk18FKOfEjhu4YMGaykx9xjtpA6ow==
-
-esbuild-linux-s390x@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.13.tgz#d52880ece229d1bd10b2d936b792914ffb07c7fc"
- integrity sha512-BMeXRljruf7J0TMxD5CIXS65y7puiZkAh+s4XFV9qy16SxOuMhxhVIXYLnbdfLrsYGFzx7U9mcdpFWkkvy/Uag==
-
-esbuild-netbsd-64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.13.tgz#de14da46f1d20352b43e15d97a80a8788275e6ed"
- integrity sha512-EHj9QZOTel581JPj7UO3xYbltFTYnHy+SIqJVq6yd3KkCrsHRbapiPb0Lx3EOOtybBEE9EyqbmfW1NlSDsSzvQ==
-
-esbuild-openbsd-64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.13.tgz#45e8a5fd74d92ad8f732c43582369c7990f5a0ac"
- integrity sha512-nkuDlIjF/sfUhfx8SKq0+U+Fgx5K9JcPq1mUodnxI0x4kBdCv46rOGWbuJ6eof2n3wdoCLccOoJAbg9ba/bT2w==
-
-esbuild-sunos-64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.15.13.tgz#f646ac3da7aac521ee0fdbc192750c87da697806"
- integrity sha512-jVeu2GfxZQ++6lRdY43CS0Tm/r4WuQQ0Pdsrxbw+aOrHQPHV0+LNOLnvbN28M7BSUGnJnHkHm2HozGgNGyeIRw==
-
-esbuild-wasm@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-wasm/-/esbuild-wasm-0.15.13.tgz#c4d7f771679b2e14f7a456403751d908db1c07d1"
- integrity sha512-0am8fvHKACwofWQxtZLTMv4mDiDwUrdt0DyRaQ2r7YWIpkmpg4GWYy0EyW+gPjiPHzkZKqN9d3UYsZGgvaAASw==
-
-esbuild-windows-32@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.15.13.tgz#fb4fe77c7591418880b3c9b5900adc4c094f2401"
- integrity sha512-XoF2iBf0wnqo16SDq+aDGi/+QbaLFpkiRarPVssMh9KYbFNCqPLlGAWwDvxEVz+ywX6Si37J2AKm+AXq1kC0JA==
-
-esbuild-windows-64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.15.13.tgz#1fca8c654392c0c31bdaaed168becfea80e20660"
- integrity sha512-Et6htEfGycjDrtqb2ng6nT+baesZPYQIW+HUEHK4D1ncggNrDNk3yoboYQ5KtiVrw/JaDMNttz8rrPubV/fvPQ==
-
-esbuild-windows-arm64@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.13.tgz#4ffd01b6b2888603f1584a2fe96b1f6a6f2b3dd8"
- integrity sha512-3bv7tqntThQC9SWLRouMDmZnlOukBhOCTlkzNqzGCmrkCJI7io5LLjwJBOVY6kOUlIvdxbooNZwjtBvj+7uuVg==
-
-esbuild@0.15.13:
- version "0.15.13"
- resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.15.13.tgz#7293480038feb2bafa91d3f6a20edab3ba6c108a"
- integrity sha512-Cu3SC84oyzzhrK/YyN4iEVy2jZu5t2fz66HEOShHURcjSkOSAVL8C/gfUT+lDJxkVHpg8GZ10DD0rMHRPqMFaQ==
+esbuild-wasm@0.17.8:
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/esbuild-wasm/-/esbuild-wasm-0.17.8.tgz#c2348306430c27613ee3cc9a955cdd54df29137a"
+ integrity sha512-zCmpxv95E0FuCmvdw1K836UHnj4EdiQnFfjTby35y3LAjRPtXMj3sbHDRHjbD8Mqg5lTwq3knacr/1qIFU51CQ==
+
+esbuild@0.17.8:
+ version "0.17.8"
+ resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.8.tgz#f7f799abc7cdce3f0f2e3e0c01f120d4d55193b4"
+ integrity sha512-g24ybC3fWhZddZK6R3uD2iF/RIPnRpwJAqLov6ouX3hMbY4+tKolP0VMF3zuIYCaXun+yHwS5IPQ91N2BT191g==
optionalDependencies:
- "@esbuild/android-arm" "0.15.13"
- "@esbuild/linux-loong64" "0.15.13"
- esbuild-android-64 "0.15.13"
- esbuild-android-arm64 "0.15.13"
- esbuild-darwin-64 "0.15.13"
- esbuild-darwin-arm64 "0.15.13"
- esbuild-freebsd-64 "0.15.13"
- esbuild-freebsd-arm64 "0.15.13"
- esbuild-linux-32 "0.15.13"
- esbuild-linux-64 "0.15.13"
- esbuild-linux-arm "0.15.13"
- esbuild-linux-arm64 "0.15.13"
- esbuild-linux-mips64le "0.15.13"
- esbuild-linux-ppc64le "0.15.13"
- esbuild-linux-riscv64 "0.15.13"
- esbuild-linux-s390x "0.15.13"
- esbuild-netbsd-64 "0.15.13"
- esbuild-openbsd-64 "0.15.13"
- esbuild-sunos-64 "0.15.13"
- esbuild-windows-32 "0.15.13"
- esbuild-windows-64 "0.15.13"
- esbuild-windows-arm64 "0.15.13"
+ "@esbuild/android-arm" "0.17.8"
+ "@esbuild/android-arm64" "0.17.8"
+ "@esbuild/android-x64" "0.17.8"
+ "@esbuild/darwin-arm64" "0.17.8"
+ "@esbuild/darwin-x64" "0.17.8"
+ "@esbuild/freebsd-arm64" "0.17.8"
+ "@esbuild/freebsd-x64" "0.17.8"
+ "@esbuild/linux-arm" "0.17.8"
+ "@esbuild/linux-arm64" "0.17.8"
+ "@esbuild/linux-ia32" "0.17.8"
+ "@esbuild/linux-loong64" "0.17.8"
+ "@esbuild/linux-mips64el" "0.17.8"
+ "@esbuild/linux-ppc64" "0.17.8"
+ "@esbuild/linux-riscv64" "0.17.8"
+ "@esbuild/linux-s390x" "0.17.8"
+ "@esbuild/linux-x64" "0.17.8"
+ "@esbuild/netbsd-x64" "0.17.8"
+ "@esbuild/openbsd-x64" "0.17.8"
+ "@esbuild/sunos-x64" "0.17.8"
+ "@esbuild/win32-arm64" "0.17.8"
+ "@esbuild/win32-ia32" "0.17.8"
+ "@esbuild/win32-x64" "0.17.8"
escalade@^3.1.1:
version "3.1.1"
@@ -3192,10 +3382,10 @@ eslint-scope@5.1.1, eslint-scope@^5.1.1:
esrecurse "^4.3.0"
estraverse "^4.1.1"
-eslint-scope@^7.0.0, eslint-scope@^7.1.1:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642"
- integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
+eslint-scope@^7.0.0, eslint-scope@^7.2.2:
+ version "7.2.2"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f"
+ integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==
dependencies:
esrecurse "^4.3.0"
estraverse "^5.2.0"
@@ -3212,74 +3402,73 @@ eslint-visitor-keys@^2.0.0:
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
-eslint-visitor-keys@^3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
- integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
+eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3:
+ version "3.4.3"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
+ integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
eslint@^8.17.0:
- version "8.30.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.30.0.tgz#83a506125d089eef7c5b5910eeea824273a33f50"
- integrity sha512-MGADB39QqYuzEGov+F/qb18r4i7DohCDOfatHaxI2iGlPuC65bwG2gxgO+7DkyL38dRFaRH7RaRAgU6JKL9rMQ==
- dependencies:
- "@eslint/eslintrc" "^1.4.0"
- "@humanwhocodes/config-array" "^0.11.8"
+ version "8.52.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.52.0.tgz#d0cd4a1fac06427a61ef9242b9353f36ea7062fc"
+ integrity sha512-zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.2.0"
+ "@eslint-community/regexpp" "^4.6.1"
+ "@eslint/eslintrc" "^2.1.2"
+ "@eslint/js" "8.52.0"
+ "@humanwhocodes/config-array" "^0.11.13"
"@humanwhocodes/module-importer" "^1.0.1"
"@nodelib/fs.walk" "^1.2.8"
- ajv "^6.10.0"
+ "@ungap/structured-clone" "^1.2.0"
+ ajv "^6.12.4"
chalk "^4.0.0"
cross-spawn "^7.0.2"
debug "^4.3.2"
doctrine "^3.0.0"
escape-string-regexp "^4.0.0"
- eslint-scope "^7.1.1"
- eslint-utils "^3.0.0"
- eslint-visitor-keys "^3.3.0"
- espree "^9.4.0"
- esquery "^1.4.0"
+ eslint-scope "^7.2.2"
+ eslint-visitor-keys "^3.4.3"
+ espree "^9.6.1"
+ esquery "^1.4.2"
esutils "^2.0.2"
fast-deep-equal "^3.1.3"
file-entry-cache "^6.0.1"
find-up "^5.0.0"
glob-parent "^6.0.2"
globals "^13.19.0"
- grapheme-splitter "^1.0.4"
+ graphemer "^1.4.0"
ignore "^5.2.0"
- import-fresh "^3.0.0"
imurmurhash "^0.1.4"
is-glob "^4.0.0"
is-path-inside "^3.0.3"
- js-sdsl "^4.1.4"
js-yaml "^4.1.0"
json-stable-stringify-without-jsonify "^1.0.1"
levn "^0.4.1"
lodash.merge "^4.6.2"
minimatch "^3.1.2"
natural-compare "^1.4.0"
- optionator "^0.9.1"
- regexpp "^3.2.0"
+ optionator "^0.9.3"
strip-ansi "^6.0.1"
- strip-json-comments "^3.1.0"
text-table "^0.2.0"
-espree@^9.4.0:
- version "9.4.1"
- resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd"
- integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==
+espree@^9.6.0, espree@^9.6.1:
+ version "9.6.1"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f"
+ integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
dependencies:
- acorn "^8.8.0"
+ acorn "^8.9.0"
acorn-jsx "^5.3.2"
- eslint-visitor-keys "^3.3.0"
+ eslint-visitor-keys "^3.4.1"
esprima@^4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-esquery@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
- integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
+esquery@^1.4.2:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b"
+ integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
dependencies:
estraverse "^5.1.0"
@@ -3340,6 +3529,11 @@ execa@^5.0.0:
signal-exit "^3.0.3"
strip-final-newline "^2.0.0"
+exponential-backoff@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6"
+ integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==
+
express@^4.17.3:
version "4.18.2"
resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59"
@@ -3391,10 +3585,10 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
-fast-glob@^3.2.11, fast-glob@^3.2.9:
- version "3.2.12"
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80"
- integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==
+fast-glob@^3.2.11, fast-glob@^3.2.9, fast-glob@^3.3.0:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4"
+ integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==
dependencies:
"@nodelib/fs.stat" "^2.0.2"
"@nodelib/fs.walk" "^1.2.3"
@@ -3413,9 +3607,9 @@ fast-levenshtein@^2.0.6:
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
fastq@^1.6.0:
- version "1.14.0"
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.14.0.tgz#107f69d7295b11e0fccc264e1fc6389f623731ce"
- integrity sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==
+ version "1.15.0"
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a"
+ integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==
dependencies:
reusify "^1.0.4"
@@ -3486,22 +3680,23 @@ find-up@^5.0.0:
path-exists "^4.0.0"
flat-cache@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
- integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.1.1.tgz#a02a15fdec25a8f844ff7cc658f03dd99eb4609b"
+ integrity sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==
dependencies:
- flatted "^3.1.0"
+ flatted "^3.2.9"
+ keyv "^4.5.3"
rimraf "^3.0.2"
-flatted@^3.1.0:
- version "3.2.7"
- resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787"
- integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==
+flatted@^3.2.9:
+ version "3.2.9"
+ resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf"
+ integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==
follow-redirects@^1.0.0:
- version "1.15.2"
- resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13"
- integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==
+ version "1.15.3"
+ resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.3.tgz#fe2f3ef2690afce7e82ed0b44db08165b207123a"
+ integrity sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==
for-each@^0.3.3:
version "0.3.3"
@@ -3510,22 +3705,30 @@ for-each@^0.3.3:
dependencies:
is-callable "^1.1.3"
+foreground-child@^3.1.0:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d"
+ integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==
+ dependencies:
+ cross-spawn "^7.0.0"
+ signal-exit "^4.0.1"
+
forwarded@0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
fraction.js@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950"
- integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==
+ version "4.3.7"
+ resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7"
+ integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==
fresh@0.5.2:
version "0.5.2"
resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==
-fs-minipass@^2.0.0, fs-minipass@^2.1.0:
+fs-minipass@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
@@ -3533,16 +3736,16 @@ fs-minipass@^2.0.0, fs-minipass@^2.1.0:
minipass "^3.0.0"
fs-minipass@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.0.tgz#8e6ed2b4e1ba44077cae69971393068a1bbeeed6"
- integrity sha512-EUojgQaSPy6sxcqcZgQv6TVF6jiKvurji3AxhAivs/Ep4O1UpS8TusaxpybfFHZ2skRhLqzk6WR8nqNYIMMDeA==
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54"
+ integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==
dependencies:
- minipass "^4.0.0"
+ minipass "^7.0.3"
-fs-monkey@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.3.tgz#ae3ac92d53bb328efe0e9a1d9541f6ad8d48e2d3"
- integrity sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==
+fs-monkey@^1.0.4:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.5.tgz#fe450175f0db0d7ea758102e1d84096acb925788"
+ integrity sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==
fs.realpath@^1.0.0:
version "1.0.0"
@@ -3550,31 +3753,31 @@ fs.realpath@^1.0.0:
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
fsevents@~2.3.2:
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
- integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
+ integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
-function-bind@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
- integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+function-bind@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
+ integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
-function.prototype.name@^1.1.5:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
- integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
+function.prototype.name@^1.1.6:
+ version "1.1.6"
+ resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd"
+ integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.19.0"
- functions-have-names "^1.2.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+ functions-have-names "^1.2.3"
functional-red-black-tree@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==
-functions-have-names@^1.2.2:
+functions-have-names@^1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
@@ -3603,14 +3806,15 @@ get-caller-file@^2.0.5:
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
-get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"
- integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.2.tgz#281b7622971123e1ef4b3c90fd7539306da93f3b"
+ integrity sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==
dependencies:
- function-bind "^1.1.1"
- has "^1.0.3"
+ function-bind "^1.1.2"
+ has-proto "^1.0.1"
has-symbols "^1.0.3"
+ hasown "^2.0.0"
get-package-type@^0.1.0:
version "0.1.0"
@@ -3649,10 +3853,10 @@ glob-to-regexp@^0.4.1:
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
-glob@8.0.3, glob@^8.0.1:
- version "8.0.3"
- resolved "https://registry.yarnpkg.com/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e"
- integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==
+glob@8.1.0, glob@^8.0.1:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e"
+ integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==
dependencies:
fs.realpath "^1.0.0"
inflight "^1.0.4"
@@ -3660,6 +3864,17 @@ glob@8.0.3, glob@^8.0.1:
minimatch "^5.0.1"
once "^1.3.0"
+glob@^10.2.2:
+ version "10.3.10"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b"
+ integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==
+ dependencies:
+ foreground-child "^3.1.0"
+ jackspeak "^2.3.5"
+ minimatch "^9.0.1"
+ minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
+ path-scurry "^1.10.1"
+
glob@^7.1.3, glob@^7.1.4:
version "7.2.3"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
@@ -3678,12 +3893,19 @@ globals@^11.1.0:
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
globals@^13.19.0:
- version "13.19.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8"
- integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==
+ version "13.23.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-13.23.0.tgz#ef31673c926a0976e1f61dab4dca57e0c0a8af02"
+ integrity sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==
dependencies:
type-fest "^0.20.2"
+globalthis@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf"
+ integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==
+ dependencies:
+ define-properties "^1.1.3"
+
globby@^11.1.0:
version "11.1.0"
resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
@@ -3697,13 +3919,13 @@ globby@^11.1.0:
slash "^3.0.0"
globby@^13.1.1:
- version "13.1.3"
- resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.3.tgz#f62baf5720bcb2c1330c8d4ef222ee12318563ff"
- integrity sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==
+ version "13.2.2"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-13.2.2.tgz#63b90b1bf68619c2135475cbd4e71e66aa090592"
+ integrity sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==
dependencies:
dir-glob "^3.0.1"
- fast-glob "^3.2.11"
- ignore "^5.2.0"
+ fast-glob "^3.3.0"
+ ignore "^5.2.4"
merge2 "^1.4.1"
slash "^4.0.0"
@@ -3715,14 +3937,14 @@ gopd@^1.0.1:
get-intrinsic "^1.1.3"
graceful-fs@^4.1.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9:
- version "4.2.10"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
- integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
+ version "4.2.11"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
+ integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
-grapheme-splitter@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e"
- integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
+graphemer@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
+ integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
handle-thing@^2.0.0:
version "2.0.1"
@@ -3745,13 +3967,18 @@ has-flag@^4.0.0:
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
has-property-descriptors@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
- integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz#52ba30b6c5ec87fd89fa574bc1c39125c6f65340"
+ integrity sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==
dependencies:
- get-intrinsic "^1.1.1"
+ get-intrinsic "^1.2.2"
-has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3:
+has-proto@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0"
+ integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
+
+has-symbols@^1.0.2, has-symbols@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
@@ -3768,12 +3995,12 @@ has-unicode@^2.0.1:
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==
-has@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
- integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
+hasown@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c"
+ integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==
dependencies:
- function-bind "^1.1.1"
+ function-bind "^1.1.2"
hdr-histogram-js@^2.0.1:
version "2.0.3"
@@ -3794,13 +4021,6 @@ hosted-git-info@^2.1.4:
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
-hosted-git-info@^5.0.0:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-5.2.1.tgz#0ba1c97178ef91f3ab30842ae63d6a272341156f"
- integrity sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==
- dependencies:
- lru-cache "^7.5.1"
-
hosted-git-info@^6.0.0:
version "6.1.1"
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-6.1.1.tgz#629442c7889a69c05de604d52996b74fe6f26d58"
@@ -3819,11 +4039,11 @@ hpack.js@^2.1.6:
wbuf "^1.1.0"
html-entities@^2.3.2:
- version "2.3.3"
- resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.3.3.tgz#117d7626bece327fc8baace8868fa6f5ef856e46"
- integrity sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.4.0.tgz#edd0cee70402584c8c76cc2c0556db09d1f45061"
+ integrity sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==
-http-cache-semantics@^4.1.0:
+http-cache-semantics@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a"
integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==
@@ -3933,18 +4153,13 @@ ieee754@^1.1.13:
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
ignore-walk@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.0.tgz#1dd41c6eb4f661a49750a510a10c2cd934583fd8"
- integrity sha512-bTf9UWe/UP1yxG3QUrj/KOvEhTAUWPcv+WvbFZ28LcqznXabp7Xu6o9y1JEC18+oqODuS7VhTpekV5XvFwsxJg==
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.3.tgz#0fcdb6decaccda35e308a7b0948645dd9523b7bb"
+ integrity sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==
dependencies:
- minimatch "^5.0.1"
+ minimatch "^9.0.0"
-ignore@5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
- integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
-
-ignore@^5.2.0:
+ignore@5.2.4, ignore@^5.2.0, ignore@^5.2.4:
version "5.2.4"
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
@@ -3955,11 +4170,11 @@ image-size@~0.5.0:
integrity sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==
immutable@^4.0.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.2.0.tgz#c91f09108ed7504c2f0faec7222f40178ff97b11"
- integrity sha512-h4ujZ0OZ3kpvdFcwJAHXEdvawH7J8TYTB62e8xI03OSZhuGpuPY9DPXnonMN8s+uQ56gMUqMK71mXU8ob20xfA==
+ version "4.3.4"
+ resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.4.tgz#2e07b33837b4bb7662f288c244d1ced1ef65a78f"
+ integrity sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==
-import-fresh@^3.0.0, import-fresh@^3.2.1:
+import-fresh@^3.2.1:
version "3.3.0"
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
@@ -3977,11 +4192,6 @@ indent-string@^4.0.0:
resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
-infer-owner@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
- integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
-
inflight@^1.0.4:
version "1.0.6"
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
@@ -4026,13 +4236,13 @@ inquirer@8.2.4:
through "^2.3.6"
wrap-ansi "^7.0.0"
-internal-slot@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.4.tgz#8551e7baf74a7a6ba5f749cfb16aa60722f0d6f3"
- integrity sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==
+internal-slot@^1.0.4, internal-slot@^1.0.5:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.6.tgz#37e756098c4911c5e912b8edbf71ed3aa116f930"
+ integrity sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==
dependencies:
- get-intrinsic "^1.1.3"
- has "^1.0.3"
+ get-intrinsic "^1.2.2"
+ hasown "^2.0.0"
side-channel "^1.0.4"
ip@^2.0.0:
@@ -4046,11 +4256,11 @@ ipaddr.js@1.9.1:
integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
ipaddr.js@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz#eca256a7a877e917aeb368b0a7497ddf42ef81c0"
- integrity sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f"
+ integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==
-is-arguments@^1.1.0, is-arguments@^1.1.1:
+is-arguments@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b"
integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==
@@ -4058,6 +4268,15 @@ is-arguments@^1.1.0, is-arguments@^1.1.1:
call-bind "^1.0.2"
has-tostringtag "^1.0.0"
+is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe"
+ integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.0"
+ is-typed-array "^1.1.10"
+
is-arrayish@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
@@ -4090,12 +4309,12 @@ is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
-is-core-module@^2.8.1, is-core-module@^2.9.0:
- version "2.11.0"
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144"
- integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==
+is-core-module@^2.13.0, is-core-module@^2.8.1, is-core-module@^2.9.0:
+ version "2.13.1"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384"
+ integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==
dependencies:
- has "^1.0.3"
+ hasown "^2.0.0"
is-date-object@^1.0.1, is-date-object@^1.0.5:
version "1.0.5"
@@ -4214,16 +4433,12 @@ is-symbol@^1.0.2, is-symbol@^1.0.3:
dependencies:
has-symbols "^1.0.2"
-is-typed-array@^1.1.10:
- version "1.1.10"
- resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f"
- integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==
+is-typed-array@^1.1.10, is-typed-array@^1.1.12, is-typed-array@^1.1.9:
+ version "1.1.12"
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a"
+ integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==
dependencies:
- available-typed-arrays "^1.0.5"
- call-bind "^1.0.2"
- for-each "^0.3.3"
- gopd "^1.0.1"
- has-tostringtag "^1.0.0"
+ which-typed-array "^1.1.11"
is-unicode-supported@^0.1.0:
version "0.1.0"
@@ -4298,6 +4513,15 @@ istanbul-lib-instrument@^5.0.4:
istanbul-lib-coverage "^3.2.0"
semver "^6.3.0"
+jackspeak@^2.3.5:
+ version "2.3.6"
+ resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8"
+ integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==
+ dependencies:
+ "@isaacs/cliui" "^8.0.2"
+ optionalDependencies:
+ "@pkgjs/parseargs" "^0.11.0"
+
jest-worker@^27.4.5:
version "27.5.1"
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0"
@@ -4307,11 +4531,6 @@ jest-worker@^27.4.5:
merge-stream "^2.0.0"
supports-color "^8.0.0"
-js-sdsl@^4.1.4:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.2.0.tgz#278e98b7bea589b8baaf048c20aeb19eb7ad09d0"
- integrity sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==
-
js-tokens@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
@@ -4342,6 +4561,11 @@ jsesc@~0.5.0:
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==
+json-buffer@3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13"
+ integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
+
json-parse-better-errors@^1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
@@ -4372,10 +4596,10 @@ json-stable-stringify-without-jsonify@^1.0.1:
resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
-json5@^2.1.2, json5@^2.2.1:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.2.tgz#64471c5bdcc564c18f7c1d4df2e2297f2457c5ab"
- integrity sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==
+json5@^2.1.2, json5@^2.2.1, json5@^2.2.2, json5@^2.2.3:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
+ integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
jsonc-parser@3.2.0:
version "3.2.0"
@@ -4394,15 +4618,22 @@ karma-source-map-support@1.4.0:
dependencies:
source-map-support "^0.5.5"
+keyv@^4.5.3:
+ version "4.5.4"
+ resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93"
+ integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==
+ dependencies:
+ json-buffer "3.0.1"
+
kind-of@^6.0.2:
version "6.0.3"
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
klona@^2.0.4, klona@^2.0.5:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc"
- integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22"
+ integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==
less-loader@11.1.0:
version "11.1.0"
@@ -4529,16 +4760,21 @@ lru-cache@^6.0.0:
yallist "^4.0.0"
lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1:
- version "7.14.1"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.14.1.tgz#8da8d2f5f59827edb388e63e459ac23d6d408fea"
- integrity sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA==
+ version "7.18.3"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89"
+ integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==
+
+"lru-cache@^9.1.1 || ^10.0.0":
+ version "10.0.1"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.1.tgz#0a3be479df549cca0e5d693ac402ff19537a6b7a"
+ integrity sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==
-magic-string@0.26.7:
- version "0.26.7"
- resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.26.7.tgz#caf7daf61b34e9982f8228c4527474dac8981d6f"
- integrity sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==
+magic-string@0.29.0:
+ version "0.29.0"
+ resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.29.0.tgz#f034f79f8c43dba4ae1730ffb5e8c4e084b16cf3"
+ integrity sha512-WcfidHrDjMY+eLjlU+8OvwREqHwpgCeKVBUpQ3OhYYuvfaYCUgcbuBzappNzZvg/v8onU3oQj+BYpkOJe9Iw4Q==
dependencies:
- sourcemap-codec "^1.4.8"
+ "@jridgewell/sourcemap-codec" "^1.4.13"
magic-string@^0.27.0:
version "0.27.0"
@@ -4562,42 +4798,19 @@ make-dir@^3.0.2:
dependencies:
semver "^6.0.0"
-make-fetch-happen@^10.0.3:
- version "10.2.1"
- resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164"
- integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==
- dependencies:
- agentkeepalive "^4.2.1"
- cacache "^16.1.0"
- http-cache-semantics "^4.1.0"
- http-proxy-agent "^5.0.0"
- https-proxy-agent "^5.0.0"
- is-lambda "^1.0.1"
- lru-cache "^7.7.1"
- minipass "^3.1.6"
- minipass-collect "^1.0.2"
- minipass-fetch "^2.0.3"
- minipass-flush "^1.0.5"
- minipass-pipeline "^1.2.4"
- negotiator "^0.6.3"
- promise-retry "^2.0.1"
- socks-proxy-agent "^7.0.0"
- ssri "^9.0.0"
-
-make-fetch-happen@^11.0.0:
- version "11.0.2"
- resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-11.0.2.tgz#a880370fb2452d528a5ca40b2d6308999773ab17"
- integrity sha512-5n/Pq41w/uZghpdlXAY5kIM85RgJThtTH/NYBRAZ9VUOBWV90USaQjwGrw76fZP3Lj5hl/VZjpVvOaRBMoL/2w==
+make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.0.3, make-fetch-happen@^11.1.1:
+ version "11.1.1"
+ resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz#85ceb98079584a9523d4bf71d32996e7e208549f"
+ integrity sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==
dependencies:
agentkeepalive "^4.2.1"
cacache "^17.0.0"
- http-cache-semantics "^4.1.0"
+ http-cache-semantics "^4.1.1"
http-proxy-agent "^5.0.0"
https-proxy-agent "^5.0.0"
is-lambda "^1.0.1"
lru-cache "^7.7.1"
- minipass "^4.0.0"
- minipass-collect "^1.0.2"
+ minipass "^5.0.0"
minipass-fetch "^3.0.0"
minipass-flush "^1.0.5"
minipass-pipeline "^1.2.4"
@@ -4611,12 +4824,12 @@ media-typer@0.3.0:
resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==
-memfs@^3.4.3:
- version "3.4.12"
- resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.4.12.tgz#d00f8ad8dab132dc277c659dc85bfd14b07d03bd"
- integrity sha512-BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw==
+memfs@^3.4.12, memfs@^3.4.3:
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.6.0.tgz#d7a2110f86f79dd950a8b6df6d57bc984aa185f6"
+ integrity sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==
dependencies:
- fs-monkey "^1.0.3"
+ fs-monkey "^1.0.4"
memorystream@^0.3.1:
version "0.3.1"
@@ -4673,10 +4886,10 @@ mimic-fn@^2.1.0:
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
-mini-css-extract-plugin@2.6.1:
- version "2.6.1"
- resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz#9a1251d15f2035c342d99a468ab9da7a0451b71e"
- integrity sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==
+mini-css-extract-plugin@2.7.2:
+ version "2.7.2"
+ resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.2.tgz#e049d3ea7d3e4e773aad585c6cb329ce0c7b72d7"
+ integrity sha512-EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw==
dependencies:
schema-utils "^4.0.0"
@@ -4693,9 +4906,16 @@ minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
brace-expansion "^1.1.7"
minimatch@^5.0.1:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.2.tgz#0939d7d6f0898acbd1508abe534d1929368a8fff"
- integrity sha512-bNH9mmM9qsJ2X4r2Nat1B//1dJVcn3+iBLa3IgqJ7EbGaDNepL9QSHOxN4ng33s52VMMhhIfgCYDk3C4ZmlDAg==
+ version "5.1.6"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
+ integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
+ dependencies:
+ brace-expansion "^2.0.1"
+
+minimatch@^9.0.0, minimatch@^9.0.1:
+ version "9.0.3"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
+ integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
dependencies:
brace-expansion "^2.0.1"
@@ -4706,23 +4926,12 @@ minipass-collect@^1.0.2:
dependencies:
minipass "^3.0.0"
-minipass-fetch@^2.0.3:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz#95560b50c472d81a3bc76f20ede80eaed76d8add"
- integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==
- dependencies:
- minipass "^3.1.6"
- minipass-sized "^1.0.3"
- minizlib "^2.1.2"
- optionalDependencies:
- encoding "^0.1.13"
-
minipass-fetch@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.1.tgz#bae3789f668d82ffae3ea47edc6b78b8283b3656"
- integrity sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.4.tgz#4d4d9b9f34053af6c6e597a64be8e66e42bf45b7"
+ integrity sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==
dependencies:
- minipass "^4.0.0"
+ minipass "^7.0.3"
minipass-sized "^1.0.3"
minizlib "^2.1.2"
optionalDependencies:
@@ -4757,7 +4966,7 @@ minipass-sized@^1.0.3:
dependencies:
minipass "^3.0.0"
-minipass@^3.0.0, minipass@^3.1.1, minipass@^3.1.6:
+minipass@^3.0.0:
version "3.3.6"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a"
integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==
@@ -4765,11 +4974,19 @@ minipass@^3.0.0, minipass@^3.1.1, minipass@^3.1.6:
yallist "^4.0.0"
minipass@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.0.0.tgz#7cebb0f9fa7d56f0c5b17853cbe28838a8dbbd3b"
- integrity sha512-g2Uuh2jEKoht+zvO6vJqXmYpflPqzRBT+Th2h01DKh5z7wbY/AZ2gCQ78cP70YoHPyFdY30YBV5WxgLOEwOykw==
- dependencies:
- yallist "^4.0.0"
+ version "4.2.8"
+ resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.2.8.tgz#f0010f64393ecfc1d1ccb5f582bcaf45f48e1a3a"
+ integrity sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==
+
+minipass@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d"
+ integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==
+
+"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.3:
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c"
+ integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==
minizlib@^2.1.1, minizlib@^2.1.2:
version "2.1.2"
@@ -4779,7 +4996,7 @@ minizlib@^2.1.1, minizlib@^2.1.2:
minipass "^3.0.0"
yallist "^4.0.0"
-mkdirp@^1.0.3, mkdirp@^1.0.4:
+mkdirp@^1.0.3:
version "1.0.4"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
@@ -4812,10 +5029,10 @@ mute-stream@0.0.8:
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
-nanoid@^3.3.4:
- version "3.3.4"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
- integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
+nanoid@^3.3.6:
+ version "3.3.6"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
+ integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
natural-compare@^1.4.0:
version "1.4.0"
@@ -4865,19 +5082,20 @@ node-forge@^1:
integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==
node-gyp-build@^4.2.2:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40"
- integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==
+ version "4.6.1"
+ resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.6.1.tgz#24b6d075e5e391b8d5539d98c7fc5c210cac8a3e"
+ integrity sha512-24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ==
node-gyp@^9.0.0:
- version "9.3.1"
- resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.3.1.tgz#1e19f5f290afcc9c46973d68700cbd21a96192e4"
- integrity sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==
+ version "9.4.0"
+ resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.4.0.tgz#2a7a91c7cba4eccfd95e949369f27c9ba704f369"
+ integrity sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==
dependencies:
env-paths "^2.2.0"
+ exponential-backoff "^3.1.1"
glob "^7.1.4"
graceful-fs "^4.2.6"
- make-fetch-happen "^10.0.3"
+ make-fetch-happen "^11.0.3"
nopt "^6.0.0"
npmlog "^6.0.0"
rimraf "^3.0.2"
@@ -4885,10 +5103,10 @@ node-gyp@^9.0.0:
tar "^6.1.2"
which "^2.0.2"
-node-releases@^2.0.6:
- version "2.0.8"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.8.tgz#0f349cdc8fcfa39a92ac0be9bc48b7706292b9ae"
- integrity sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==
+node-releases@^2.0.13, node-releases@^2.0.8:
+ version "2.0.13"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d"
+ integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==
nopt@^6.0.0:
version "6.0.0"
@@ -4935,28 +5153,18 @@ npm-bundled@^3.0.0:
npm-normalize-package-bin "^3.0.0"
npm-install-checks@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.0.0.tgz#9a021d8e8b3956d61fd265c2eda4735bcd3d9b83"
- integrity sha512-SBU9oFglRVZnfElwAtF14NivyulDqF1VKqqwNsFW9HDcbHMAPHpRSsVFgKuwFGq/hVvWZExz62Th0kvxn/XE7Q==
+ version "6.3.0"
+ resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.3.0.tgz#046552d8920e801fa9f919cad569545d60e826fe"
+ integrity sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==
dependencies:
semver "^7.1.1"
npm-normalize-package-bin@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.0.tgz#6097436adb4ef09e2628b59a7882576fe53ce485"
- integrity sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==
-
-npm-package-arg@9.1.2:
- version "9.1.2"
- resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-9.1.2.tgz#fc8acecb00235f42270dda446f36926ddd9ac2bc"
- integrity sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg==
- dependencies:
- hosted-git-info "^5.0.0"
- proc-log "^2.0.1"
- semver "^7.3.5"
- validate-npm-package-name "^4.0.0"
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832"
+ integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==
-npm-package-arg@^10.0.0:
+npm-package-arg@10.1.0, npm-package-arg@^10.0.0:
version "10.1.0"
resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-10.1.0.tgz#827d1260a683806685d17193073cc152d3c7e9b1"
integrity sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==
@@ -4973,7 +5181,7 @@ npm-packlist@^7.0.0:
dependencies:
ignore-walk "^6.0.0"
-npm-pick-manifest@8.0.1, npm-pick-manifest@^8.0.0:
+npm-pick-manifest@8.0.1:
version "8.0.1"
resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-8.0.1.tgz#c6acd97d1ad4c5dbb80eac7b386b03ffeb289e5f"
integrity sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==
@@ -4983,13 +5191,23 @@ npm-pick-manifest@8.0.1, npm-pick-manifest@^8.0.0:
npm-package-arg "^10.0.0"
semver "^7.3.5"
+npm-pick-manifest@^8.0.0:
+ version "8.0.2"
+ resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-8.0.2.tgz#2159778d9c7360420c925c1a2287b5a884c713aa"
+ integrity sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==
+ dependencies:
+ npm-install-checks "^6.0.0"
+ npm-normalize-package-bin "^3.0.0"
+ npm-package-arg "^10.0.0"
+ semver "^7.3.5"
+
npm-registry-fetch@^14.0.0:
- version "14.0.3"
- resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-14.0.3.tgz#8545e321c2b36d2c6fe6e009e77e9f0e527f547b"
- integrity sha512-YaeRbVNpnWvsGOjX2wk5s85XJ7l1qQBGAp724h8e2CZFFhMSuw9enom7K1mWVUtvXO1uUSFIAPofQK0pPN0ZcA==
+ version "14.0.5"
+ resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz#fe7169957ba4986a4853a650278ee02e568d115d"
+ integrity sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==
dependencies:
make-fetch-happen "^11.0.0"
- minipass "^4.0.0"
+ minipass "^5.0.0"
minipass-fetch "^3.0.0"
minipass-json-stream "^1.0.1"
minizlib "^2.1.2"
@@ -5035,10 +5253,10 @@ nth-check@^2.0.1:
dependencies:
boolbase "^1.0.0"
-object-inspect@^1.12.2, object-inspect@^1.9.0:
- version "1.12.2"
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
- integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
+object-inspect@^1.13.1, object-inspect@^1.9.0:
+ version "1.13.1"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2"
+ integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==
object-is@^1.1.5:
version "1.1.5"
@@ -5094,26 +5312,35 @@ onetime@^5.1.0, onetime@^5.1.2:
dependencies:
mimic-fn "^2.1.0"
-open@8.4.0, open@^8.0.9:
- version "8.4.0"
- resolved "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8"
- integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==
+open@8.4.1:
+ version "8.4.1"
+ resolved "https://registry.yarnpkg.com/open/-/open-8.4.1.tgz#2ab3754c07f5d1f99a7a8d6a82737c95e3101cff"
+ integrity sha512-/4b7qZNhv6Uhd7jjnREh1NjnPxlTq+XNWPG88Ydkj5AILcA5m3ajvcg57pB24EQjKv0dK62XnDqk9c/hkIG5Kg==
dependencies:
define-lazy-prop "^2.0.0"
is-docker "^2.1.1"
is-wsl "^2.2.0"
-optionator@^0.9.1:
- version "0.9.1"
- resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
- integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
+open@^8.0.9:
+ version "8.4.2"
+ resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9"
+ integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==
dependencies:
+ define-lazy-prop "^2.0.0"
+ is-docker "^2.1.1"
+ is-wsl "^2.2.0"
+
+optionator@^0.9.3:
+ version "0.9.3"
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64"
+ integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==
+ dependencies:
+ "@aashutoshrathi/word-wrap" "^1.2.3"
deep-is "^0.1.3"
fast-levenshtein "^2.0.6"
levn "^0.4.1"
prelude-ls "^1.2.1"
type-check "^0.4.0"
- word-wrap "^1.2.3"
ora@5.4.1, ora@^5.4.1:
version "5.4.1"
@@ -5183,18 +5410,18 @@ p-try@^2.0.0:
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
-pacote@15.0.6:
- version "15.0.6"
- resolved "https://registry.yarnpkg.com/pacote/-/pacote-15.0.6.tgz#8c498b5c23270da4f4c87f7eeba0248a3ae61342"
- integrity sha512-dQwcz/sME7QIL+cdrw/jftQfMMXxSo17i2kJ/gnhBhUvvBAsxoBu1lw9B5IzCH/Ce8CvEkG/QYZ6txzKfn0bTw==
+pacote@15.1.0:
+ version "15.1.0"
+ resolved "https://registry.yarnpkg.com/pacote/-/pacote-15.1.0.tgz#2e0b12a4f55ffd801a8134a1ae28ef361dc3f243"
+ integrity sha512-FFcjtIl+BQNfeliSm7MZz5cpdohvUV1yjGnqgVM4UnVF7JslRY0ImXAygdaCDV0jjUADEWu4y5xsDV8brtrTLg==
dependencies:
"@npmcli/git" "^4.0.0"
"@npmcli/installed-package-contents" "^2.0.1"
"@npmcli/promise-spawn" "^6.0.1"
"@npmcli/run-script" "^6.0.0"
cacache "^17.0.0"
- fs-minipass "^2.1.0"
- minipass "^3.1.6"
+ fs-minipass "^3.0.0"
+ minipass "^4.0.0"
npm-package-arg "^10.0.0"
npm-packlist "^7.0.0"
npm-pick-manifest "^8.0.0"
@@ -5203,6 +5430,7 @@ pacote@15.0.6:
promise-retry "^2.0.1"
read-package-json "^6.0.0"
read-package-json-fast "^3.0.0"
+ sigstore "^1.0.0"
ssri "^10.0.0"
tar "^6.1.11"
@@ -5241,13 +5469,14 @@ parse-node-version@^1.0.1:
resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b"
integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==
-parse5-html-rewriting-stream@6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-6.0.1.tgz#de1820559317ab4e451ea72dba05fddfd914480b"
- integrity sha512-vwLQzynJVEfUlURxgnf51yAJDQTtVpNyGD8tKi2Za7m+akukNHxCcUQMAa/mUGLhCeicFdpy7Tlvj8ZNKadprg==
+parse5-html-rewriting-stream@7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-7.0.0.tgz#e376d3e762d2950ccbb6bb59823fc1d7e9fdac36"
+ integrity sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==
dependencies:
- parse5 "^6.0.1"
- parse5-sax-parser "^6.0.1"
+ entities "^4.3.0"
+ parse5 "^7.0.0"
+ parse5-sax-parser "^7.0.0"
parse5-htmlparser2-tree-adapter@^6.0.1:
version "6.0.1"
@@ -5256,18 +5485,25 @@ parse5-htmlparser2-tree-adapter@^6.0.1:
dependencies:
parse5 "^6.0.1"
-parse5-sax-parser@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/parse5-sax-parser/-/parse5-sax-parser-6.0.1.tgz#98b4d366b5b266a7cd90b4b58906667af882daba"
- integrity sha512-kXX+5S81lgESA0LsDuGjAlBybImAChYRMT+/uKCEXFBFOeEhS52qUCydGhU3qLRD8D9DVjaUo821WK7DM4iCeg==
+parse5-sax-parser@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/parse5-sax-parser/-/parse5-sax-parser-7.0.0.tgz#4c05064254f0488676aca75fb39ca069ec96dee5"
+ integrity sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==
dependencies:
- parse5 "^6.0.1"
+ parse5 "^7.0.0"
parse5@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
+parse5@^7.0.0:
+ version "7.1.2"
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32"
+ integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==
+ dependencies:
+ entities "^4.4.0"
+
parseurl@~1.3.2, parseurl@~1.3.3:
version "1.3.3"
resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
@@ -5298,6 +5534,14 @@ path-parse@^1.0.7:
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
+path-scurry@^1.10.1:
+ version "1.10.1"
+ resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698"
+ integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==
+ dependencies:
+ lru-cache "^9.1.1 || ^10.0.0"
+ minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
+
path-to-regexp@0.1.7:
version "0.1.7"
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
@@ -5358,14 +5602,14 @@ pkg-dir@^4.1.0:
dependencies:
find-up "^4.0.0"
-postcss-loader@7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.0.1.tgz#4c883cc0a1b2bfe2074377b7a74c1cd805684395"
- integrity sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==
+postcss-loader@7.0.2:
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.0.2.tgz#b53ff44a26fba3688eee92a048c7f2d4802e23bb"
+ integrity sha512-fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg==
dependencies:
cosmiconfig "^7.0.0"
klona "^2.0.5"
- semver "^7.3.7"
+ semver "^7.3.8"
postcss-modules-extract-imports@^3.0.0:
version "3.0.0"
@@ -5373,9 +5617,9 @@ postcss-modules-extract-imports@^3.0.0:
integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==
postcss-modules-local-by-default@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c"
- integrity sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524"
+ integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==
dependencies:
icss-utils "^5.0.0"
postcss-selector-parser "^6.0.2"
@@ -5396,9 +5640,9 @@ postcss-modules-values@^4.0.0:
icss-utils "^5.0.0"
postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4:
- version "6.0.11"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc"
- integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==
+ version "6.0.13"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b"
+ integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==
dependencies:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
@@ -5408,21 +5652,12 @@ postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
-postcss@8.4.19:
- version "8.4.19"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.19.tgz#61178e2add236b17351897c8bcc0b4c8ecab56fc"
- integrity sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==
+postcss@8.4.31, postcss@^8.2.14, postcss@^8.3.7, postcss@^8.4.19:
+ version "8.4.31"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d"
+ integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==
dependencies:
- nanoid "^3.3.4"
- picocolors "^1.0.0"
- source-map-js "^1.0.2"
-
-postcss@^8.2.14, postcss@^8.3.7, postcss@^8.4.19:
- version "8.4.20"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.20.tgz#64c52f509644cecad8567e949f4081d98349dc56"
- integrity sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==
- dependencies:
- nanoid "^3.3.4"
+ nanoid "^3.3.6"
picocolors "^1.0.0"
source-map-js "^1.0.2"
@@ -5436,11 +5671,6 @@ pretty-bytes@^5.3.0:
resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb"
integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
-proc-log@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-2.0.1.tgz#8f3f69a1f608de27878f91f5c688b225391cb685"
- integrity sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==
-
proc-log@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-3.0.0.tgz#fb05ef83ccd64fd7b20bbe9c8c1070fc08338dd8"
@@ -5478,9 +5708,9 @@ prr@~1.0.1:
integrity sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==
punycode@^2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
- integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f"
+ integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==
qs@6.11.0:
version "6.11.0"
@@ -5525,11 +5755,11 @@ read-package-json-fast@^3.0.0:
npm-normalize-package-bin "^3.0.0"
read-package-json@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-6.0.0.tgz#6a741841ad72a40e77a82b9c3c8c10e865bbc519"
- integrity sha512-b/9jxWJ8EwogJPpv99ma+QwtqB7FSl3+V6UXS7Aaay8/5VwMY50oIFooY1UKXMWpfNCM6T/PoGqa5GD1g9xf9w==
+ version "6.0.4"
+ resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-6.0.4.tgz#90318824ec456c287437ea79595f4c2854708836"
+ integrity sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==
dependencies:
- glob "^8.0.1"
+ glob "^10.2.2"
json-parse-even-better-errors "^3.0.0"
normalize-package-data "^5.0.0"
npm-normalize-package-bin "^3.0.0"
@@ -5544,9 +5774,9 @@ read-pkg@^3.0.0:
path-type "^3.0.0"
readable-stream@^2.0.1:
- version "2.3.7"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
- integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
+ version "2.3.8"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b"
+ integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
dependencies:
core-util-is "~1.0.0"
inherits "~2.0.3"
@@ -5557,9 +5787,9 @@ readable-stream@^2.0.1:
util-deprecate "~1.0.1"
readable-stream@^3.0.6, readable-stream@^3.4.0, readable-stream@^3.6.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
- integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
+ version "3.6.2"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
+ integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
dependencies:
inherits "^2.0.3"
string_decoder "^1.1.1"
@@ -5578,9 +5808,9 @@ reflect-metadata@^0.1.2:
integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==
regenerate-unicode-properties@^10.1.0:
- version "10.1.0"
- resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
- integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==
+ version "10.1.1"
+ resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480"
+ integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==
dependencies:
regenerate "^1.4.2"
@@ -5589,15 +5819,20 @@ regenerate@^1.4.2:
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
-regenerator-runtime@^0.13.10, regenerator-runtime@^0.13.11:
+regenerator-runtime@^0.13.11:
version "0.13.11"
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
-regenerator-transform@^0.15.1:
- version "0.15.1"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56"
- integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==
+regenerator-runtime@^0.14.0:
+ version "0.14.0"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45"
+ integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==
+
+regenerator-transform@^0.15.2:
+ version "0.15.2"
+ resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4"
+ integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==
dependencies:
"@babel/runtime" "^7.8.4"
@@ -5606,37 +5841,32 @@ regex-parser@^2.2.11:
resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58"
integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==
-regexp.prototype.flags@^1.4.3:
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
- integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
+regexp.prototype.flags@^1.5.0, regexp.prototype.flags@^1.5.1:
+ version "1.5.1"
+ resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz#90ce989138db209f81492edd734183ce99f9677e"
+ integrity sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.3"
- functions-have-names "^1.2.2"
+ define-properties "^1.2.0"
+ set-function-name "^2.0.0"
regexpp@^3.2.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
-regexpu-core@^5.2.1:
- version "5.2.2"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.2.2.tgz#3e4e5d12103b64748711c3aad69934d7718e75fc"
- integrity sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==
+regexpu-core@^5.3.1:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b"
+ integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==
dependencies:
+ "@babel/regjsgen" "^0.8.0"
regenerate "^1.4.2"
regenerate-unicode-properties "^10.1.0"
- regjsgen "^0.7.1"
regjsparser "^0.9.1"
unicode-match-property-ecmascript "^2.0.0"
unicode-match-property-value-ecmascript "^2.1.0"
-regjsgen@^0.7.1:
- version "0.7.1"
- resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.7.1.tgz#ee5ef30e18d3f09b7c369b76e7c2373ed25546f6"
- integrity sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==
-
regjsparser@^0.9.1:
version "0.9.1"
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709"
@@ -5680,7 +5910,7 @@ resolve-url-loader@5.0.0:
postcss "^8.2.14"
source-map "0.6.1"
-resolve@1.22.1, resolve@^1.10.0, resolve@^1.14.2:
+resolve@1.22.1:
version "1.22.1"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
@@ -5689,6 +5919,15 @@ resolve@1.22.1, resolve@^1.10.0, resolve@^1.14.2:
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
+resolve@^1.10.0, resolve@^1.14.2:
+ version "1.22.8"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
+ integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
+ dependencies:
+ is-core-module "^2.13.0"
+ path-parse "^1.0.7"
+ supports-preserve-symlinks-flag "^1.0.0"
+
restore-cursor@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
@@ -5739,9 +5978,9 @@ rxjs@6.6.7:
tslib "^1.9.0"
rxjs@^7.5.5:
- version "7.8.0"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4"
- integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==
+ version "7.8.1"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543"
+ integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==
dependencies:
tslib "^2.1.0"
@@ -5752,6 +5991,16 @@ rxjs@~7.5.0:
dependencies:
tslib "^2.1.0"
+safe-array-concat@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.1.tgz#91686a63ce3adbea14d61b14c99572a8ff84754c"
+ integrity sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.1"
+ has-symbols "^1.0.3"
+ isarray "^2.0.5"
+
safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
@@ -5784,38 +6033,38 @@ sass-loader@13.2.0:
klona "^2.0.4"
neo-async "^2.6.2"
-sass@1.56.1:
- version "1.56.1"
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.56.1.tgz#94d3910cd468fd075fa87f5bb17437a0b617d8a7"
- integrity sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==
+sass@1.58.1:
+ version "1.58.1"
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.58.1.tgz#17ab0390076a50578ed0733f1cc45429e03405f6"
+ integrity sha512-bnINi6nPXbP1XNRaranMFEBZWUfdW/AF16Ql5+ypRxfTvCRTTKrLsMIakyDcayUt2t/RZotmL4kgJwNH5xO+bg==
dependencies:
chokidar ">=3.0.0 <4.0.0"
immutable "^4.0.0"
source-map-js ">=0.6.2 <2.0.0"
sax@^1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
- integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/sax/-/sax-1.3.0.tgz#a5dbe77db3be05c9d1ee7785dbd3ea9de51593d0"
+ integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==
schema-utils@^3.1.0, schema-utils@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281"
- integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe"
+ integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==
dependencies:
"@types/json-schema" "^7.0.8"
ajv "^6.12.5"
ajv-keywords "^3.5.2"
schema-utils@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.0.0.tgz#60331e9e3ae78ec5d16353c467c34b3a0a1d3df7"
- integrity sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b"
+ integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==
dependencies:
"@types/json-schema" "^7.0.9"
- ajv "^8.8.0"
+ ajv "^8.9.0"
ajv-formats "^2.1.1"
- ajv-keywords "^5.0.0"
+ ajv-keywords "^5.1.0"
select-hose@^2.0.0:
version "2.0.0"
@@ -5834,14 +6083,14 @@ selfsigned@^2.1.1:
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
-semver@7.3.8:
- version "7.3.8"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798"
- integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==
+semver@7.5.3:
+ version "7.5.3"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.3.tgz#161ce8c2c6b4b3bdca6caadc9fa3317a4c4fe88e"
+ integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==
dependencies:
lru-cache "^6.0.0"
-semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
+semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0, semver@^6.3.1:
version "6.3.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
@@ -5872,10 +6121,10 @@ send@0.18.0:
range-parser "~1.2.1"
statuses "2.0.1"
-serialize-javascript@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8"
- integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==
+serialize-javascript@^6.0.0, serialize-javascript@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c"
+ integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==
dependencies:
randombytes "^2.1.0"
@@ -5907,6 +6156,25 @@ set-blocking@^2.0.0:
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==
+set-function-length@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.1.1.tgz#4bc39fafb0307224a33e106a7d35ca1218d659ed"
+ integrity sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==
+ dependencies:
+ define-data-property "^1.1.1"
+ get-intrinsic "^1.2.1"
+ gopd "^1.0.1"
+ has-property-descriptors "^1.0.0"
+
+set-function-name@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.1.tgz#12ce38b7954310b9f61faa12701620a0c882793a"
+ integrity sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==
+ dependencies:
+ define-data-property "^1.0.1"
+ functions-have-names "^1.2.3"
+ has-property-descriptors "^1.0.0"
+
setprototypeof@1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
@@ -5949,9 +6217,9 @@ shebang-regex@^3.0.0:
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
shell-quote@^1.6.1:
- version "1.7.4"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.4.tgz#33fe15dee71ab2a81fcbd3a52106c5cfb9fb75d8"
- integrity sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680"
+ integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==
side-channel@^1.0.4:
version "1.0.4"
@@ -5967,6 +6235,22 @@ signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7:
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
+signal-exit@^4.0.1:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
+ integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
+
+sigstore@^1.0.0:
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-1.9.0.tgz#1e7ad8933aa99b75c6898ddd0eeebc3eb0d59875"
+ integrity sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==
+ dependencies:
+ "@sigstore/bundle" "^1.1.0"
+ "@sigstore/protobuf-specs" "^0.2.0"
+ "@sigstore/sign" "^1.0.0"
+ "@sigstore/tuf" "^1.0.3"
+ make-fetch-happen "^11.0.1"
+
slash@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
@@ -6040,15 +6324,10 @@ source-map@0.7.4:
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656"
integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==
-sourcemap-codec@^1.4.8:
- version "1.4.8"
- resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
- integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
-
spdx-correct@^3.0.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
- integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c"
+ integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==
dependencies:
spdx-expression-parse "^3.0.0"
spdx-license-ids "^3.0.0"
@@ -6067,9 +6346,9 @@ spdx-expression-parse@^3.0.0:
spdx-license-ids "^3.0.0"
spdx-license-ids@^3.0.0:
- version "3.0.12"
- resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779"
- integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==
+ version "3.0.16"
+ resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz#a14f64e0954f6e25cc6587bd4f392522db0d998f"
+ integrity sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==
spdy-transport@^3.0.0:
version "3.0.0"
@@ -6100,18 +6379,11 @@ sprintf-js@~1.0.2:
integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
ssri@^10.0.0:
- version "10.0.1"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.1.tgz#c61f85894bbc6929fc3746f05e31cf5b44c030d5"
- integrity sha512-WVy6di9DlPOeBWEjMScpNipeSX2jIZBGEn5Uuo8Q7aIuFEuDX0pw8RxcOjlD1TWP4obi24ki7m/13+nFpcbXrw==
- dependencies:
- minipass "^4.0.0"
-
-ssri@^9.0.0:
- version "9.0.1"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057"
- integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==
+ version "10.0.5"
+ resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.5.tgz#e49efcd6e36385196cb515d3a2ad6c3f0265ef8c"
+ integrity sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==
dependencies:
- minipass "^3.1.1"
+ minipass "^7.0.3"
statuses@2.0.1:
version "2.0.1"
@@ -6123,7 +6395,14 @@ statuses@2.0.1:
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
-"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
+stop-iteration-iterator@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4"
+ integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==
+ dependencies:
+ internal-slot "^1.0.4"
+
+"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -6132,32 +6411,50 @@ statuses@2.0.1:
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.1"
+string-width@^5.0.1, string-width@^5.1.2:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
+ integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==
+ dependencies:
+ eastasianwidth "^0.2.0"
+ emoji-regex "^9.2.2"
+ strip-ansi "^7.0.1"
+
string.prototype.padend@^3.0.0:
- version "3.1.4"
- resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.4.tgz#2c43bb3a89eb54b6750de5942c123d6c98dd65b6"
- integrity sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==
+ version "3.1.5"
+ resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.5.tgz#311ef3a4e3c557dd999cdf88fbdde223f2ac0f95"
+ integrity sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
-string.prototype.trimend@^1.0.6:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533"
- integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==
+string.prototype.trim@^1.2.8:
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz#f9ac6f8af4bd55ddfa8895e6aea92a96395393bd"
+ integrity sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
-string.prototype.trimstart@^1.0.6:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4"
- integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==
+string.prototype.trimend@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz#1bb3afc5008661d73e2dc015cd4853732d6c471e"
+ integrity sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+
+string.prototype.trimstart@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz#d4cdb44b83a4737ffbac2d406e405d43d0184298"
+ integrity sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
string_decoder@^1.1.1:
version "1.3.0"
@@ -6173,13 +6470,20 @@ string_decoder@~1.1.1:
dependencies:
safe-buffer "~5.1.0"
-strip-ansi@^6.0.0, strip-ansi@^6.0.1:
+"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
dependencies:
ansi-regex "^5.0.1"
+strip-ansi@^7.0.1:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
+ integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
+ dependencies:
+ ansi-regex "^6.0.1"
+
strip-bom@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
@@ -6190,7 +6494,7 @@ strip-final-newline@^2.0.0:
resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
-strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
+strip-json-comments@3.1.1, strip-json-comments@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
@@ -6232,45 +6536,45 @@ tapable@^2.1.1, tapable@^2.2.0:
integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
tar@^6.1.11, tar@^6.1.2:
- version "6.1.13"
- resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.13.tgz#46e22529000f612180601a6fe0680e7da508847b"
- integrity sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.0.tgz#b14ce49a79cb1cd23bc9b016302dea5474493f73"
+ integrity sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==
dependencies:
chownr "^2.0.0"
fs-minipass "^2.0.0"
- minipass "^4.0.0"
+ minipass "^5.0.0"
minizlib "^2.1.1"
mkdirp "^1.0.3"
yallist "^4.0.0"
terser-webpack-plugin@^5.1.3:
- version "5.3.6"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz#5590aec31aa3c6f771ce1b1acca60639eab3195c"
- integrity sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==
+ version "5.3.9"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1"
+ integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==
dependencies:
- "@jridgewell/trace-mapping" "^0.3.14"
+ "@jridgewell/trace-mapping" "^0.3.17"
jest-worker "^27.4.5"
schema-utils "^3.1.1"
- serialize-javascript "^6.0.0"
- terser "^5.14.1"
+ serialize-javascript "^6.0.1"
+ terser "^5.16.8"
-terser@5.15.1:
- version "5.15.1"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.15.1.tgz#8561af6e0fd6d839669c73b92bdd5777d870ed6c"
- integrity sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==
+terser@5.16.3:
+ version "5.16.3"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.3.tgz#3266017a9b682edfe019b8ecddd2abaae7b39c6b"
+ integrity sha512-v8wWLaS/xt3nE9dgKEWhNUFP6q4kngO5B8eYFUuebsu7Dw/UNAnpUod6UHo04jSSkv8TzKHjZDSd7EXdDQAl8Q==
dependencies:
"@jridgewell/source-map" "^0.3.2"
acorn "^8.5.0"
commander "^2.20.0"
source-map-support "~0.5.20"
-terser@^5.14.1:
- version "5.16.1"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.1.tgz#5af3bc3d0f24241c7fb2024199d5c461a1075880"
- integrity sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==
+terser@^5.16.8:
+ version "5.22.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.22.0.tgz#4f18103f84c5c9437aafb7a14918273310a8a49d"
+ integrity sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==
dependencies:
- "@jridgewell/source-map" "^0.3.2"
- acorn "^8.5.0"
+ "@jridgewell/source-map" "^0.3.3"
+ acorn "^8.8.2"
commander "^2.20.0"
source-map-support "~0.5.20"
@@ -6334,16 +6638,21 @@ tree-kill@1.2.2:
resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc"
integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==
-tslib@2.4.1, tslib@^2.1.0, tslib@^2.3.0:
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e"
- integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==
+tslib@2.5.0:
+ version "2.5.0"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf"
+ integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==
tslib@^1.8.1, tslib@^1.9.0:
version "1.14.1"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
+tslib@^2.1.0, tslib@^2.3.0:
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
+ integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
+
tsutils@^3.21.0:
version "3.21.0"
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
@@ -6351,6 +6660,15 @@ tsutils@^3.21.0:
dependencies:
tslib "^1.8.1"
+tuf-js@^1.1.7:
+ version "1.1.7"
+ resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-1.1.7.tgz#21b7ae92a9373015be77dfe0cb282a80ec3bbe43"
+ integrity sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==
+ dependencies:
+ "@tufjs/models" "1.0.4"
+ debug "^4.3.4"
+ make-fetch-happen "^11.1.1"
+
type-check@^0.4.0, type-check@~0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
@@ -6376,6 +6694,45 @@ type-is@~1.6.18:
media-typer "0.3.0"
mime-types "~2.1.24"
+typed-array-buffer@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60"
+ integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.1"
+ is-typed-array "^1.1.10"
+
+typed-array-byte-length@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0"
+ integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==
+ dependencies:
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ has-proto "^1.0.1"
+ is-typed-array "^1.1.10"
+
+typed-array-byte-offset@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b"
+ integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ has-proto "^1.0.1"
+ is-typed-array "^1.1.10"
+
+typed-array-length@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb"
+ integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
+ dependencies:
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ is-typed-array "^1.1.9"
+
typed-assert@^1.0.8:
version "1.0.9"
resolved "https://registry.yarnpkg.com/typed-assert/-/typed-assert-1.0.9.tgz#8af9d4f93432c4970ec717e3006f33f135b06213"
@@ -6396,6 +6753,11 @@ unbox-primitive@^1.0.2:
has-symbols "^1.0.3"
which-boxed-primitive "^1.0.2"
+undici-types@~5.25.1:
+ version "5.25.3"
+ resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.25.3.tgz#e044115914c85f0bcbb229f346ab739f064998c3"
+ integrity sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==
+
unicode-canonical-property-names-ecmascript@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
@@ -6419,13 +6781,6 @@ unicode-property-aliases-ecmascript@^2.0.0:
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
-unique-filename@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2"
- integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==
- dependencies:
- unique-slug "^3.0.0"
-
unique-filename@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea"
@@ -6433,13 +6788,6 @@ unique-filename@^3.0.0:
dependencies:
unique-slug "^4.0.0"
-unique-slug@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-3.0.0.tgz#6d347cf57c8a7a7a6044aabd0e2d74e4d76dc7c9"
- integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==
- dependencies:
- imurmurhash "^0.1.4"
-
unique-slug@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3"
@@ -6452,10 +6800,10 @@ unpipe@1.0.0, unpipe@~1.0.0:
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
-update-browserslist-db@^1.0.9:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
- integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
+update-browserslist-db@^1.0.10, update-browserslist-db@^1.0.13:
+ version "1.0.13"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4"
+ integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==
dependencies:
escalade "^3.1.1"
picocolors "^1.0.0"
@@ -6490,13 +6838,6 @@ validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4:
spdx-correct "^3.0.0"
spdx-expression-parse "^3.0.0"
-validate-npm-package-name@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-4.0.0.tgz#fe8f1c50ac20afdb86f177da85b3600f0ac0d747"
- integrity sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==
- dependencies:
- builtins "^5.0.0"
-
validate-npm-package-name@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz#f16afd48318e6f90a1ec101377fa0384cfc8c713"
@@ -6531,7 +6872,18 @@ wcwidth@^1.0.1:
dependencies:
defaults "^1.0.3"
-webpack-dev-middleware@5.3.3, webpack-dev-middleware@^5.3.1:
+webpack-dev-middleware@6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-6.0.1.tgz#fd585127ed44dab3f253daf0d98f4d58a5088cc2"
+ integrity sha512-PZPZ6jFinmqVPJZbisfggDiC+2EeGZ1ZByyMP5sOFJcPPWSexalISz+cvm+j+oYPT7FIJyxT76esjnw9DhE5sw==
+ dependencies:
+ colorette "^2.0.10"
+ memfs "^3.4.12"
+ mime-types "^2.1.31"
+ range-parser "^1.2.1"
+ schema-utils "^4.0.0"
+
+webpack-dev-middleware@^5.3.1:
version "5.3.3"
resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f"
integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==
@@ -6597,10 +6949,10 @@ webpack-subresource-integrity@5.1.0:
dependencies:
typed-assert "^1.0.8"
-webpack@5.75.0:
- version "5.75.0"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.75.0.tgz#1e440468647b2505860e94c9ff3e44d5b582c152"
- integrity sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==
+webpack@5.76.1:
+ version "5.76.1"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.76.1.tgz#7773de017e988bccb0f13c7d75ec245f377d295c"
+ integrity sha512-4+YIK4Abzv8172/SGqObnUjaIHjLEuUasz9EwQj/9xmPPkYJy2Mh03Q/lJfSD3YLzbxy5FeTq5Uw0323Oh6SJQ==
dependencies:
"@types/eslint-scope" "^3.7.3"
"@types/estree" "^0.0.51"
@@ -6662,17 +7014,16 @@ which-collection@^1.0.1:
is-weakmap "^2.0.1"
is-weakset "^2.0.1"
-which-typed-array@^1.1.8:
- version "1.1.9"
- resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6"
- integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==
+which-typed-array@^1.1.11, which-typed-array@^1.1.13, which-typed-array@^1.1.9:
+ version "1.1.13"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.13.tgz#870cd5be06ddb616f504e7b039c4c24898184d36"
+ integrity sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==
dependencies:
available-typed-arrays "^1.0.5"
- call-bind "^1.0.2"
+ call-bind "^1.0.4"
for-each "^0.3.3"
gopd "^1.0.1"
has-tostringtag "^1.0.0"
- is-typed-array "^1.1.10"
which@^1.2.9:
version "1.3.1"
@@ -6689,9 +7040,9 @@ which@^2.0.1, which@^2.0.2:
isexe "^2.0.0"
which@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/which/-/which-3.0.0.tgz#a9efd016db59728758a390d23f1687b6e8f59f8e"
- integrity sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/which/-/which-3.0.1.tgz#89f1cd0c23f629a8105ffe69b8172791c87b4be1"
+ integrity sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==
dependencies:
isexe "^2.0.0"
@@ -6703,16 +7054,11 @@ wide-align@^1.1.5:
string-width "^1.0.2 || 2 || 3 || 4"
wildcard@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec"
- integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==
-
-word-wrap@^1.2.3:
- version "1.2.5"
- resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34"
- integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67"
+ integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==
-wrap-ansi@^7.0.0:
+"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -6721,15 +7067,24 @@ wrap-ansi@^7.0.0:
string-width "^4.1.0"
strip-ansi "^6.0.0"
+wrap-ansi@^8.1.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
+ integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==
+ dependencies:
+ ansi-styles "^6.1.0"
+ string-width "^5.0.1"
+ strip-ansi "^7.0.1"
+
wrappy@1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
ws@^8.4.2:
- version "8.11.0"
- resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143"
- integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.14.2.tgz#6c249a806eb2db7a20d26d51e7709eab7b2e6c7f"
+ integrity sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==
y18n@^5.0.5:
version "5.0.8"
@@ -6756,7 +7111,7 @@ yargs-parser@^21.1.1:
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
-yargs@17.6.2, yargs@^17.2.1:
+yargs@17.6.2:
version "17.6.2"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.2.tgz#2e23f2944e976339a1ee00f18c77fedee8332541"
integrity sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==
@@ -6769,6 +7124,19 @@ yargs@17.6.2, yargs@^17.2.1:
y18n "^5.0.5"
yargs-parser "^21.1.1"
+yargs@^17.2.1:
+ version "17.7.2"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"
+ integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==
+ dependencies:
+ cliui "^8.0.1"
+ escalade "^3.1.1"
+ get-caller-file "^2.0.5"
+ require-directory "^2.1.1"
+ string-width "^4.2.3"
+ y18n "^5.0.5"
+ yargs-parser "^21.1.1"
+
yocto-queue@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
diff --git a/demo/c/picovoice_demo_file.c b/demo/c/picovoice_demo_file.c
index b35a75ff2..319875300 100644
--- a/demo/c/picovoice_demo_file.c
+++ b/demo/c/picovoice_demo_file.c
@@ -130,6 +130,12 @@ void print_usage(const char *program_name) {
program_name);
}
+void print_error_message(char **message_stack, int32_t message_stack_depth) {
+ for (int32_t i = 0; i < message_stack_depth; i++) {
+ fprintf(stderr, " [%d] %s\n", i, message_stack[i]);
+ }
+}
+
int picovoice_main(int argc, char *argv[]) {
const char *library_path = NULL;
@@ -261,6 +267,22 @@ int picovoice_main(int argc, char *argv[]) {
exit(1);
}
+ pv_status_t (*pv_get_error_stack_func)(char ***, int32_t *) = load_symbol(picovoice_library, "pv_get_error_stack");
+ if (!pv_get_error_stack_func) {
+ print_dl_error("failed to load 'pv_get_error_stack_func'");
+ exit(1);
+ }
+
+ void (*pv_free_error_stack_func)(char **) = load_symbol(picovoice_library, "pv_free_error_stack");
+ if (!pv_free_error_stack_func) {
+ print_dl_error("failed to load 'pv_free_error_stack_func'");
+ exit(1);
+ }
+
+ char **message_stack = NULL;
+ int32_t message_stack_depth = 0;
+ pv_status_t error_status = PV_STATUS_RUNTIME_ERROR;
+
drwav f;
#if defined(_WIN32) || defined(_WIN64)
@@ -318,6 +340,19 @@ int picovoice_main(int argc, char *argv[]) {
&handle);
if (status != PV_STATUS_SUCCESS) {
fprintf(stderr, "'pv_picovoice_init' failed with '%s'\n", pv_status_to_string_func(status));
+ error_status = pv_get_error_stack_func(&message_stack, &message_stack_depth);
+
+ if (error_status != PV_STATUS_SUCCESS) {
+ fprintf(stderr, ".\nUnable to get Rhino error state with '%s'\n", pv_status_to_string_func(error_status));
+ exit(1);
+ }
+
+ if (message_stack_depth > 0) {
+ fprintf(stderr, ":\n");
+ print_error_message(message_stack, message_stack_depth);
+ }
+
+ pv_free_error_stack_func(message_stack);
exit(1);
}
@@ -333,7 +368,20 @@ int picovoice_main(int argc, char *argv[]) {
status = pv_picovoice_process_func(handle, pcm);
if (status != PV_STATUS_SUCCESS) {
- fprintf(stderr, "'pv_picovoice_process' failed with '%s'\n", pv_status_to_string_func(status));
+ fprintf(stderr, "'pv_picovoice_process' failed with '%s'", pv_status_to_string_func(status));
+ error_status = pv_get_error_stack_func(&message_stack, &message_stack_depth);
+
+ if (error_status != PV_STATUS_SUCCESS) {
+ fprintf(stderr, ".\nUnable to get Rhino error state with '%s'\n", pv_status_to_string_func(error_status));
+ exit(1);
+ }
+
+ if (message_stack_depth > 0) {
+ fprintf(stderr, ":\n");
+ print_error_message(message_stack, message_stack_depth);
+ }
+
+ pv_free_error_stack_func(message_stack);
exit(1);
}
diff --git a/demo/c/picovoice_demo_mic.c b/demo/c/picovoice_demo_mic.c
index dcbd06cbb..f2c7bd0c0 100644
--- a/demo/c/picovoice_demo_mic.c
+++ b/demo/c/picovoice_demo_mic.c
@@ -156,6 +156,12 @@ static void inference_callback(pv_inference_t *inference) {
pv_inference_delete_func(inference);
}
+void print_error_message(char **message_stack, int32_t message_stack_depth) {
+ for (int32_t i = 0; i < message_stack_depth; i++) {
+ fprintf(stderr, " [%d] %s\n", i, message_stack[i]);
+ }
+}
+
int picovoice_main(int argc, char *argv[]) {
signal(SIGINT, interrupt_handler);
@@ -291,6 +297,22 @@ int picovoice_main(int argc, char *argv[]) {
exit(1);
}
+ pv_status_t (*pv_get_error_stack_func)(char ***, int32_t *) = load_symbol(picovoice_library, "pv_get_error_stack");
+ if (!pv_get_error_stack_func) {
+ print_dl_error("failed to load 'pv_get_error_stack_func'");
+ exit(1);
+ }
+
+ void (*pv_free_error_stack_func)(char **) = load_symbol(picovoice_library, "pv_free_error_stack");
+ if (!pv_free_error_stack_func) {
+ print_dl_error("failed to load 'pv_free_error_stack_func'");
+ exit(1);
+ }
+
+ char **message_stack = NULL;
+ int32_t message_stack_depth = 0;
+ pv_status_t error_status = PV_STATUS_RUNTIME_ERROR;
+
fprintf(stdout, "%s\n", access_key);
fprintf(stdout, "%s\n", library_path);
fprintf(stdout, "%s\n", keyword_path);
@@ -312,7 +334,20 @@ int picovoice_main(int argc, char *argv[]) {
inference_callback,
&picovoice);
if (status != PV_STATUS_SUCCESS) {
- fprintf(stderr, "'pv_picovoice_init' failed with '%s'\n", pv_status_to_string_func(status));
+ fprintf(stderr, "'pv_picovoice_init' failed with '%s'", pv_status_to_string_func(status));
+ error_status = pv_get_error_stack_func(&message_stack, &message_stack_depth);
+
+ if (error_status != PV_STATUS_SUCCESS) {
+ fprintf(stderr, ".\nUnable to get Rhino error state with '%s'\n", pv_status_to_string_func(error_status));
+ exit(1);
+ }
+
+ if (message_stack_depth > 0) {
+ fprintf(stderr, ":\n");
+ print_error_message(message_stack, message_stack_depth);
+ }
+
+ pv_free_error_stack_func(message_stack);
exit(1);
}
@@ -354,7 +389,20 @@ int picovoice_main(int argc, char *argv[]) {
status = pv_picovoice_process_func(picovoice, pcm);
if (status != PV_STATUS_SUCCESS) {
- fprintf(stderr, "'pv_picovoice_process' failed with '%s'\n", pv_status_to_string_func(status));
+ fprintf(stderr, "'pv_picovoice_process' failed with '%s'", pv_status_to_string_func(status));
+ error_status = pv_get_error_stack_func(&message_stack, &message_stack_depth);
+
+ if (error_status != PV_STATUS_SUCCESS) {
+ fprintf(stderr, ".\nUnable to get Rhino error state with '%s'\n", pv_status_to_string_func(error_status));
+ exit(1);
+ }
+
+ if (message_stack_depth > 0) {
+ fprintf(stderr, ":\n");
+ print_error_message(message_stack, message_stack_depth);
+ }
+
+ pv_free_error_stack_func(message_stack);
exit(1);
}
}
diff --git a/demo/dotnet/PicovoiceDemo/PicovoiceDemo.csproj b/demo/dotnet/PicovoiceDemo/PicovoiceDemo.csproj
index fe41cbdaa..b0b135ef0 100644
--- a/demo/dotnet/PicovoiceDemo/PicovoiceDemo.csproj
+++ b/demo/dotnet/PicovoiceDemo/PicovoiceDemo.csproj
@@ -19,6 +19,6 @@
-
+
diff --git a/demo/electron/package.json b/demo/electron/package.json
index b123bb0fe..9a3a34394 100644
--- a/demo/electron/package.json
+++ b/demo/electron/package.json
@@ -12,7 +12,7 @@
},
"main": "dist/electron/main/main.js",
"dependencies": {
- "@picovoice/picovoice-vue": "~2.2.2",
+ "@picovoice/picovoice-vue": "~3.0.0",
"@picovoice/web-voice-processor": "~4.0.8"
},
"devDependencies": {
diff --git a/demo/electron/yarn.lock b/demo/electron/yarn.lock
index e5f160b58..825f6c263 100644
--- a/demo/electron/yarn.lock
+++ b/demo/electron/yarn.lock
@@ -346,33 +346,33 @@
dependencies:
semver "^7.3.5"
-"@picovoice/picovoice-vue@~2.2.2":
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/@picovoice/picovoice-vue/-/picovoice-vue-2.2.2.tgz#689aa39f310a14775d37fc449d5052f319ab6da9"
- integrity sha512-HOJkjHUsNXrfYGjgrNGkJcNBPYnLtLdD5YooFEti10/D68Tin1qVMFxz59oEAo6z8uZH9VIU26IU/vdqQ36C/Q==
+"@picovoice/picovoice-vue@~3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/picovoice-vue/-/picovoice-vue-3.0.0.tgz#694467a312e2aad154d6ae4e374a194d6761e497"
+ integrity sha512-z61lcOC/laHLko3XsJD2nf5r7px2tqmNNzaI8usYctMrmRlCv/mKKMkBzf9Vr18Y+5pSPLl/0x1hcV17fKsAUw==
dependencies:
- "@picovoice/picovoice-web" "=2.2.1"
+ "@picovoice/picovoice-web" "=3.0.0"
-"@picovoice/picovoice-web@=2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@picovoice/picovoice-web/-/picovoice-web-2.2.1.tgz#55f7f43ce7cd524616d3ceb2049576d2bcabd17e"
- integrity sha512-Wl5ikiwzUXAilEbXVKz3Up9xmuEgRplYbIob3NgdzixyJMB/6Vm2CsjC9kh8KqHvrk5HKb/RBRI2x4Hh/PpF9Q==
+"@picovoice/picovoice-web@=3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/picovoice-web/-/picovoice-web-3.0.0.tgz#e7e8dccbb90634db6db7b04ce31dcb830076f9ac"
+ integrity sha512-A0QY7FO0BomX1g/FMtMUtuSJQnvD5lvSLBaJe1B3iIZxGvdnR45fkLyLXDUEkQD+7wbctdhKWjfhnnOZMbBaGA==
dependencies:
- "@picovoice/porcupine-web" "=2.2.1"
- "@picovoice/rhino-web" "=2.2.1"
+ "@picovoice/porcupine-web" "=3.0.0"
+ "@picovoice/rhino-web" "=3.0.0"
"@picovoice/web-utils" "=1.3.1"
-"@picovoice/porcupine-web@=2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@picovoice/porcupine-web/-/porcupine-web-2.2.1.tgz#d1302405309b8222105c216dc3dfc1ef346015f0"
- integrity sha512-EX40nkUwWusQrbUaQjn2ZP4lYBfjztcXrnFmXQPUL7NuknTVbDAG2t5pEzSTjyb6n/91nXcEOC1EGi5u3xRSzA==
+"@picovoice/porcupine-web@=3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/porcupine-web/-/porcupine-web-3.0.0.tgz#e97e5e90b37af2b4938637efcaaf3cedc9fad6a3"
+ integrity sha512-zwhdh2YHy867wwp6G9YQU0q94VCveOQAAjeeDNFK/poJVtCaVc56kFH7wW0odkJ6s49ob8rQwOBdg7iPpZD0Fw==
dependencies:
"@picovoice/web-utils" "=1.3.1"
-"@picovoice/rhino-web@=2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@picovoice/rhino-web/-/rhino-web-2.2.1.tgz#68ece011d99ecd638e8935147c8e443c294becf5"
- integrity sha512-kwNNvuUt+6x/kfLplLeCV1J2RbTZEkKwe5WoyY6yZbtJB1Tb/+HcWlNaeSU1kLTegxZ6UL+ETT/gay4psDKLmQ==
+"@picovoice/rhino-web@=3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/rhino-web/-/rhino-web-3.0.0.tgz#d3cf3a4d4062726e2f7be5926122e8833e8857a7"
+ integrity sha512-P0sA19lpuh1szkzXgfRxR1bhldoLqkfQP0Ok9uViZYYfX6jcknEziYhNIiAqGdVOexuPbXupAmNsTAru7FfuqQ==
dependencies:
"@picovoice/web-utils" "=1.3.1"
diff --git a/demo/flutter-clock/ios/Podfile.lock b/demo/flutter-clock/ios/Podfile.lock
index 5e5937ed4..706d909da 100644
--- a/demo/flutter-clock/ios/Podfile.lock
+++ b/demo/flutter-clock/ios/Podfile.lock
@@ -12,16 +12,16 @@ PODS:
- path_provider_foundation (0.0.1):
- Flutter
- FlutterMacOS
- - Porcupine-iOS (2.2.1):
+ - Porcupine-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - porcupine_flutter (2.2.2):
+ - porcupine_flutter (3.0.0):
- Flutter
- - Porcupine-iOS (~> 2.2.1)
- - Rhino-iOS (2.2.2):
+ - Porcupine-iOS (~> 3.0.0)
+ - Rhino-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - rhino_flutter (2.2.3):
+ - rhino_flutter (3.0.0):
- Flutter
- - Rhino-iOS (~> 2.2.2)
+ - Rhino-iOS (~> 3.0.0)
- Toast (4.0.0)
DEPENDENCIES:
@@ -63,10 +63,10 @@ SPEC CHECKSUMS:
fluttertoast: fafc4fa4d01a6a9e4f772ecd190ffa525e9e2d9c
ios-voice-processor: 8e32d7f980a06d392d128ef1cd19cf6ddcaca3c1
path_provider_foundation: c68054786f1b4f3343858c1e1d0caaded73f0be9
- Porcupine-iOS: df8e4a63d787b6c16bd5f988fd0f2c29a249a4bd
- porcupine_flutter: a86c481fed82437d972a9b04bffc1396316f24cd
- Rhino-iOS: 0fad86b28d35f67ccb6bd0a2efbbcc0d88b05124
- rhino_flutter: 06eafa6dfcfae5b21696c7c3dab4007fdd46e5d9
+ Porcupine-iOS: 517158e02ac294dda15b713a3c6f74a9e877090c
+ porcupine_flutter: f01557d2a5fe6618ffa1707a2b94573bd16a78b6
+ Rhino-iOS: b92978104bfad32da25b9eeaa4f0628b86ffcee9
+ rhino_flutter: 78d56c9fa0355e4ee94fa59cb3a0d210b5d1e3f9
Toast: 91b396c56ee72a5790816f40d3a94dd357abc196
PODFILE CHECKSUM: 7368163408c647b7eb699d0d788ba6718e18fb8d
diff --git a/demo/flutter-clock/lib/main.dart b/demo/flutter-clock/lib/main.dart
index 3695bda75..9cc393b55 100644
--- a/demo/flutter-clock/lib/main.dart
+++ b/demo/flutter-clock/lib/main.dart
@@ -100,9 +100,6 @@ class _MyHomePageState extends State {
_wakeWordCallback, contextAsset, _inferenceCallback,
processErrorCallback: _errorCallback);
await _picovoiceManager?.start();
- } on PicovoiceInvalidArgumentException catch (ex) {
- _errorCallback(PicovoiceInvalidArgumentException(
- "${ex.message}\nEnsure your accessKey '$accessKey' is a valid access key."));
} on PicovoiceActivationException {
_errorCallback(
PicovoiceActivationException("AccessKey activation error."));
@@ -126,7 +123,6 @@ class _MyHomePageState extends State {
}
void _inferenceCallback(RhinoInference inference) {
- print(inference);
if (inference.isUnderstood!) {
Map slots = inference.slots!;
if (inference.intent == 'clock') {
@@ -513,9 +509,6 @@ class _MyHomePageState extends State {
buildStopwatch(context)
];
return Scaffold(
- // appBar: AppBar(
- // title: Text(widget.title),
- // ),
body: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
crossAxisAlignment: CrossAxisAlignment.stretch,
diff --git a/demo/flutter-clock/pubspec.lock b/demo/flutter-clock/pubspec.lock
index 1b4743794..31c08ed2d 100644
--- a/demo/flutter-clock/pubspec.lock
+++ b/demo/flutter-clock/pubspec.lock
@@ -197,7 +197,7 @@ packages:
name: picovoice_flutter
url: "https://pub.dartlang.org"
source: hosted
- version: "2.2.3"
+ version: "3.0.0"
platform:
dependency: transitive
description:
@@ -218,7 +218,7 @@ packages:
name: porcupine_flutter
url: "https://pub.dartlang.org"
source: hosted
- version: "2.2.2"
+ version: "3.0.0"
process:
dependency: transitive
description:
@@ -232,7 +232,7 @@ packages:
name: rhino_flutter
url: "https://pub.dartlang.org"
source: hosted
- version: "2.2.3"
+ version: "3.0.0"
sky_engine:
dependency: transitive
description: flutter
diff --git a/demo/flutter-clock/pubspec.yaml b/demo/flutter-clock/pubspec.yaml
index 700d8f0d8..511667ed7 100644
--- a/demo/flutter-clock/pubspec.yaml
+++ b/demo/flutter-clock/pubspec.yaml
@@ -13,7 +13,7 @@ dependencies:
sdk: flutter
intl: ^0.17.0
path_provider: ^2.0.9
- picovoice_flutter: ^2.2.3
+ picovoice_flutter: ^3.0.0
flutter_ringtone_player: ^3.0.0
fluttertoast: ^8.0.9
diff --git a/demo/flutter/integration_test/app_test.dart b/demo/flutter/integration_test/app_test.dart
index e6792d6ea..b536c8be7 100644
--- a/demo/flutter/integration_test/app_test.dart
+++ b/demo/flutter/integration_test/app_test.dart
@@ -30,6 +30,8 @@ void main() {
}
group('Picovoice Tests', () {
+ Picovoice? picovoice;
+
late dynamic testData;
setUp(() async {
@@ -38,6 +40,62 @@ void main() {
testData = json.decode(testDataJson);
});
+ testWidgets('Test reset', (tester) async {
+ String language = testData['tests']['parameters'][0]['language'];
+ String wakeword = testData['tests']['parameters'][0]['wakeword'];
+ String contextName = testData['tests']['parameters'][0]['context_name'];
+ String keywordPath =
+ "assets/test_resources/keyword_files/${wakeword}_$platform.ppn";
+ String contextPath =
+ "assets/test_resources/context_files/${contextName}_$platform.rhn";
+ String porcupineModelPath =
+ "assets/test_resources/model_files/porcupine_params${language != "en" ? "_$language" : ""}.pv";
+ String rhinoModelPath =
+ "assets/test_resources/model_files/rhino_params${language != "en" ? "_$language" : ""}.pv";
+
+ bool wakewordCalled = false;
+ RhinoInference? inference;
+
+ void wakewordCallback() async {
+ wakewordCalled = true;
+ await picovoice?.reset();
+ }
+
+ void inferenceCallback(RhinoInference newInference) {
+ if (newInference.isFinalized) {
+ inference = newInference;
+ }
+ }
+
+ try {
+ picovoice = await Picovoice.create(accessKey, keywordPath,
+ wakewordCallback, contextPath, inferenceCallback,
+ porcupineModelPath: porcupineModelPath,
+ rhinoModelPath: rhinoModelPath);
+ } on PicovoiceException catch (ex) {
+ expect(ex, equals(null),
+ reason: "Failed to initialize Picovoice for reset test");
+ return;
+ }
+
+ String audioFile = testData['tests']['parameters'][0]['audio_file'];
+ String audioPath = "assets/test_resources/audio_samples/$audioFile";
+ List pcm = await loadAudioFile(audioPath);
+
+ final int frameLength = picovoice!.frameLength!;
+ for (int i = 0; i < (pcm.length - frameLength); i += frameLength) {
+ picovoice!.process(pcm.sublist(i, i + frameLength));
+ await Future.delayed(Duration(milliseconds: 32));
+ }
+
+ picovoice!.delete();
+ expect(wakewordCalled, equals(true),
+ reason: "Picovoice didn't call wakewordCallback before reset.");
+ expect(inference, equals(null),
+ reason:
+ "Picovoice returned an inference despite reset being called.");
+ });
+
testWidgets('Test all languages', (tester) async {
for (int t = 0; t < testData['tests']['parameters'].length; t++) {
String language = testData['tests']['parameters'][t]['language'];
@@ -46,13 +104,13 @@ void main() {
var expectedInference = testData['tests']['parameters'][t]['inference'];
String keywordPath =
- "assets/test_resources/keyword_files/${wakeword}_${platform}.ppn";
+ "assets/test_resources/keyword_files/${wakeword}_$platform.ppn";
String contextPath =
- "assets/test_resources/context_files/${contextName}_${platform}.rhn";
+ "assets/test_resources/context_files/${contextName}_$platform.rhn";
String porcupineModelPath =
- "assets/test_resources/model_files/porcupine_params${language != "en" ? "_${language}" : ""}.pv";
+ "assets/test_resources/model_files/porcupine_params${language != "en" ? "_$language" : ""}.pv";
String rhinoModelPath =
- "assets/test_resources/model_files/rhino_params${language != "en" ? "_${language}" : ""}.pv";
+ "assets/test_resources/model_files/rhino_params${language != "en" ? "_$language" : ""}.pv";
bool wakewordCalled = false;
RhinoInference? inference;
@@ -67,7 +125,6 @@ void main() {
}
}
- Picovoice picovoice;
try {
picovoice = await Picovoice.create(accessKey, keywordPath,
wakewordCallback, contextPath, inferenceCallback,
@@ -75,36 +132,36 @@ void main() {
rhinoModelPath: rhinoModelPath);
} on PicovoiceException catch (ex) {
expect(ex, equals(null),
- reason: "Failed to initialize Picovoice for ${language}: ${ex}");
+ reason: "Failed to initialize Picovoice for $language: $ex");
return;
}
String audioFile = testData['tests']['parameters'][t]['audio_file'];
- String audioPath = "assets/test_resources/audio_samples/${audioFile}";
+ String audioPath = "assets/test_resources/audio_samples/$audioFile";
List pcm = await loadAudioFile(audioPath);
- final int frameLength = picovoice.frameLength!;
+ final int frameLength = picovoice!.frameLength!;
for (int i = 0; i < (pcm.length - frameLength); i += frameLength) {
- picovoice.process(pcm.sublist(i, i + frameLength));
+ picovoice!.process(pcm.sublist(i, i + frameLength));
await Future.delayed(Duration(milliseconds: 32));
}
- picovoice.delete();
+ picovoice!.delete();
expect(wakewordCalled, equals(true),
reason:
- "Picovoice didn't call wakewordCallback for ${language} ${wakeword} ${contextName}");
+ "Picovoice didn't call wakewordCallback for $language $wakeword $contextName");
expect(inference, isNot(equals(null)),
reason:
- "Picovoice returned wrong inference for ${language} ${wakeword} ${contextName}");
+ "Picovoice returned wrong inference for $language $wakeword $contextName");
expect(inference?.isUnderstood, equals(true),
reason:
- "Picovoice returned wrong inference for ${language} ${wakeword} ${contextName}");
+ "Picovoice returned wrong inference for $language $wakeword $contextName");
expect(inference?.intent, equals(expectedInference['intent']),
reason:
- "Picovoice returned wrong inference for ${language} ${wakeword} ${contextName}");
+ "Picovoice returned wrong inference for $language $wakeword $contextName");
expect(inference?.slots, equals(expectedInference['slots']),
reason:
- "Picovoice returned wrong inference for ${language} ${wakeword} ${contextName}");
+ "Picovoice returned wrong inference for $language $wakeword $contextName");
}
});
});
diff --git a/demo/flutter/ios/Podfile.lock b/demo/flutter/ios/Podfile.lock
index dcc483f7a..5fa27df1e 100644
--- a/demo/flutter/ios/Podfile.lock
+++ b/demo/flutter/ios/Podfile.lock
@@ -9,16 +9,16 @@ PODS:
- path_provider_foundation (0.0.1):
- Flutter
- FlutterMacOS
- - Porcupine-iOS (2.2.1):
+ - Porcupine-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - porcupine_flutter (2.2.2):
+ - porcupine_flutter (3.0.0):
- Flutter
- - Porcupine-iOS (~> 2.2.1)
- - Rhino-iOS (2.2.2):
+ - Porcupine-iOS (~> 3.0.0)
+ - Rhino-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - rhino_flutter (2.2.3):
+ - rhino_flutter (3.0.0):
- Flutter
- - Rhino-iOS (~> 2.2.2)
+ - Rhino-iOS (~> 3.0.0)
DEPENDENCIES:
- Flutter (from `Flutter`)
@@ -54,10 +54,10 @@ SPEC CHECKSUMS:
integration_test: a1e7d09bd98eca2fc37aefd79d4f41ad37bdbbe5
ios-voice-processor: 8e32d7f980a06d392d128ef1cd19cf6ddcaca3c1
path_provider_foundation: c68054786f1b4f3343858c1e1d0caaded73f0be9
- Porcupine-iOS: df8e4a63d787b6c16bd5f988fd0f2c29a249a4bd
- porcupine_flutter: a86c481fed82437d972a9b04bffc1396316f24cd
- Rhino-iOS: 0fad86b28d35f67ccb6bd0a2efbbcc0d88b05124
- rhino_flutter: 06eafa6dfcfae5b21696c7c3dab4007fdd46e5d9
+ Porcupine-iOS: 517158e02ac294dda15b713a3c6f74a9e877090c
+ porcupine_flutter: f01557d2a5fe6618ffa1707a2b94573bd16a78b6
+ Rhino-iOS: b92978104bfad32da25b9eeaa4f0628b86ffcee9
+ rhino_flutter: 78d56c9fa0355e4ee94fa59cb3a0d210b5d1e3f9
PODFILE CHECKSUM: b95e0c370474df3a1db278b722738a6230f01f51
diff --git a/demo/flutter/lib/main.dart b/demo/flutter/lib/main.dart
index e12a9243a..241d18a0b 100644
--- a/demo/flutter/lib/main.dart
+++ b/demo/flutter/lib/main.dart
@@ -69,7 +69,6 @@ class _MyAppState extends State {
} catch (_) {
errorCallback(PicovoiceException(
"Could not find `params.json`. Ensure 'prepare_demo.dart' script was run before launching the demo."));
- return;
}
String platform = Platform.isAndroid
@@ -87,14 +86,31 @@ class _MyAppState extends State {
language != "en" ? "assets/models/porcupine_params_$language.pv" : null;
String? rhinoModelPath =
language != "en" ? "assets/models/rhino_params_$language.pv" : null;
- _picovoiceManager = PicovoiceManager.create(accessKey, wakeWordPath,
- wakeWordCallback, contextPath, inferenceCallback,
- porcupineModelPath: porcupineModelPath,
- rhinoModelPath: rhinoModelPath,
- processErrorCallback: errorCallback);
- setState(() {
- isButtonDisabled = false;
- });
+
+ try {
+ _picovoiceManager = await PicovoiceManager.create(accessKey, wakeWordPath,
+ wakeWordCallback, contextPath, inferenceCallback,
+ porcupineModelPath: porcupineModelPath,
+ rhinoModelPath: rhinoModelPath,
+ processErrorCallback: errorCallback);
+ setState(() {
+ isButtonDisabled = false;
+ contextInfo = _picovoiceManager!.contextInfo;
+ });
+ } on PicovoiceActivationException {
+ errorCallback(
+ PicovoiceActivationException("AccessKey activation error."));
+ } on PicovoiceActivationLimitException {
+ errorCallback(PicovoiceActivationLimitException(
+ "AccessKey reached its device limit."));
+ } on PicovoiceActivationRefusedException {
+ errorCallback(PicovoiceActivationRefusedException("AccessKey refused."));
+ } on PicovoiceActivationThrottledException {
+ errorCallback(PicovoiceActivationThrottledException(
+ "AccessKey has been throttled."));
+ } on PicovoiceException catch (ex) {
+ errorCallback(ex);
+ }
}
void wakeWordCallback() {
@@ -155,38 +171,6 @@ class _MyAppState extends State {
return printText;
}
- Future _startPicovoice() async {
- if (_picovoiceManager == null) {
- throw PicovoiceInvalidStateException(
- "_picovoiceManager not initialized.");
- }
-
- try {
- await _picovoiceManager!.start();
- setState(() {
- contextInfo = _picovoiceManager!.contextInfo;
- });
- return true;
- } on PicovoiceInvalidArgumentException catch (ex) {
- errorCallback(PicovoiceInvalidArgumentException(
- "${ex.message}\nEnsure your accessKey '$accessKey' is valid."));
- } on PicovoiceActivationException {
- errorCallback(
- PicovoiceActivationException("AccessKey activation error."));
- } on PicovoiceActivationLimitException {
- errorCallback(PicovoiceActivationLimitException(
- "AccessKey reached its device limit."));
- } on PicovoiceActivationRefusedException {
- errorCallback(PicovoiceActivationRefusedException("AccessKey refused."));
- } on PicovoiceActivationThrottledException {
- errorCallback(PicovoiceActivationThrottledException(
- "AccessKey has been throttled."));
- } on PicovoiceException catch (ex) {
- errorCallback(ex);
- }
- return false;
- }
-
Future _startProcessing() async {
if (isProcessing) {
return;
@@ -196,12 +180,20 @@ class _MyAppState extends State {
isButtonDisabled = true;
});
- if (await _startPicovoice()) {
+ if (_picovoiceManager == null) {
+ throw PicovoiceInvalidStateException(
+ "_picovoiceManager not initialized.");
+ }
+
+ try {
+ await _picovoiceManager!.start();
setState(() {
isProcessing = true;
rhinoText = "Listening for '$wakeWordName'...";
isButtonDisabled = false;
});
+ } on PicovoiceException catch (ex) {
+ errorCallback(ex);
}
}
@@ -227,17 +219,6 @@ class _MyAppState extends State {
}
_showContextInfo(context) async {
- if (contextInfo == null) {
- setState(() {
- isProcessing = true;
- isButtonDisabled = true;
- });
- if (await _startPicovoice()) {
- await _stopProcessing();
- } else {
- return;
- }
- }
showDialog(
context: context,
builder: (BuildContext context) {
diff --git a/demo/flutter/pubspec.lock b/demo/flutter/pubspec.lock
index f00b04f34..c7f81e571 100644
--- a/demo/flutter/pubspec.lock
+++ b/demo/flutter/pubspec.lock
@@ -193,7 +193,7 @@ packages:
name: picovoice_flutter
url: "https://pub.dartlang.org"
source: hosted
- version: "2.2.3"
+ version: "3.0.0"
platform:
dependency: transitive
description:
@@ -214,7 +214,7 @@ packages:
name: porcupine_flutter
url: "https://pub.dartlang.org"
source: hosted
- version: "2.2.2"
+ version: "3.0.0"
process:
dependency: transitive
description:
@@ -228,7 +228,7 @@ packages:
name: rhino_flutter
url: "https://pub.dartlang.org"
source: hosted
- version: "2.2.3"
+ version: "3.0.0"
sky_engine:
dependency: transitive
description: flutter
diff --git a/demo/flutter/pubspec.yaml b/demo/flutter/pubspec.yaml
index 7865c5bbd..cd18ba800 100644
--- a/demo/flutter/pubspec.yaml
+++ b/demo/flutter/pubspec.yaml
@@ -14,7 +14,7 @@ dependencies:
sdk: flutter
path_provider: ^2.0.9
- picovoice_flutter: ^2.2.3
+ picovoice_flutter: ^3.0.0
dev_dependencies:
integration_test:
diff --git a/demo/go/README.md b/demo/go/README.md
index d7488e6ee..cb9a0e3a7 100644
--- a/demo/go/README.md
+++ b/demo/go/README.md
@@ -5,7 +5,8 @@ This Go module contains demos for processing real-time audio (i.e. microphone) a
## Requirements
- go 1.16+
-- **Windows**: The demos require `cgo`, which means that a gcc compiler like [Mingw](https://www.mingw-w64.org/) is required.
+- **Windows**: The Go binding requires `cgo`, which means that you need to install a gcc compiler like [Mingw](http://mingw-w64.org/) to build
+ - Go versions less than `1.20` requires `gcc` version `11` or lower
## Compatibility
diff --git a/demo/go/filedemo/picovoice_file_demo.go b/demo/go/filedemo/picovoice_file_demo.go
index 1bf33a7da..c7966b9fd 100644
--- a/demo/go/filedemo/picovoice_file_demo.go
+++ b/demo/go/filedemo/picovoice_file_demo.go
@@ -17,8 +17,8 @@ import (
"os"
"path/filepath"
- . "github.com/Picovoice/picovoice/sdk/go/v2"
- rhn "github.com/Picovoice/rhino/binding/go/v2"
+ . "github.com/Picovoice/picovoice/sdk/go/v3"
+ rhn "github.com/Picovoice/rhino/binding/go/v3"
"github.com/go-audio/audio"
"github.com/go-audio/wav"
)
diff --git a/demo/go/go.mod b/demo/go/go.mod
index 27d5f0c7c..4eee1ed05 100644
--- a/demo/go/go.mod
+++ b/demo/go/go.mod
@@ -3,9 +3,9 @@ module picovoicedemo
go 1.16
require (
- github.com/Picovoice/picovoice/sdk/go/v2 v2.2.1
+ github.com/Picovoice/picovoice/sdk/go/v3 v3.0.0
github.com/Picovoice/pvrecorder/binding/go v1.2.1
- github.com/Picovoice/rhino/binding/go/v2 v2.2.1
+ github.com/Picovoice/rhino/binding/go/v3 v3.0.0
github.com/go-audio/audio v1.0.0
github.com/go-audio/wav v1.0.0
)
diff --git a/demo/go/go.sum b/demo/go/go.sum
index e4bbc4e93..5298028e0 100644
--- a/demo/go/go.sum
+++ b/demo/go/go.sum
@@ -1,11 +1,11 @@
-github.com/Picovoice/picovoice/sdk/go/v2 v2.2.1 h1:ToJVlvJJ60BqgLdpBtedTMsc//KD/bNLkpbWUr6ZA+c=
-github.com/Picovoice/picovoice/sdk/go/v2 v2.2.1/go.mod h1:LBbnZnCnQXrEihxs+O9wg3T75wQmnX/Vxly8g/uAnIE=
-github.com/Picovoice/porcupine/binding/go/v2 v2.2.1 h1:sAXWRAt5If2Evfrs2BT+N1HSVMD2X8NF/3hyiMyrOKw=
-github.com/Picovoice/porcupine/binding/go/v2 v2.2.1/go.mod h1:09YbXv1wD+hAav5oygCk/Q3teUeu0vho4BXERzpeGWM=
+github.com/Picovoice/picovoice/sdk/go/v3 v3.0.0 h1:S+I2TNVzcaOl6vQQohjqy1OupWIHdq1zfdJ5uzXlNCY=
+github.com/Picovoice/picovoice/sdk/go/v3 v3.0.0/go.mod h1:Du+bfcCOVa4LVJXnmYh+KrDVmx65C83tSRqR5cA4LH8=
+github.com/Picovoice/porcupine/binding/go/v3 v3.0.0 h1:2tse/DiV2G7B15qxHkphtHjqq0MyR7983RZ6QiTHfAI=
+github.com/Picovoice/porcupine/binding/go/v3 v3.0.0/go.mod h1:6Pg/746wMh0GDNEWqi56GuTsTk7WLeVgTB0ZhyERs8U=
github.com/Picovoice/pvrecorder/binding/go v1.2.1 h1:p99fkYMFbTS4g4WwbhSPkT9PHvlEoVYGaNoqxCITiEo=
github.com/Picovoice/pvrecorder/binding/go v1.2.1/go.mod h1:gQdvBAjoKmRxMFh8W9cVKWcqHsWvu+d13sCPVFm7dhg=
-github.com/Picovoice/rhino/binding/go/v2 v2.2.1 h1:l98KDYu0JmzVTkU+4h1r8m4LYfwPp5TVNkUGNp6l4TM=
-github.com/Picovoice/rhino/binding/go/v2 v2.2.1/go.mod h1:/DNCpNLIENfz9A85bHUUDTW8YSHFcmPDDDA/XZPQgbI=
+github.com/Picovoice/rhino/binding/go/v3 v3.0.0 h1:DnAMuXip/fM+BrKoYu0oovisAQ+QSGYTPh+2AY7qF7E=
+github.com/Picovoice/rhino/binding/go/v3 v3.0.0/go.mod h1:CKikI/Tv7hIyj0aOnAKaBIGPzWfx/0SUayYFDnPCmmI=
github.com/go-audio/audio v1.0.0 h1:zS9vebldgbQqktK4H0lUqWrG8P0NxCJVqcj7ZpNnwd4=
github.com/go-audio/audio v1.0.0/go.mod h1:6uAu0+H2lHkwdGsAY+j2wHPNPpPoeg5AaEFh9FlA+Zs=
github.com/go-audio/riff v1.0.0 h1:d8iCGbDvox9BfLagY94fBynxSPHO80LmZCaOsmKxokA=
diff --git a/demo/go/micdemo/picovoice_mic_demo.go b/demo/go/micdemo/picovoice_mic_demo.go
index fa359af1e..98784a202 100644
--- a/demo/go/micdemo/picovoice_mic_demo.go
+++ b/demo/go/micdemo/picovoice_mic_demo.go
@@ -18,9 +18,9 @@ import (
"os/signal"
"path/filepath"
- . "github.com/Picovoice/picovoice/sdk/go/v2"
+ . "github.com/Picovoice/picovoice/sdk/go/v3"
pvrecorder "github.com/Picovoice/pvrecorder/binding/go"
- rhn "github.com/Picovoice/rhino/binding/go/v2"
+ rhn "github.com/Picovoice/rhino/binding/go/v3"
"github.com/go-audio/wav"
)
diff --git a/demo/ios-swiftui/BaristaDemo/ContentView.swift b/demo/ios-swiftui/BaristaDemo/ContentView.swift
index ef05c5cd8..9eb2d6804 100644
--- a/demo/ios-swiftui/BaristaDemo/ContentView.swift
+++ b/demo/ios-swiftui/BaristaDemo/ContentView.swift
@@ -136,7 +136,7 @@ struct ContentView: View {
.frame(minWidth: 0, maxWidth: UIScreen.main.bounds.width - 50)
.font(.body)
.opacity(viewModel.errorMessage.isEmpty ? 0 : 1)
- .cornerRadius(.infinity)
+ .cornerRadius(10)
Text("Listening...")
.font(.body)
.foregroundColor(activeBlue)
diff --git a/demo/ios-swiftui/BaristaDemo/ViewModel.swift b/demo/ios-swiftui/BaristaDemo/ViewModel.swift
index e766eb208..014ac4dd4 100644
--- a/demo/ios-swiftui/BaristaDemo/ViewModel.swift
+++ b/demo/ios-swiftui/BaristaDemo/ViewModel.swift
@@ -46,7 +46,7 @@ class ViewModel: ObservableObject {
init() {
do {
- picovoiceManager = PicovoiceManager(
+ picovoiceManager = try PicovoiceManager(
accessKey: ACCESS_KEY,
keywordPath: keywordPath!,
onWakeWordDetection: {
@@ -89,7 +89,7 @@ class ViewModel: ObservableObject {
try picovoiceManager.start()
} catch let error as PicovoiceInvalidArgumentError {
- errorMessage = "\(error.localizedDescription)\nEnsure your AccessKey '\(ACCESS_KEY)' is valid"
+ errorMessage = "\(error.localizedDescription)"
} catch is PicovoiceActivationError {
errorMessage = "ACCESS_KEY activation error"
} catch is PicovoiceActivationRefusedError {
diff --git a/demo/ios-swiftui/Podfile b/demo/ios-swiftui/Podfile
index bce35b61e..ebbe66e2a 100644
--- a/demo/ios-swiftui/Podfile
+++ b/demo/ios-swiftui/Podfile
@@ -3,5 +3,7 @@ source 'https://cdn.cocoapods.org/'
platform :ios, '11.0'
target 'BaristaDemo' do
- pod 'Picovoice-iOS', '~> 2.2.2'
+ pod 'Porcupine-iOS', '~> 3.0.0'
+ pod 'Rhino-iOS', '~> 3.0.0'
+ pod 'Picovoice-iOS', '~> 3.0.0'
end
diff --git a/demo/ios-swiftui/Podfile.lock b/demo/ios-swiftui/Podfile.lock
index a845d010b..13f479aa6 100644
--- a/demo/ios-swiftui/Podfile.lock
+++ b/demo/ios-swiftui/Podfile.lock
@@ -1,16 +1,18 @@
PODS:
- ios-voice-processor (1.1.0)
- - Picovoice-iOS (2.2.2):
+ - Picovoice-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - Porcupine-iOS (~> 2.2.1)
- - Rhino-iOS (~> 2.2.2)
- - Porcupine-iOS (2.2.1):
+ - Porcupine-iOS (~> 3.0.0)
+ - Rhino-iOS (~> 3.0.0)
+ - Porcupine-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - Rhino-iOS (2.2.2):
+ - Rhino-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
DEPENDENCIES:
- - Picovoice-iOS (~> 2.2.2)
+ - Picovoice-iOS (~> 3.0.0)
+ - Porcupine-iOS (~> 3.0.0)
+ - Rhino-iOS (~> 3.0.0)
SPEC REPOS:
trunk:
@@ -21,10 +23,10 @@ SPEC REPOS:
SPEC CHECKSUMS:
ios-voice-processor: 8e32d7f980a06d392d128ef1cd19cf6ddcaca3c1
- Picovoice-iOS: a0842f4d2320c32035425cb4aaa9aa095b9b0188
- Porcupine-iOS: df8e4a63d787b6c16bd5f988fd0f2c29a249a4bd
- Rhino-iOS: 0fad86b28d35f67ccb6bd0a2efbbcc0d88b05124
+ Picovoice-iOS: a1aefe4fbc54bb698dd1663d7dee6a5bef9f1c5c
+ Porcupine-iOS: 517158e02ac294dda15b713a3c6f74a9e877090c
+ Rhino-iOS: b92978104bfad32da25b9eeaa4f0628b86ffcee9
-PODFILE CHECKSUM: 63d1720767824602e511ca46371fd9664d612c1d
+PODFILE CHECKSUM: c9069d59c9956108f092330831255e5a5669a51c
COCOAPODS: 1.11.3
diff --git a/demo/ios/BackgroundService/PicovoiceBackgroundServiceDemo/ContentView.swift b/demo/ios/BackgroundService/PicovoiceBackgroundServiceDemo/ContentView.swift
index d4e35c0d8..2055d775b 100644
--- a/demo/ios/BackgroundService/PicovoiceBackgroundServiceDemo/ContentView.swift
+++ b/demo/ios/BackgroundService/PicovoiceBackgroundServiceDemo/ContentView.swift
@@ -1,5 +1,5 @@
//
-// Copyright 2021 Picovoice Inc.
+// Copyright 2021-2023 Picovoice Inc.
// You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
// file accompanying this source.
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
@@ -41,7 +41,7 @@ struct ContentView: View {
}
do {
- self.picovoiceManager = PicovoiceManager(
+ self.picovoiceManager = try PicovoiceManager(
accessKey: self.ACCESS_KEY,
keywordPath: self.keywordPath!,
onWakeWordDetection: {
@@ -74,7 +74,7 @@ struct ContentView: View {
Sound.category = .playAndRecord
NotificationManager.shared.requestNotificationAuthorization()
} catch let error as PicovoiceInvalidArgumentError {
- errorMessage = "\(error.localizedDescription)\nEnsure your AccessKey '\(ACCESS_KEY)' is valid"
+ errorMessage = "\(error.localizedDescription)"
} catch is PicovoiceActivationError {
errorMessage = "ACCESS_KEY activation error"
} catch is PicovoiceActivationRefusedError {
@@ -107,7 +107,7 @@ struct ContentView: View {
.frame(minWidth: 0, maxWidth: UIScreen.main.bounds.width - 50)
.font(.body)
.opacity(errorMessage.isEmpty ? 0 : 1)
- .cornerRadius(.infinity)
+ .cornerRadius(10)
Spacer()
Text("""
diff --git a/demo/ios/BackgroundService/Podfile b/demo/ios/BackgroundService/Podfile
index 373a9454e..32d656de0 100644
--- a/demo/ios/BackgroundService/Podfile
+++ b/demo/ios/BackgroundService/Podfile
@@ -3,6 +3,8 @@ source 'https://cdn.cocoapods.org/'
platform :ios, '11.0'
target 'PicovoiceBackgroundServiceDemo' do
- pod 'Picovoice-iOS', '~> 2.2.2'
+ pod 'Porcupine-iOS', '~> 3.0.0'
+ pod 'Rhino-iOS', '~> 3.0.0'
+ pod 'Picovoice-iOS', '~> 3.0.0'
pod 'SwiftySound'
end
diff --git a/demo/ios/BackgroundService/Podfile.lock b/demo/ios/BackgroundService/Podfile.lock
index 749b7702d..4ce4cbf28 100644
--- a/demo/ios/BackgroundService/Podfile.lock
+++ b/demo/ios/BackgroundService/Podfile.lock
@@ -1,17 +1,19 @@
PODS:
- ios-voice-processor (1.1.0)
- - Picovoice-iOS (2.2.2):
+ - Picovoice-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - Porcupine-iOS (~> 2.2.1)
- - Rhino-iOS (~> 2.2.2)
- - Porcupine-iOS (2.2.1):
+ - Porcupine-iOS (~> 3.0.0)
+ - Rhino-iOS (~> 3.0.0)
+ - Porcupine-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - Rhino-iOS (2.2.2):
+ - Rhino-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- SwiftySound (1.2.0)
DEPENDENCIES:
- - Picovoice-iOS (~> 2.2.2)
+ - Picovoice-iOS (~> 3.0.0)
+ - Porcupine-iOS (~> 3.0.0)
+ - Rhino-iOS (~> 3.0.0)
- SwiftySound
SPEC REPOS:
@@ -24,11 +26,11 @@ SPEC REPOS:
SPEC CHECKSUMS:
ios-voice-processor: 8e32d7f980a06d392d128ef1cd19cf6ddcaca3c1
- Picovoice-iOS: a0842f4d2320c32035425cb4aaa9aa095b9b0188
- Porcupine-iOS: df8e4a63d787b6c16bd5f988fd0f2c29a249a4bd
- Rhino-iOS: 0fad86b28d35f67ccb6bd0a2efbbcc0d88b05124
+ Picovoice-iOS: a1aefe4fbc54bb698dd1663d7dee6a5bef9f1c5c
+ Porcupine-iOS: 517158e02ac294dda15b713a3c6f74a9e877090c
+ Rhino-iOS: b92978104bfad32da25b9eeaa4f0628b86ffcee9
SwiftySound: 9eb28bb14edb601b40027e44319e0ef8383f88bf
-PODFILE CHECKSUM: cf34b9eb6791109a69893ac260b5b87f99269465
+PODFILE CHECKSUM: 4058b949664cb46200a026e1447e41b9927abef6
COCOAPODS: 1.11.3
diff --git a/demo/ios/ForegroundApp/PicovoiceForegroundAppDemo/ContentView.swift b/demo/ios/ForegroundApp/PicovoiceForegroundAppDemo/ContentView.swift
index 6c762c8c8..60e14f087 100644
--- a/demo/ios/ForegroundApp/PicovoiceForegroundAppDemo/ContentView.swift
+++ b/demo/ios/ForegroundApp/PicovoiceForegroundAppDemo/ContentView.swift
@@ -40,7 +40,7 @@ struct ContentView: View {
@State var contextInfo: String = ""
@State var showInfo: Bool = false
- func initPicovoice() {
+ func initPicovoice() -> Bool {
let keywordPath = Bundle.main.url(
forResource: "\(wakeword)_ios",
withExtension: "ppn",
@@ -60,8 +60,8 @@ struct ContentView: View {
forResource: "rhino_params_\(language)",
withExtension: "pv",
subdirectory: "models")!.path
-
- self.picovoiceManager = PicovoiceManager(
+ do {
+ self.picovoiceManager = try PicovoiceManager(
accessKey: self.ACCESS_KEY,
keywordPath: keywordPath,
onWakeWordDetection: {
@@ -93,16 +93,40 @@ struct ContentView: View {
}
},
porcupineModelPath: ppnModelPath,
- rhinoModelPath: rhnModelPath)
+ rhinoModelPath: rhnModelPath,
+ processErrorCallback: { error in
+ DispatchQueue.main.async {
+ errorMessage = "\(error)"
+ }
+ })
+ self.contextInfo = self.picovoiceManager.contextInfo
+ return true
+ } catch let error as PicovoiceInvalidArgumentError {
+ errorMessage = "\(error.localizedDescription)"
+ } catch is PicovoiceActivationError {
+ errorMessage = "ACCESS_KEY activation error"
+ } catch is PicovoiceActivationRefusedError {
+ errorMessage = "ACCESS_KEY activation refused"
+ } catch is PicovoiceActivationLimitError {
+ errorMessage = "ACCESS_KEY reached its limit"
+ } catch is PicovoiceActivationThrottledError {
+ errorMessage = "ACCESS_KEY is throttled"
+ } catch {
+ errorMessage = "\(error)"
+ }
+ return false
}
func startListening() {
- self.textTimer?.invalidate()
- self.result = ""
if self.picovoiceManager == nil {
- self.initPicovoice()
+ guard initPicovoice() else {
+ return
+ }
}
+ self.textTimer?.invalidate()
+ self.result = ""
+
guard VoiceProcessor.hasRecordAudioPermission else {
VoiceProcessor.requestRecordAudioPermission { isGranted in
guard isGranted else {
@@ -119,32 +143,13 @@ struct ContentView: View {
return
}
- if startPicovoice() {
- self.buttonLabel = "STOP"
- self.result = "Listening for '\(wakeword.uppercased())'..."
- self.contextInfo = self.picovoiceManager.contextInfo
- }
- }
-
- func startPicovoice() -> Bool {
do {
try self.picovoiceManager.start()
- return true
- } catch let error as PicovoiceInvalidArgumentError {
- errorMessage =
- "\(error.localizedDescription)\nEnsure your AccessKey '\(ACCESS_KEY)' is valid"
- } catch is PicovoiceActivationError {
- errorMessage = "ACCESS_KEY activation error"
- } catch is PicovoiceActivationRefusedError {
- errorMessage = "ACCESS_KEY activation refused"
- } catch is PicovoiceActivationLimitError {
- errorMessage = "ACCESS_KEY reached its limit"
- } catch is PicovoiceActivationThrottledError {
- errorMessage = "ACCESS_KEY is throttled"
+ self.buttonLabel = "STOP"
+ self.result = "Listening for '\(wakeword.uppercased())'..."
} catch {
errorMessage = "\(error)"
}
- return false
}
func stopListening() {
@@ -174,7 +179,7 @@ struct ContentView: View {
.frame(minWidth: 0, maxWidth: UIScreen.main.bounds.width - 50)
.font(.body)
.opacity(errorMessage.isEmpty ? 0 : 1)
- .cornerRadius(.infinity)
+ .cornerRadius(10)
Spacer()
Button {
@@ -197,23 +202,12 @@ struct ContentView: View {
.background(Color.white)
.navigationBarItems(trailing: Button("Context Info") {
if self.picovoiceManager == nil {
- initPicovoice()
- }
- if self.picovoiceManager != nil {
- if self.buttonLabel == "START" {
- if self.startPicovoice() {
- self.contextInfo = self.picovoiceManager.contextInfo
- self.showInfo = true
- do {
- try self.picovoiceManager.stop()
- } catch {
- errorMessage = "\(error)"
- }
- }
- } else {
- self.showInfo = true
+ guard initPicovoice() else {
+ return
}
}
+
+ self.showInfo = true
})
}
.sheet(isPresented: self.$showInfo) {
diff --git a/demo/ios/ForegroundApp/Podfile b/demo/ios/ForegroundApp/Podfile
index ff7f4edc6..c886a978c 100644
--- a/demo/ios/ForegroundApp/Podfile
+++ b/demo/ios/ForegroundApp/Podfile
@@ -3,5 +3,7 @@ source 'https://cdn.cocoapods.org/'
platform :ios, '11.0'
target 'PicovoiceForegroundAppDemo' do
- pod 'Picovoice-iOS', '~> 2.2.2'
+ pod 'Porcupine-iOS', '~> 3.0.0'
+ pod 'Rhino-iOS', '~> 3.0.0'
+ pod 'Picovoice-iOS', '~> 3.0.0'
end
diff --git a/demo/ios/ForegroundApp/Podfile.lock b/demo/ios/ForegroundApp/Podfile.lock
index cc9804561..db43f9f92 100644
--- a/demo/ios/ForegroundApp/Podfile.lock
+++ b/demo/ios/ForegroundApp/Podfile.lock
@@ -1,16 +1,18 @@
PODS:
- ios-voice-processor (1.1.0)
- - Picovoice-iOS (2.2.2):
+ - Picovoice-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - Porcupine-iOS (~> 2.2.1)
- - Rhino-iOS (~> 2.2.2)
- - Porcupine-iOS (2.2.1):
+ - Porcupine-iOS (~> 3.0.0)
+ - Rhino-iOS (~> 3.0.0)
+ - Porcupine-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - Rhino-iOS (2.2.2):
+ - Rhino-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
DEPENDENCIES:
- - Picovoice-iOS (~> 2.2.2)
+ - Picovoice-iOS (~> 3.0.0)
+ - Porcupine-iOS (~> 3.0.0)
+ - Rhino-iOS (~> 3.0.0)
SPEC REPOS:
trunk:
@@ -21,10 +23,10 @@ SPEC REPOS:
SPEC CHECKSUMS:
ios-voice-processor: 8e32d7f980a06d392d128ef1cd19cf6ddcaca3c1
- Picovoice-iOS: a0842f4d2320c32035425cb4aaa9aa095b9b0188
- Porcupine-iOS: df8e4a63d787b6c16bd5f988fd0f2c29a249a4bd
- Rhino-iOS: 0fad86b28d35f67ccb6bd0a2efbbcc0d88b05124
+ Picovoice-iOS: a1aefe4fbc54bb698dd1663d7dee6a5bef9f1c5c
+ Porcupine-iOS: 517158e02ac294dda15b713a3c6f74a9e877090c
+ Rhino-iOS: b92978104bfad32da25b9eeaa4f0628b86ffcee9
-PODFILE CHECKSUM: 2fb6b93acd93b8e3eb769df53d60d93ebda1ae17
+PODFILE CHECKSUM: bd7806bdeaa177985fd19ac8489709478ff37512
COCOAPODS: 1.11.3
diff --git a/demo/java-swing/build.gradle b/demo/java-swing/build.gradle
index eb6640472..0c1c2a14d 100644
--- a/demo/java-swing/build.gradle
+++ b/demo/java-swing/build.gradle
@@ -18,13 +18,13 @@ sourceSets {
jar {
manifest {
attributes 'Main-Class': 'Main',
- "Class-Path": "picovoice-2.2.1.jar;commons-cli-1.4.jar"
+ "Class-Path": "picovoice-3.0.0.jar;commons-cli-1.4.jar"
}
from {configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
}
dependencies {
- implementation 'ai.picovoice:picovoice-java:2.2.1'
+ implementation 'ai.picovoice:picovoice-java:3.0.0'
implementation 'commons-cli:commons-cli:1.4'
}
diff --git a/demo/java/build.gradle b/demo/java/build.gradle
index 8719171ba..24e21b02d 100644
--- a/demo/java/build.gradle
+++ b/demo/java/build.gradle
@@ -15,14 +15,14 @@ sourceSets {
}
dependencies {
- implementation 'ai.picovoice:picovoice-java:2.2.1'
+ implementation 'ai.picovoice:picovoice-java:3.0.0'
implementation 'commons-cli:commons-cli:1.4'
}
jar {
manifest {
attributes "Main-Class": "ai.picovoice.picovoicedemo.MicDemo",
- "Class-Path" : "picovoice-2.2.1.jar;commons-cli-1.4.jar"
+ "Class-Path" : "picovoice-3.0.0.jar;commons-cli-1.4.jar"
}
from sourceSets.main.output
exclude "**/FileDemo.class"
@@ -34,7 +34,7 @@ jar {
task fileDemoJar(type: Jar) {
manifest {
attributes "Main-Class": "ai.picovoice.picovoicedemo.FileDemo",
- "Class-Path" : "picovoice-2.2.1.jar;commons-cli-1.4.jar"
+ "Class-Path" : "picovoice-3.0.0.jar;commons-cli-1.4.jar"
}
from sourceSets.main.output
exclude "**/MicDemo.class"
diff --git a/demo/mcu/generate_pv_params_file.py b/demo/mcu/generate_pv_params_file.py
index 7ad18a38a..1f6b8400a 100644
--- a/demo/mcu/generate_pv_params_file.py
+++ b/demo/mcu/generate_pv_params_file.py
@@ -14,7 +14,7 @@
HEADER = """
/*
- Copyright 2020-2022 Picovoice Inc.
+ Copyright 2020-2023 Picovoice Inc.
You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
file accompanying this source.
@@ -38,60 +38,60 @@
"""
LANGUAGE_CODE_TO_NAME = {
- 'ar': 'arabic',
- 'nl': 'dutch',
- 'en': 'english',
- 'fr': 'french',
- 'de': 'german',
- 'hi': 'hindi',
- 'it': 'italian',
- 'ja': 'japanese',
- 'ko': 'korean',
- 'zh': 'mandarin',
- 'pl': 'polish',
- 'pt': 'portuguese',
- 'ru': 'russian',
- 'es': 'spanish',
- 'sv': 'swedish',
- 'vn': 'vietnamese',
+ "ar": "arabic",
+ "de": "german",
+ "en": "english",
+ "es": "spanish",
+ "fa": "farsi",
+ "fr": "french",
+ "hi": "hindi",
+ "it": "italian",
+ "ja": "japanese",
+ "ko": "korean",
+ "nl": "dutch",
+ "pl": "polish",
+ "pt": "portuguese",
+ "ru": "russian",
+ "sv": "swedish",
+ "vn": "vietnamese",
+ "zh": "mandarin",
}
def generate_pv_params(model_files, header_file_folders):
script_dir = os.path.dirname(os.path.abspath(__file__))
- repo_dir = os.path.join(script_dir, '../..')
+ repo_dir = os.path.join(script_dir, "../..")
for header_file_path in header_file_folders:
- header_file = os.path.join(os.path.dirname(__file__), header_file_path, 'pv_params.h')
- with open(header_file, 'w') as f_out:
+ header_file = os.path.join(os.path.dirname(__file__), header_file_path, "pv_params.h")
+ with open(header_file, "w") as f_out:
f_out.write(HEADER)
for language, ppn_rhn_models in model_files.items():
-
- if language == 'en':
- ppn_dir = os.path.join(repo_dir, 'resources/porcupine/resources/keyword_files/cortexm')
- rhn_dir = os.path.join(repo_dir, f'resources/rhino/resources/contexts/cortexm')
+ if language == "en":
+ ppn_dir = os.path.join(repo_dir, "resources/porcupine/resources/keyword_files/cortexm")
+ rhn_dir = os.path.join(repo_dir, f"resources/rhino/resources/contexts/cortexm")
else:
- ppn_dir = os.path.join(repo_dir, f'resources/porcupine/resources/keyword_files_{language}/cortexm')
- rhn_dir = os.path.join(repo_dir, f'resources/rhino/resources/contexts_{language}/cortexm')
+ ppn_dir = os.path.join(repo_dir, f"resources/porcupine/resources/keyword_files_{language}/cortexm")
+ rhn_dir = os.path.join(repo_dir, f"resources/rhino/resources/contexts_{language}/cortexm")
- f_out.write(f'\n#if defined(__PV_LANGUAGE_{LANGUAGE_CODE_TO_NAME[language].upper()}__)\n\n')
+ f_out.write(f"\n#if defined(__PV_LANGUAGE_{LANGUAGE_CODE_TO_NAME[language].upper()}__)\n\n")
- keyword_file_path = os.path.join(ppn_dir, ppn_rhn_models['wake_word'] + '_cortexm.ppn')
+ keyword_file_path = os.path.join(ppn_dir, ppn_rhn_models["wake_word"] + "_cortexm.ppn")
ppn_c_array = ppn_to_c_array(keyword_file_path)
- f_out.write('// wake-word = %s \n' % ppn_rhn_models['wake_word'])
- f_out.write('static const uint8_t KEYWORD_ARRAY[] = {\n')
- f_out.write('\n'.join(ppn_c_array))
- f_out.write('};\n\n')
+ f_out.write("// wake-word = %s \n" % ppn_rhn_models["wake_word"])
+ f_out.write("static const uint8_t KEYWORD_ARRAY[] = {\n")
+ f_out.write("\n".join(ppn_c_array))
+ f_out.write("};\n\n")
- context_file_path = os.path.join(rhn_dir, ppn_rhn_models['context'] + '_cortexm.rhn')
+ context_file_path = os.path.join(rhn_dir, ppn_rhn_models["context"] + "_cortexm.rhn")
ppn_c_array = ppn_to_c_array(context_file_path)
- f_out.write('// context = %s \n' % ppn_rhn_models['context'])
- f_out.write('static const uint8_t CONTEXT_ARRAY[] = {\n')
- f_out.write('\n'.join(ppn_c_array))
- f_out.write('};\n')
+ f_out.write("// context = %s \n" % ppn_rhn_models["context"])
+ f_out.write("static const uint8_t CONTEXT_ARRAY[] = {\n")
+ f_out.write("\n".join(ppn_c_array))
+ f_out.write("};\n")
- f_out.write(f'\n#endif // __PV_LANGUAGE_{LANGUAGE_CODE_TO_NAME[language].upper()}__\n')
+ f_out.write(f"\n#endif // __PV_LANGUAGE_{LANGUAGE_CODE_TO_NAME[language].upper()}__\n")
f_out.write(FOOTER)
@@ -99,51 +99,52 @@ def generate_pv_params(model_files, header_file_folders):
def ppn_to_c_array(binary_file_path):
indent = 8
line_width = 120
- with open(binary_file_path, 'rb') as f:
+ with open(binary_file_path, "rb") as f:
array = f.read()
res = list()
- array = ['0x%s' % z.hex() for z in struct.unpack('%dc' % len(array), array)]
- row = ' ' * indent
+ array = ["0x%s" % z.hex() for z in struct.unpack("%dc" % len(array), array)]
+ row = " " * indent
last_x = 0
for x in array:
if len(row) >= line_width:
- row = row.rsplit(', ', maxsplit=1)[0] + ','
+ row = row.rsplit(", ", maxsplit=1)[0] + ","
res.append(row)
- row = ' ' * indent + last_x
- if row != ' ' * indent:
- row += ', '
+ row = " " * indent + last_x
+ if row != " " * indent:
+ row += ", "
row += x
last_x = x
- if row != ' ' * indent:
+ if row != " " * indent:
res.append(row)
- res.append('')
+ res.append("")
return res
-if __name__ == '__main__':
+if __name__ == "__main__":
models = {
- 'en': {'wake_word': 'picovoice', 'context': 'smart_lighting'},
- 'de': {'wake_word': 'hey computer', 'context': 'beleuchtung'},
- 'es': {'wake_word': 'hola computadora', 'context': 'iluminación_inteligente'},
- 'fr': {'wake_word': 'bonjour ordinateur', 'context': 'éclairage_intelligent'},
- 'it': {'wake_word': 'ciao computer', 'context': 'illuminazione'},
- 'ja': {'wake_word': 'konnichiwa konpyūtā', 'context': 'sumāto_shōmei'},
- 'ko': {'wake_word': 'annyeong keompyuteo', 'context': 'seumateu_jomyeong'},
- 'pt': {'wake_word': 'olá computador', 'context': 'luz_inteligente'},
- 'ru': {'wake_word': 'privet kompyuter', 'context': 'simple_context_ru'},
- 'nl': {'wake_word': 'hallo computer', 'context': 'simple_context_nl'},
- 'hi': {'wake_word': 'namaste putra', 'context': 'simple_context_hi'},
- 'ar': {'wake_word': 'coffee', 'context': 'simple_context_ar'},
- 'pl': {'wake_word': 'cześć komputer', 'context': 'simple_context_pl'},
- 'sv': {'wake_word': 'hej dator', 'context': 'simple_context_sv'},
- 'vn': {'wake_word': 'xin chào máy tính', 'context': 'simple_context_vn'},
- 'zh': {'wake_word': 'nǐ hǎo diànnǎo', 'context': 'simple_context_zh'},
+ "ar": {"wake_word": "مرحبا الكمبيوتر", "context": "simple_context_ar"},
+ "de": {"wake_word": "hey computer", "context": "beleuchtung"},
+ "en": {"wake_word": "picovoice", "context": "smart_lighting"},
+ "es": {"wake_word": "hola computadora", "context": "iluminación_inteligente"},
+ "fa": {"wake_word": "سلام رایانه", "context": "simple_context_fa"},
+ "fr": {"wake_word": "bonjour ordinateur", "context": "éclairage_intelligent"},
+ "hi": {"wake_word": "नमस्ते कंप्यूटर", "context": "simple_context_hi"},
+ "it": {"wake_word": "ciao computer", "context": "illuminazione"},
+ "ja": {"wake_word": "こんにちは コンピューター", "context": "sumāto_shōmei"},
+ "ko": {"wake_word": "안녕 컴퓨터", "context": "seumateu_jomyeong"},
+ "nl": {"wake_word": "hallo computer", "context": "simple_context_nl"},
+ "pl": {"wake_word": "cześć komputer", "context": "simple_context_pl"},
+ "pt": {"wake_word": "olá computador", "context": "luz_inteligente"},
+ "ru": {"wake_word": "привет компьютер", "context": "simple_context_ru"},
+ "sv": {"wake_word": "hej dator", "context": "simple_context_sv"},
+ "vn": {"wake_word": "xin chào máy tính", "context": "simple_context_vn"},
+ "zh": {"wake_word": "你好电脑", "context": "simple_context_zh"},
}
include_folders = [
- 'imxrt1050/imxrt1050-evkb/inc',
- 'stm32f407/stm32f407g-disc1/Inc/',
- 'stm32f411/stm32f411e-disco/Inc/',
- 'stm32f769/stm32f769i-disco/Inc/',
+ "imxrt1050/imxrt1050-evkb/inc",
+ "stm32f407/stm32f407g-disc1/Inc/",
+ "stm32f411/stm32f411e-disco/Inc/",
+ "stm32f769/stm32f769i-disco/Inc/",
]
generate_pv_params(models, include_folders)
diff --git a/demo/mcu/imxrt1050/imxrt1050-evkb/.cproject b/demo/mcu/imxrt1050/imxrt1050-evkb/.cproject
index d729829ad..e913b7beb 100644
--- a/demo/mcu/imxrt1050/imxrt1050-evkb/.cproject
+++ b/demo/mcu/imxrt1050/imxrt1050-evkb/.cproject
@@ -1,8 +1,8 @@
-
-
+
+
@@ -21,53 +21,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -305,8 +305,8 @@
-
-
+
+
@@ -325,53 +325,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -609,8 +609,8 @@
-
-
+
+
@@ -629,53 +629,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -913,8 +913,8 @@
-
-
+
+
@@ -933,53 +933,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -1217,8 +1217,8 @@
-
-
+
+
@@ -1237,53 +1237,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -1521,8 +1521,8 @@
-
-
+
+
@@ -1541,53 +1541,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -1825,8 +1825,8 @@
-
-
+
+
@@ -1845,53 +1845,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -2129,8 +2129,8 @@
-
-
+
+
@@ -2149,53 +2149,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -2433,8 +2433,8 @@
-
-
+
+
@@ -2453,53 +2453,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -2737,8 +2737,8 @@
-
-
+
+
@@ -2757,53 +2757,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -3041,8 +3041,8 @@
-
-
+
+
@@ -3061,53 +3061,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -3345,8 +3345,8 @@
-
-
+
+
@@ -3365,53 +3365,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -3649,8 +3649,8 @@
-
-
+
+
@@ -3669,53 +3669,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -3953,8 +3953,8 @@
-
-
+
+
@@ -3973,53 +3973,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -4257,8 +4257,8 @@
-
-
+
+
@@ -4277,53 +4277,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
@@ -4561,8 +4561,8 @@
-
-
+
+
@@ -4581,53 +4581,53 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/demo/mcu/imxrt1050/imxrt1050-evkb/inc/pv_params.h b/demo/mcu/imxrt1050/imxrt1050-evkb/inc/pv_params.h
index 7baaa9aec..3f04ec8e7 100644
--- a/demo/mcu/imxrt1050/imxrt1050-evkb/inc/pv_params.h
+++ b/demo/mcu/imxrt1050/imxrt1050-evkb/inc/pv_params.h
@@ -1,6 +1,6 @@
/*
- Copyright 2020-2022 Picovoice Inc.
+ Copyright 2020-2023 Picovoice Inc.
You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
file accompanying this source.
@@ -16,510 +16,334 @@
#include
-#if defined(__PV_LANGUAGE_ENGLISH__)
+#if defined(__PV_LANGUAGE_ARABIC__)
-// wake-word = picovoice
+// wake-word = مرحبا الكمبيوتر
static const uint8_t KEYWORD_ARRAY[] = {
- 0x4b, 0x5e, 0x3b, 0x23, 0xa2, 0xbf, 0x43, 0xb1, 0x35, 0x08, 0x43, 0x8f, 0x19, 0x49, 0x67, 0x6e, 0xa9, 0xa1,
- 0xe8, 0xaa, 0x1e, 0x59, 0x2e, 0xc8, 0x0e, 0x94, 0xa2, 0xac, 0x10, 0x6b, 0xe2, 0xa1, 0xb5, 0x4c, 0xe4, 0x15,
- 0x3a, 0xad, 0x76, 0xa8, 0xd9, 0x2b, 0xae, 0xc3, 0x07, 0x87, 0x18, 0xdb, 0xf0, 0x2f, 0x84, 0xdc, 0xfd, 0xe3,
- 0x48, 0x41, 0x27, 0xb4, 0x5f, 0x52, 0x9f, 0x3d, 0x3a, 0xa5, 0xd7, 0x3a, 0x1b, 0xf6, 0x29, 0x5b, 0xbe, 0x8e,
- 0x91, 0x30, 0x17, 0x5c, 0x36, 0x38, 0x1f, 0x20, 0x43, 0x3e, 0x53, 0x3a, 0xd3, 0x6d, 0x47, 0xc5, 0x69, 0xa3,
- 0xff, 0x4a, 0x38, 0x6f, 0x40, 0x5a, 0x8e, 0x49, 0xe1, 0x27, 0xb5, 0xa9, 0xf8, 0xcf, 0xc3, 0x40, 0x18, 0x55,
- 0x7f, 0x7e, 0x9c, 0x9a, 0xbe, 0x26, 0xe6, 0x01, 0xe3, 0x5e, 0x2b, 0x8c, 0x63, 0xb4, 0xc1, 0x73, 0xbc, 0x05,
- 0x2a, 0xc2, 0x65, 0x59, 0x88, 0x65, 0x04, 0xc4, 0xa1, 0x3d, 0x35, 0x4e, 0xf0, 0xe0, 0xa5, 0x32, 0x07, 0xd8,
- 0x1d, 0x47, 0x13, 0x56, 0xb7, 0x21, 0x2a, 0xd8, 0xf4, 0x1c, 0x1b, 0x6b, 0xd5, 0xf0, 0x9b, 0xdf, 0x47, 0xb8,
- 0xea, 0x0e, 0x96, 0xea, 0x16, 0xdc, 0x42, 0x1e, 0xbd, 0x9c, 0xc1, 0xff, 0x88, 0xc2, 0xee, 0xdc, 0x6e, 0x01,
- 0x98, 0xbc, 0x0e, 0xd8, 0xd0, 0x6e, 0xdb, 0x60, 0xad, 0x5d, 0x6e, 0xa0, 0xe9, 0x53, 0x83, 0xf0, 0x6e, 0xed,
- 0x20, 0xaf, 0x21, 0xa5, 0x7b, 0x24, 0x39, 0x43, 0xe7, 0x6b, 0xdb, 0x3a, 0x03, 0x70, 0xbb, 0xc5, 0x47, 0xf1,
- 0xed, 0xcc, 0xff, 0x43, 0xeb, 0xcb, 0x95, 0xe1, 0x74, 0x91, 0x16, 0xbb, 0xe0, 0xa6, 0x51, 0x91, 0x63, 0x61,
- 0x49, 0x7b, 0x8d, 0xc0, 0x4c, 0x68, 0x81, 0x09, 0x6e, 0x1a, 0xb8, 0x8f, 0x43, 0x8a, 0x91, 0xe8, 0xdb, 0x48,
- 0xce, 0x46, 0xca, 0x45, 0x84, 0xd0, 0xa0, 0x96, 0x12, 0x29, 0xbc, 0x2e, 0xfc, 0xd4, 0x49, 0xfe, 0xd3, 0xa7,
- 0x40, 0x76, 0x7b, 0xa9, 0x48, 0x16, 0x50, 0x64, 0xe2, 0xc8, 0x35, 0xa2, 0xba, 0x37, 0xec, 0xa0, 0xa8, 0x5b,
- 0xea, 0xc8, 0x63, 0x17, 0xa9, 0x67, 0x74, 0x3b, 0x39, 0xd8, 0x25, 0xe3, 0x00, 0xd3, 0x5d, 0xf3, 0x10, 0x82,
- 0x0e, 0xf7, 0x75, 0x3e, 0x95, 0xd6, 0x34, 0xbd, 0xf3, 0xc3, 0x6c, 0x55, 0xba, 0x25, 0x71, 0x70, 0x4e, 0x25,
- 0xe2, 0x46, 0x1d, 0x70, 0x31, 0xab, 0xca, 0x8d, 0xa1, 0x9d, 0xbd, 0xf1, 0x8d, 0xea, 0x4d, 0xbc, 0x0e, 0x57,
- 0xd8, 0x6d, 0xd7, 0xf5, 0xf8, 0xf5, 0x1d, 0xf0, 0x00, 0x4a, 0xa6, 0xdf, 0xeb, 0xec, 0x85, 0x84, 0x67, 0x7e,
- 0x50, 0x60, 0x07, 0x9b, 0xb9, 0xd9, 0x6f, 0x13, 0xef, 0xf6, 0x6e, 0x47, 0xbf, 0xc9, 0xbc, 0x53, 0x4b, 0x2b,
- 0x64, 0xbe, 0xb6, 0xa8, 0x3d, 0x4e, 0xba, 0x1d, 0xa4, 0x55, 0x4c, 0xd2, 0xce, 0x5a, 0x0e, 0x0e, 0xd9, 0xde,
- 0x23, 0x2a, 0x66, 0x13, 0x2f, 0x17, 0x1a, 0xc0, 0x2b, 0x20, 0xfd, 0x95, 0x9d, 0x79, 0x59, 0x46, 0x9a, 0x4d,
- 0x44, 0x9b, 0xcb, 0x5c, 0x3f, 0x24, 0x8c, 0x56, 0x0d, 0x67, 0xdb, 0x40, 0x73, 0x28, 0x38, 0x52, 0x7d, 0x40,
- 0xce, 0x43, 0x1b, 0xe7, 0xcd, 0xef, 0xc9, 0x8d, 0x4b, 0xd7, 0x7d, 0xc3, 0xbf, 0x47, 0xd1, 0x7e, 0x5a, 0x55,
- 0x73, 0x9d, 0x23, 0x09, 0x26, 0xde, 0x53, 0xc9, 0x4c, 0x95, 0x4d, 0x25, 0x35, 0xe2, 0x4e, 0xaa, 0xcf, 0x0a,
- 0x4c, 0xe7, 0xa7, 0x9c, 0xa6, 0x02, 0x81, 0xf9, 0xe4, 0x8a, 0x1c, 0xa5, 0xe5, 0x4c, 0xb9, 0x25, 0x5b, 0xa3,
- 0xa0, 0xfe, 0x44, 0xac, 0x76, 0x2c, 0x89, 0xc7, 0x70, 0x1a, 0x54, 0xc8, 0x8b, 0x7e, 0x91, 0xf8, 0xb9, 0xdc,
- 0x01, 0xce, 0x77, 0x23, 0xa2, 0x36, 0x1d, 0xd4, 0xb0, 0xf4, 0x93, 0xe1, 0xc0, 0x8e, 0xaa, 0x20, 0x9e, 0xd0,
- 0x61, 0x0a, 0xee, 0x36, 0x3d, 0x60, 0x4e, 0x84, 0x3c, 0xb4, 0xd0, 0xcd, 0x2f, 0xfa, 0xba, 0xd3, 0x2f, 0x84,
- 0x2e, 0xe4, 0x0b, 0xe5, 0xfd, 0xcb, 0x1c, 0xb9, 0xfe, 0x31, 0xa3, 0x23, 0xf6, 0x30, 0xbf, 0x63, 0x92, 0xd2,
- 0x91, 0x04, 0xdc, 0xc9, 0x38, 0x1f, 0xd2, 0x93, 0x5a, 0xbd, 0x86, 0x01, 0xc7, 0xe2, 0xc6, 0xeb, 0x74, 0xa4,
- 0x4a, 0xf5, 0xdd, 0x08, 0xa5, 0xa5, 0x0b, 0x18, 0x61, 0x9b, 0x06, 0x18, 0xbc, 0xcf, 0x30, 0xbb, 0x4b, 0xf3,
- 0x4d, 0xb4, 0x3a, 0x87, 0xf1, 0x51, 0xc5, 0x39, 0x37, 0x64, 0x73, 0xca, 0xc1, 0x36, 0xb6, 0x6b, 0x92, 0x17,
- 0x8f, 0x38, 0x05, 0x6b, 0xe6, 0x08, 0xc2, 0xcb, 0xa5, 0xb3, 0xcb, 0x93, 0x44, 0x25, 0x5e, 0xc6, 0xc6, 0xf9,
- 0x70, 0x8b, 0x16, 0xc8, 0x40, 0x4a, 0x9a, 0x51, 0x2b, 0x15, 0xb6, 0x66, 0x9d, 0xbb, 0x1e, 0xef, 0x0a, 0x3a,
- 0x67, 0x02, 0xae, 0x86, 0x0d, 0xa9, 0x31, 0xdf, 0xeb, 0x5d, 0xee, 0xfe, 0xe6, 0xb7, 0xf4, 0xa6, 0x53, 0xe3,
- 0x6a, 0x8a, 0x3e, 0x08, 0xc4, 0x3e, 0x05, 0x24, 0xf6, 0xae, 0xc8, 0x42, 0x68, 0xd4, 0x55, 0xfe, 0xd4, 0x4d,
- 0x48, 0x7c, 0x58, 0x74, 0xf2, 0x21, 0x76, 0xd0, 0xf8, 0xd8, 0x86, 0xc6, 0x77, 0x83, 0x80, 0x1d, 0x38, 0x6b,
- 0x11, 0xe1, 0xbb, 0xd6, 0x6d, 0xaf, 0xc2, 0x01, 0xbc, 0x4e, 0xb7, 0x6f, 0x04, 0xe3, 0xac, 0x49, 0xbd, 0x40,
- 0xf9, 0xd8, 0xa9, 0xcf, 0xe4, 0x77, 0x0a, 0xeb, 0x77, 0xed, 0x8c, 0xff, 0xf1, 0x0e, 0x9f, 0xff, 0xf4, 0x23,
- 0xc2, 0xc7, 0xc5, 0xee, 0x52, 0xaa, 0x09, 0x78, 0x6b, 0x4b, 0x8a, 0xc2, 0x51, 0x98, 0x52, 0x68, 0xa9, 0x0e,
- 0xbb, 0xe6, 0xaa, 0x2d, 0xe9, 0xd1, 0xd7, 0x03, 0x37, 0x27, 0xfd, 0xd2, 0x0c, 0xe1, 0xe7, 0x25, 0xdd, 0x11,
- 0x43, 0x01, 0xdc, 0x1d, 0x16, 0x9f, 0x8f, 0x46, 0x7d, 0xcf, 0xe8, 0x33, 0x49, 0x0f, 0x9f, 0x14, 0xa7, 0xed,
- 0x14, 0x29, 0xc0, 0x3a, 0x1b, 0x97, 0x52, 0xfe, 0x9c, 0xc8, 0x78, 0x1c, 0x46, 0x7b, 0x8b, 0xdd, 0x14, 0x19,
- 0xaa, 0x97, 0x94, 0xe8, 0xe7, 0x3e, 0xab, 0x02, 0xf3, 0xef, 0xb1, 0x42, 0xe0, 0x54, 0x65, 0x81, 0x60, 0x65,
- 0x10, 0x25, 0x9a, 0xae, 0xec, 0x0c, 0x45, 0xd9, 0xaf, 0x91, 0x1d, 0xf1, 0xfd, 0xe0, 0xa3, 0x29, 0x0e, 0xb3,
- 0x25, 0xa2, 0x35, 0x3b, 0xe9, 0xaf, 0xc5, 0x44, 0x52, 0x2f, 0xe3, 0x19, 0x2c, 0xe5, 0x05, 0xa9, 0x18, 0x51,
- 0xe1, 0xfa, 0x4e, 0x90, 0xdc, 0xbc, 0x3b, 0xb7, 0x0d, 0xf0, 0xfc, 0x69, 0x09, 0x7e, 0xbb, 0x35, 0xc8, 0xc2,
- 0x74, 0x60, 0x5c, 0x35, 0xfd, 0xef, 0x9c, 0x5f, 0x54, 0xf7, 0x08, 0x33, 0x8e, 0x8d, 0x5e, 0xec, 0x9f, 0xc6,
- 0x90, 0xd1, 0x44, 0xfa, 0xe3, 0x22, 0x82, 0xf7, 0x4f, 0x42, 0xdd, 0xbf, 0x9e, 0xd2, 0x3c, 0x82, 0x54, 0xae,
- 0xfd, 0xbe, 0x92, 0x84, 0x0a, 0x10, 0x6c, 0x99, 0x06, 0x51, 0x24, 0x64, 0xa8, 0x11, 0x08, 0xc2, 0x58, 0x17,
- 0x8f, 0xdf, 0xf2, 0x09, 0x15, 0x2d, 0xce, 0xbe, 0xf5, 0x1e, 0xab, 0x94, 0x75, 0x75, 0x95, 0xd1, 0x87, 0x81,
- 0x7b, 0xaf
+ 0xfd, 0x87, 0xb0, 0xdd, 0x01, 0x99, 0x98, 0x86, 0xbc, 0x0a, 0xe0, 0xf6, 0x65, 0xdd, 0x9e, 0x76, 0x56, 0x0e,
+ 0x62, 0x66, 0xb9, 0xfa, 0x9b, 0x34, 0x34, 0xa6, 0x55, 0x1a, 0xc7, 0xc6, 0xdb, 0x8d, 0x00, 0xd6, 0x1a, 0xe8,
+ 0xf7, 0xd0, 0xcb, 0xf7, 0xf4, 0x26, 0x75, 0x5c, 0x3e, 0xff, 0x2a, 0xfe, 0x29, 0xb2, 0x7f, 0x60, 0x82, 0xff,
+ 0x2d, 0x14, 0x39, 0x17, 0xfe, 0x57, 0x04, 0x75, 0x03, 0x98, 0x97, 0x26, 0x55, 0xbf, 0x25, 0x80, 0x60, 0x5f,
+ 0x00, 0xe5, 0xca, 0xed, 0xc9, 0xa4, 0xf7, 0xb8, 0xd1, 0x51, 0xc0, 0xa4, 0x12, 0x8f, 0x18, 0x88, 0x46, 0x46,
+ 0xd3, 0x70, 0x94, 0x80, 0xcb, 0xf8, 0xc9, 0x40, 0x7c, 0x10, 0x19, 0xb5, 0x09, 0xa0, 0x83, 0x47, 0x47, 0xd8,
+ 0x24, 0x18, 0x6d, 0xec, 0x39, 0xcb, 0x8b, 0x5c, 0x78, 0x4d, 0x8d, 0x8e, 0x2c, 0x06, 0x20, 0x54, 0xbd, 0x6a,
+ 0x94, 0xcf, 0xfd, 0xbe, 0xf5, 0x45, 0x3f, 0x86, 0x3a, 0xf5, 0xed, 0x0a, 0x45, 0xdf, 0xe2, 0xc9, 0x09, 0x36,
+ 0x4d, 0x09, 0x5d, 0xdf, 0x1c, 0x34, 0xee, 0x50, 0x1c, 0xba, 0xf1, 0xc6, 0xc1, 0xf5, 0x56, 0x6b, 0x0e, 0xe2,
+ 0xae, 0x62, 0x89, 0xad, 0x6c, 0x3c, 0xbb, 0x84, 0xb7, 0xf9, 0x55, 0x30, 0x6a, 0x39, 0x84, 0xbb, 0x87, 0x8d,
+ 0xc4, 0x60, 0x99, 0x82, 0x57, 0x73, 0x82, 0x35, 0x71, 0x79, 0x45, 0x53, 0x0c, 0x19, 0x79, 0x50, 0xde, 0x3a,
+ 0x15, 0x02, 0x81, 0xbf, 0xd9, 0x84, 0xbb, 0x4d, 0xed, 0xda, 0x6d, 0xc5, 0xa0, 0x06, 0xad, 0xd7, 0x61, 0x81,
+ 0xde, 0xcd, 0xdb, 0x33, 0x2f, 0x24, 0xf8, 0x0c, 0xe5, 0x28, 0xe8, 0xbb, 0x25, 0x4b, 0x94, 0x7a, 0x55, 0xdc,
+ 0xf2, 0x61, 0x1c, 0xb3, 0xe3, 0xa9, 0xeb, 0x87, 0xe6, 0x26, 0x3b, 0xfd, 0x34, 0x57, 0x2a, 0x1f, 0x0e, 0x70,
+ 0x39, 0x21, 0x0e, 0x36, 0x81, 0x4c, 0xb4, 0xc1, 0xb2, 0xcb, 0xaa, 0x94, 0x36, 0x1f, 0xad, 0x1f, 0x7e, 0x6c,
+ 0xa8, 0x26, 0x3a, 0xb5, 0xbd, 0xe0, 0xa0, 0xc4, 0x29, 0xae, 0x1e, 0xb3, 0xb2, 0x21, 0x56, 0x38, 0x86, 0xb5,
+ 0x41, 0x42, 0xf2, 0x2a, 0x58, 0x64, 0x34, 0xe0, 0xa8, 0x00, 0x12, 0x79, 0x54, 0xd6, 0x1d, 0x86, 0x89, 0xc0,
+ 0x9f, 0x36, 0xac, 0x73, 0xbd, 0xf0, 0x5f, 0x85, 0x84, 0xbb, 0x93, 0x8d, 0x21, 0x9b, 0xea, 0xca, 0x98, 0x4d,
+ 0xd8, 0x5f, 0x0c, 0x8f, 0xf7, 0xf5, 0xc7, 0x2f, 0xc7, 0x45, 0xbf, 0xe9, 0x7d, 0x38, 0x88, 0xad, 0xcc, 0x34,
+ 0x79, 0x4a, 0xf5, 0xf7, 0x4b, 0x3d, 0xe4, 0x12, 0xa4, 0xb4, 0xe2, 0x36, 0xf8, 0xe1, 0xef, 0x93, 0xa3, 0x43,
+ 0x57, 0x26, 0x99, 0x28, 0x90, 0x03, 0x46, 0x33, 0x8d, 0xb9, 0xc5, 0xb5, 0x4e, 0xad, 0xfc, 0xda, 0x9a, 0x6e,
+ 0x1d, 0x5b, 0xf8, 0x93, 0x23, 0x6d, 0x3e, 0x9c, 0xa6, 0xe3, 0x9a, 0x61, 0x89, 0x7e, 0xb1, 0x53, 0x55, 0x92,
+ 0x4f, 0xf8, 0xb2, 0x23, 0xc4, 0xd7, 0x74, 0x49, 0xe4, 0x30, 0x8c, 0xdb, 0xb6, 0xf9, 0x85, 0xff, 0x0e, 0x58,
+ 0x39, 0x51, 0x3e, 0x9c, 0xf4, 0x06, 0x5b, 0x40, 0x85, 0x3a, 0xd9, 0xc9, 0xdd, 0xc0, 0xf8, 0x5f, 0x7a, 0xcd,
+ 0x13, 0x86, 0xdd, 0x28, 0x29, 0x39, 0x6c, 0xad, 0x84, 0x3e, 0xdb, 0xc7, 0x7a, 0x7f, 0x8c, 0x9b, 0x09, 0x3c,
+ 0x62, 0xbd, 0x27, 0xdb, 0x07, 0x27, 0xbd, 0x59, 0x46, 0x79, 0xdb, 0x7c, 0x90, 0xde, 0xc7, 0xf0, 0x99, 0x28,
+ 0x40, 0xf5, 0x2a, 0x20, 0xa9, 0xe6, 0x54, 0xb9, 0x87, 0x74, 0x19, 0xab, 0x09, 0x60, 0x8f, 0xcd, 0xf8, 0x10,
+ 0xda, 0x2d, 0x17, 0x03, 0x96, 0x45, 0x64, 0x5f, 0xd1, 0xec, 0x53, 0xe0, 0x20, 0xa2, 0x09, 0x2d, 0x62, 0x4b,
+ 0xed, 0x5b, 0x6c, 0x1c, 0x71, 0x0c, 0x35, 0x7c, 0x6d, 0x3b, 0x0d, 0x2b, 0x1d, 0xf7, 0xd5, 0x28, 0xd3, 0x17,
+ 0x25, 0x7d, 0xdd, 0x4e, 0x1e, 0xdf, 0x80, 0x20, 0x28, 0x15, 0x2f, 0xdc, 0x12, 0x54, 0x28, 0x54, 0xf8, 0x34,
+ 0x6f, 0x30, 0xd6, 0x93, 0x09, 0x73, 0xde, 0xd7, 0x16, 0x5a, 0x83, 0x28, 0xd1, 0xa6, 0x00, 0xad, 0x78, 0xbc,
+ 0xd0, 0xb8, 0x22, 0x5a, 0x6f, 0xcb, 0xa3, 0x35, 0x55, 0x97, 0xea, 0x10, 0xb3, 0xfd, 0xa4, 0xdb, 0x10, 0xf4,
+ 0x7e, 0x3d, 0x15, 0x50, 0x6a, 0x82, 0x92, 0xba, 0xa6, 0xb6, 0x22, 0x53, 0xef, 0x4f, 0xcc, 0x08, 0x81, 0xbf,
+ 0x91, 0x46, 0x28, 0x8b, 0x1d, 0x94, 0x94, 0xc6, 0x14, 0x3a, 0x71, 0x4f, 0x67, 0x70, 0x55, 0xe0, 0x0a, 0x7c,
+ 0xe9, 0xe9, 0x3e, 0x4e, 0x09, 0xa0, 0xbf, 0x78, 0x70, 0x54, 0x82, 0x1d, 0x95, 0x92, 0x79, 0x9b, 0xad, 0x8c,
+ 0xc7, 0x37, 0x17, 0xfd, 0x2f, 0x5c, 0x59, 0xd2, 0x51, 0x82, 0x38, 0x47, 0xdf, 0x9c, 0x60, 0x82, 0x7b, 0xb1,
+ 0xbe, 0xcf, 0xd2, 0x29, 0xcf, 0x07, 0x49, 0xbb, 0x8e, 0x49, 0x2f, 0x88, 0x74, 0xe0, 0x92, 0x42, 0xde, 0xa9,
+ 0x77, 0xab, 0x3a, 0xec, 0x67, 0x89, 0x8a, 0xe4, 0x40, 0x68, 0x21, 0x2d, 0x7d, 0xa5, 0xfb, 0xec, 0xf7, 0x27,
+ 0x68, 0x4f, 0x6f, 0xb6, 0xa0, 0x35, 0xa1, 0x34, 0x34, 0x83, 0x3d, 0x20, 0xe8, 0xe8, 0x38, 0x57, 0x92, 0xc0,
+ 0x88, 0x3e, 0x62, 0x21, 0xc9, 0x13, 0xd2, 0xcd, 0x84, 0xef, 0x56, 0xb0, 0xb5, 0x8d, 0x33, 0x51, 0xde, 0x8f,
+ 0x35, 0x33, 0x73, 0xe2, 0x8d, 0x6d, 0xee, 0xe1, 0xe4, 0xc8, 0xf5, 0xbd, 0xc8, 0xdc, 0x98, 0x39, 0x72, 0x2e,
+ 0x5a, 0x9d, 0xf3, 0x95, 0x40, 0x88, 0xe8, 0x0a, 0xbe, 0xca, 0x95, 0xd3, 0x88, 0xef, 0xc7, 0x64, 0x35, 0xf5,
+ 0xcf, 0xb7, 0xb0, 0x24, 0xf3, 0x7b, 0x6f, 0x3f, 0xb8, 0x0d, 0x88, 0x23, 0x18, 0xa5, 0x96, 0xf7, 0x0e, 0x7b,
+ 0xbe, 0xb2, 0xfc, 0xf5, 0xdf, 0xa8, 0x02, 0x89, 0xcc, 0xf2, 0xa4, 0x79, 0x28, 0x9a, 0x72, 0x10, 0x0a, 0xae,
+ 0xf2, 0x9a, 0x44, 0xce, 0x15, 0x6f, 0x50, 0x98, 0x7e, 0x9e, 0xe4, 0x15, 0xff, 0x70, 0xc9, 0x43, 0x33, 0x39,
+ 0xbf, 0xc9, 0xc3, 0x6c, 0x26, 0xd4, 0xb8, 0xd4, 0x06, 0x66, 0x30, 0xe6, 0x08, 0x26, 0x63, 0x31, 0x31, 0x31,
+ 0xf7, 0xf1, 0x82, 0x7c, 0x17, 0xeb, 0x6c, 0x17, 0x92, 0x15, 0x6b, 0x31, 0x2d, 0xd1, 0x97, 0x0d, 0xf4, 0x39,
+ 0xae, 0xf6, 0xf1, 0x7e, 0xac, 0x42, 0xa9, 0x7c, 0xe6, 0x77, 0xe6, 0x8e, 0xb2, 0x35, 0x60, 0xd4, 0x17, 0x0d,
+ 0x47, 0xed, 0x86, 0x18, 0x0d, 0x37, 0xba, 0x5b, 0x1c, 0x84, 0x24, 0xcd, 0x39, 0x57, 0x17, 0x04, 0x50, 0x60,
+ 0xe9, 0x87, 0x1c, 0x8b, 0xa6, 0x4f, 0x64, 0x40, 0x8e, 0xad, 0x6f, 0xcf, 0x35, 0x41, 0x72, 0x01, 0xed, 0xb1,
+ 0xa6, 0x39, 0x4a, 0x49, 0xba, 0x12, 0x45, 0x85, 0xee, 0x08, 0x93, 0xef, 0x53, 0x1b, 0x19, 0xd1, 0x33, 0xa5,
+ 0xd8, 0x78, 0xff, 0x6e, 0xff, 0x9f, 0x75, 0x75, 0x14, 0x5c, 0xf8, 0x2f, 0x37, 0x48, 0x45, 0x39, 0x3f, 0x2a,
+ 0xce, 0xe8, 0x76, 0xa4, 0x69, 0x51, 0x12, 0xf4, 0x0d, 0xcc, 0x21, 0xf7, 0x6d, 0x24, 0xbd, 0x20, 0xee, 0x1e,
+ 0x10, 0x1f, 0xbd, 0x69, 0xed, 0xc7, 0x7f, 0x69, 0xb7, 0xa2, 0x5b, 0x59, 0x39, 0xdd, 0x35, 0xdb, 0x30, 0x99,
+ 0x9f, 0x3e, 0xc5, 0x87, 0x8c, 0x88, 0xca, 0x5b, 0x0b, 0xba, 0x6c, 0x0d, 0x87, 0x82, 0x33, 0xc8, 0xdc, 0x8f,
+ 0xb4, 0x5b, 0xc9, 0xf3, 0xb0, 0x50, 0x7c, 0x00, 0xf6, 0xe0, 0xd2, 0xc7, 0xd1, 0x62, 0x85, 0x37, 0x0e, 0xf6,
+ 0x90, 0x4c, 0x9e, 0xca, 0xf1, 0x81, 0x0f, 0x67, 0x04, 0xd2, 0xcb, 0xb8, 0x2e, 0xed, 0x96, 0xbd, 0x19, 0x55,
+ 0xf1, 0x56, 0x7b, 0x48, 0x0b, 0xd4, 0x1d, 0xcb, 0xab, 0x21, 0xba, 0x23, 0x56, 0xd1, 0xe6, 0xb5, 0xa5, 0x4a,
+ 0x01, 0x2b, 0x86, 0xfd, 0xfe, 0x67, 0x7d, 0xd4, 0x69, 0x2d, 0x67, 0x18, 0xad, 0xd2, 0xb4, 0x51, 0x52, 0x5d,
+ 0x9f, 0x44, 0x5b, 0xb3, 0xc5, 0xdf, 0xd8, 0xd5, 0xda, 0x2d, 0xb9, 0xe1, 0x00, 0x63, 0xcf, 0x00, 0xe5, 0x30,
+ 0x3e, 0x98, 0x87, 0x91, 0x54, 0xcc, 0x6a, 0x92, 0x9c, 0x35, 0x14, 0x71, 0x6a, 0xeb, 0xd2, 0x07, 0x2c, 0x01,
+ 0x43, 0xfa, 0x97, 0xe0, 0x0b, 0x8e, 0x23, 0xad, 0x82, 0xd2, 0x45, 0xc4, 0x8e, 0xc9, 0x08, 0xcf, 0xff, 0x98,
+ 0x42, 0x23, 0xde, 0xa4, 0xae, 0x9b, 0x65, 0xc8, 0x11, 0x39, 0xe1, 0xb1, 0xb0, 0xde, 0x17, 0x9c, 0x93, 0x64,
+ 0xd4, 0xfa, 0x74, 0xfb, 0x5b, 0xbc, 0x3e, 0xfd, 0x52, 0xd5, 0x7f, 0x0e, 0x43, 0x08, 0x5c, 0xf9, 0x1a, 0x35,
+ 0xd0, 0xc2, 0x82, 0x61, 0xe2, 0x3a, 0x60, 0xa1, 0xc6, 0xb9, 0xbe, 0x6c, 0xe2, 0x98, 0xbf, 0xc7, 0x42, 0x91,
+ 0x64, 0x99, 0xbd, 0x28, 0x90, 0x8d, 0xe6, 0x0b, 0x36, 0x73, 0xe1, 0xb2, 0x7b, 0x8e, 0x0f, 0xb1, 0x7d, 0xdf,
+ 0xe3, 0x23, 0x1d, 0x5e, 0xc8, 0x5e, 0xbe, 0x14, 0x76, 0xd0, 0x35, 0xe2, 0xb2, 0x6e, 0x90, 0x06, 0x06, 0xba,
+ 0xd3, 0xda, 0x22, 0x83, 0xb8, 0xfb, 0x05, 0xcb, 0xb3, 0xcf, 0x1f, 0xae, 0xb3, 0x92, 0x52, 0x56, 0x70, 0x6c,
+ 0x85, 0x86, 0xe0, 0xa0, 0xa1, 0x98, 0x0e, 0x4d, 0x6d, 0x94, 0x7a, 0x8f, 0x54, 0x2a, 0xe8, 0x61, 0xf9, 0xba,
+ 0x04, 0x78, 0x56, 0xaf, 0x3d, 0x78, 0x89, 0x6e, 0x31, 0x0c, 0xdf, 0x7e, 0x52, 0x03, 0xd7, 0xe4, 0xab, 0x3c,
+ 0x97, 0x92, 0xe2, 0xa8, 0xcc, 0x37, 0xd0, 0x83, 0x73, 0x01, 0x44, 0x82, 0xb9, 0xa4, 0x39, 0x97, 0x7f, 0x78,
+ 0x81, 0x68, 0x89, 0x3b, 0xd6, 0xb9, 0x7c, 0x67, 0xb6, 0xd8, 0x30, 0x15, 0x5f, 0x09, 0x60, 0x72, 0x6b, 0x9d,
+ 0x74, 0x33, 0x58, 0x43, 0xa7, 0x61, 0x1b, 0x21, 0x62, 0xbc, 0x72, 0xda, 0x84, 0xdb, 0x2b, 0x0f, 0x60, 0x13,
+ 0x64, 0x6b, 0x43, 0x0a, 0xb5, 0x54, 0xa0, 0xdf, 0xf0, 0xda, 0x95, 0x35, 0x81, 0xbb, 0xf7, 0x72, 0x27, 0xf6,
+ 0xe1, 0x54, 0xc2, 0x3d, 0x4c, 0x99, 0xc9, 0x45, 0x72, 0xc6, 0x47, 0xaa, 0xb4, 0x17, 0x6f, 0xca, 0xec, 0x0d,
+ 0x55, 0x30, 0xcb, 0xc3, 0x79, 0x99, 0xc5, 0x3b, 0x98, 0x3f, 0x2b, 0xb2, 0xcf, 0xbd, 0xbb, 0x90, 0xb6, 0x4a,
+ 0x46, 0x19, 0x37, 0x7e, 0x0b, 0x7c, 0x0f, 0x7f, 0x67, 0x4c, 0x5e, 0x84, 0xc2, 0xe6, 0xa3, 0x4d, 0x41, 0xd2,
+ 0x97, 0x4f, 0x1a, 0x30, 0x25, 0xf0, 0xfb, 0xb7, 0x45, 0xaf, 0xf1, 0xe8, 0x63, 0xb2, 0x50, 0x61, 0xf2, 0x87,
+ 0xcc, 0x34, 0x54, 0x6b, 0xa7, 0xee, 0x04, 0xa3, 0x3f, 0xaa, 0x63, 0x08, 0xf1, 0xb2, 0x1d, 0xf7, 0xbe, 0x3a,
+ 0xb4, 0x63, 0x1d, 0x01, 0x9a, 0x8a, 0xc3, 0x78, 0xf9, 0x17, 0x1c, 0x3f, 0x6b, 0x9e, 0xcf, 0xee, 0xce, 0x96,
+ 0x84, 0x4e, 0x05, 0xaf, 0x16, 0x03, 0x07, 0x81, 0x77, 0x25, 0xab, 0x67, 0x95, 0xfa, 0x6c, 0xc9, 0xd3, 0xd3,
+ 0x8a, 0xfe, 0xe2, 0xc4, 0xa2, 0x1c, 0x83, 0x3d, 0x71, 0xf1, 0xcc, 0xae, 0x8b, 0xb2, 0x82, 0xcc, 0x12, 0xb9,
+ 0x17, 0xd3, 0xf5, 0x80, 0xd8, 0x06, 0x18, 0x38, 0x12, 0x54, 0xd3, 0x0e, 0x78, 0x0e, 0xfd, 0xd7, 0xbe, 0x20,
+ 0x98, 0x3f, 0x74, 0xae, 0x0a, 0xda, 0x66, 0xa3, 0x02, 0xfc, 0xd6, 0x44, 0x94, 0xde, 0xda, 0xf2, 0x6c, 0xa1,
+ 0xa8, 0x32, 0xf3, 0x9b, 0xee, 0x10, 0x18, 0x35, 0xcd, 0x3b, 0x2d, 0x2f, 0x48, 0x75, 0xff, 0x39, 0xb5, 0x75,
+ 0x2c, 0x79, 0xfa, 0xa1, 0xc7, 0x2e, 0x89, 0x9b, 0xb1, 0x0d, 0x70, 0x07, 0x22, 0x76, 0x75, 0x22, 0x40, 0x1a,
+ 0x79, 0x6b, 0xf0, 0xa1, 0xda, 0x11, 0xda, 0x0e, 0x77, 0x5e, 0x35, 0x7f, 0xec, 0x20, 0x52, 0xed, 0x37, 0x38,
+ 0x35, 0x9b, 0x80, 0x6d, 0xd1, 0x6b, 0x34, 0x1c, 0xf3, 0x89, 0x65, 0x14, 0xc1, 0xcd, 0x4e, 0x4e, 0xd5, 0x58,
+ 0xcc, 0x18, 0x75, 0xb8, 0x79, 0x2a, 0xfd, 0xe5, 0xe6, 0x3f, 0xde, 0xeb, 0x77, 0x0a, 0x2e, 0x10, 0x5a, 0x7a,
+ 0x1e, 0xdd, 0x20, 0x42, 0x4c, 0x04, 0xe5, 0xdd, 0x34, 0x17, 0xde, 0x38, 0x45, 0x38, 0x39, 0x22, 0x15, 0xa8,
+ 0xfc, 0xae, 0x9f, 0x24, 0x88, 0x0e, 0xb7, 0x46, 0xb1, 0x2c, 0x18, 0x2d, 0xce, 0xb7, 0xe6, 0x49, 0x8b, 0xd5,
+ 0xe0, 0x92, 0xff, 0x4b, 0x70, 0xca, 0xaa, 0x3a, 0xff, 0x59, 0xd9, 0xc4, 0x6c, 0x3d, 0x45, 0x0d, 0x79, 0x11,
+ 0x02, 0xff, 0xec, 0xc8, 0xfb, 0xbc, 0xcd, 0xc2, 0xd2, 0xc9, 0xd5, 0x2c, 0x8b, 0x19, 0xb8, 0xfc, 0xda, 0x90,
+ 0x13, 0xb8, 0xc6, 0x96, 0x14, 0xb8, 0x26, 0x83, 0x27, 0x76, 0x35, 0x57, 0x17, 0x91, 0x9d, 0x56, 0xa5, 0x6a,
+ 0x3c, 0x12, 0xe1, 0x1e, 0xd8, 0x18, 0xee, 0xd0, 0x92, 0xc6, 0xa3, 0xae, 0x87, 0x46, 0xe9, 0x14, 0xaa, 0x8c,
+ 0x30, 0x98, 0xf4, 0x45, 0xaf, 0x1a, 0x59, 0x21, 0x7f, 0xaf, 0xfd, 0x0c, 0x36, 0xd8, 0x00, 0x0a, 0xcc, 0xc6,
+ 0x25, 0x6e, 0x8e, 0x48, 0x6d, 0x70, 0x6b, 0x0c, 0xc4, 0xb6, 0xde, 0xad, 0x67, 0x58, 0xe3, 0x3f, 0x08, 0xc3,
+ 0x58, 0xc7, 0x57, 0x78, 0x44, 0xe1, 0xe4, 0x9b, 0x12, 0x79, 0x0d, 0xb4, 0x9d, 0xb8, 0x19, 0x0c, 0x21, 0x6e,
+ 0x90, 0x79, 0x8f, 0x97, 0x99, 0xeb, 0x6d, 0xce, 0x34, 0x13, 0x9e, 0x16, 0x6b, 0x9c, 0xd5, 0x1e, 0x92, 0xc4,
+ 0x8d, 0xa7, 0x3f, 0x67, 0x7a, 0x46, 0xa8, 0x70, 0x08, 0xbd, 0x0a, 0x0e, 0x06, 0xc5, 0xea, 0x84, 0x8e, 0xc1,
+ 0xb6, 0x9a, 0x2e, 0xd8, 0xa3, 0x81, 0x1f, 0x81, 0x76, 0x65, 0xdd, 0x82, 0x47, 0xb9, 0x09, 0x67, 0x18, 0x0b,
+ 0xb8, 0xdd, 0x26, 0x95, 0xb3, 0x30, 0xc0, 0x6d, 0xef, 0xcb, 0xa3, 0xaf, 0xb6, 0x9f, 0xca, 0x80, 0xbb, 0x5f,
+ 0x1f, 0x7c, 0x49, 0x6c, 0xbf, 0xcc, 0x8a, 0xee, 0x19, 0xf0, 0xd2, 0xb7, 0x24, 0xad, 0x6e, 0xa1, 0x5f, 0x22,
+ 0x9d, 0xf4, 0x26, 0xc6, 0x62, 0x34, 0x74, 0xda, 0xff, 0xc5, 0x7b, 0x23, 0xf7, 0x1f, 0xea, 0x71, 0x07, 0xbd,
+ 0x9f, 0x8a, 0x4e, 0xdf, 0xe4, 0xc3, 0xcd, 0x46, 0x72, 0x56, 0x85, 0xd8, 0x35, 0x9c, 0xef, 0x93, 0xb6, 0x02,
+ 0x3b, 0xda, 0x78, 0x44, 0xca, 0x30, 0x79, 0x3b, 0x07, 0x64, 0x75, 0xed, 0x27, 0x0e, 0xf2, 0x78, 0xe8, 0xc0,
+ 0xf2, 0x61, 0xfb, 0xf3, 0xcd, 0x25, 0x8f, 0xca, 0x42, 0x2f, 0xdf, 0x46, 0xcc, 0xa4, 0xa7, 0x5a, 0x2d, 0xbd,
+ 0x1c, 0x77, 0x52, 0x08, 0x3a, 0xfd, 0xea, 0xe3, 0xf0, 0x37, 0x8c, 0xb6, 0x6a, 0xcf, 0x61, 0x2a, 0x26, 0x28,
+ 0xc2, 0x50, 0xd1, 0x4f, 0xbc, 0x72, 0x57, 0x6d, 0x9f, 0x4c, 0x32, 0xb3, 0xa8, 0x2b, 0xca, 0x50, 0x15, 0x64,
+ 0x84, 0xb5, 0x2b, 0xa2, 0x6e, 0x4f, 0x1d, 0x88, 0xc8, 0x48, 0x7c, 0xf4, 0x58, 0xe2, 0x97, 0x5c, 0x31, 0xf4,
+ 0x2d, 0x5f, 0x5a, 0xc9, 0x3d, 0x07, 0x21, 0xc5, 0x69, 0x15, 0xb1, 0x44, 0x90, 0x11, 0x5e, 0x7c, 0xfc, 0xd2,
+ 0x60, 0x6d, 0x3a, 0x92, 0x04, 0x5c, 0x2d, 0x56, 0x2a, 0x0a, 0x6b, 0x9c, 0x4f, 0xf2, 0xc4, 0xb8, 0x60, 0x08,
+ 0x52, 0x2a, 0x9a, 0x55, 0x4c, 0xf0, 0xcc, 0xa9, 0x83, 0xb4, 0x8e, 0x07, 0xc4, 0x30, 0x69, 0xaf, 0x94, 0xfb,
+ 0x3f, 0x3b, 0x1c, 0x97, 0xee, 0xa6, 0xb2, 0x84, 0x56, 0x45, 0x5f, 0x0a, 0xe7, 0x3a, 0x16, 0x4b, 0x8b, 0x54,
+ 0xd4, 0x35, 0x38, 0xd5, 0x01, 0x92, 0xfc, 0x20, 0x8b, 0x0f, 0x2d, 0xc2, 0x97, 0xe6, 0x29, 0x88, 0x0b, 0x35,
+ 0xee, 0x0a, 0x35, 0xd6, 0x93, 0xb2, 0x00, 0x2d, 0xc2, 0xae, 0x35, 0x21, 0x52, 0xdb, 0x48, 0x7f, 0xaa, 0xe8,
+ 0x75, 0xfc, 0xb5, 0x1f, 0x6d, 0xc1, 0x25, 0x69, 0x8c, 0x78, 0x29, 0xf1, 0x4a, 0x0c, 0x3e, 0xbe, 0x9a, 0x1a,
+ 0xd7, 0x8f, 0x61, 0x74, 0xb7, 0xd5, 0x4c, 0xb8, 0xd0, 0x14, 0xd6, 0x32, 0x57, 0x11, 0xde, 0x93, 0x0a, 0x9c,
+ 0x7a, 0x73, 0xeb, 0x28, 0x20, 0xf0, 0x37, 0x4c, 0xa4, 0x90, 0x13, 0xc4, 0xbe, 0x30, 0x19, 0x7a, 0x9b, 0xec,
+ 0x62, 0xef, 0x66, 0x4f, 0x59, 0x91, 0x27, 0x72, 0xb4, 0x5f, 0x5c, 0x0e, 0x0d, 0x8b, 0x3e, 0xc9, 0x5e, 0xaa,
+ 0x92, 0x7a, 0x76, 0xfa, 0xcb, 0x84, 0x53, 0x56, 0xda, 0x3f, 0xfa, 0x35, 0x31, 0xfd, 0xa5, 0xb8, 0x47, 0x7d,
+ 0x68, 0x30, 0x50, 0xc3, 0x6c, 0x5d, 0x18, 0xc0, 0xeb, 0x32, 0x83, 0x54, 0xd8, 0x17, 0xd2, 0x66, 0x4e, 0xcb,
+ 0xad, 0x95, 0x39, 0xb3, 0x34, 0xb0, 0x2a, 0x12, 0xbd, 0x68, 0x74, 0x88, 0xba, 0x9d, 0xc0, 0xbb, 0xb4, 0x0e,
+ 0xd7, 0x2f, 0xd4, 0x5d, 0x40, 0xc6, 0x0f, 0xef, 0x8a, 0xb6, 0x4c, 0x89, 0x4e, 0xed, 0xde, 0x43, 0x2b, 0x2d,
+ 0xd8, 0x7b, 0x96, 0x9c, 0x7b, 0x68, 0xb7, 0x09, 0xb2, 0xa0, 0x2f, 0x11, 0x2c, 0x6e, 0x1f, 0x8f, 0x9b, 0x34,
+ 0x18, 0xc9, 0xd4, 0xf9, 0xeb, 0x49, 0x65, 0x66, 0xe1, 0xe7, 0x17, 0xb3, 0x51, 0x7c, 0x19, 0x13, 0x51, 0x2b,
+ 0x2e, 0x5f, 0x45, 0x94, 0x5a, 0x02, 0x35, 0x82, 0xca, 0xfa, 0x77, 0x11, 0xc9, 0x75, 0xd4, 0x72, 0xf2, 0x99,
+ 0x47, 0x97, 0x26, 0x96, 0x80, 0x8b, 0x33, 0xff, 0xf6, 0xd0, 0x4a, 0x4a, 0xab, 0xde, 0x55, 0x7c, 0x6f, 0xc0,
+ 0xf2, 0x3d, 0x37, 0x54, 0xcf, 0xab, 0x15, 0x66, 0x02, 0x4b, 0x38, 0x04, 0x45, 0x18, 0x08, 0x05, 0x58, 0xd1,
+ 0xed, 0x10, 0xfe, 0xe0, 0xe2, 0xc7, 0x24, 0x30, 0x22, 0xcd, 0x06, 0xd9, 0x02, 0x37, 0x53, 0x21, 0x88, 0x3d,
+ 0x3f, 0x9e, 0x21, 0x77, 0xb5, 0x85, 0xf8, 0x3d, 0x15, 0xc4, 0x00, 0x61, 0x59, 0x07, 0x43, 0x0f, 0x1e, 0x92,
+ 0x9e, 0xba, 0xfc, 0xa0, 0x58, 0xfd, 0x2e, 0x87, 0x93, 0x82, 0xd6, 0x02, 0xf5, 0x84, 0x08, 0x96, 0x8a, 0xa3,
+ 0xf9, 0xd2, 0xc3, 0xf2, 0xad, 0xbc, 0x13, 0xcb, 0xe9, 0x98, 0xed, 0xcd, 0xc5, 0x83, 0xbc, 0x43, 0x91, 0xcc,
+ 0x19, 0x47, 0x14, 0x7e, 0x8c, 0x8e, 0x36, 0x5d, 0x9e, 0x96, 0x8d, 0x97, 0x61, 0xad, 0x73, 0x64, 0x47, 0xed,
+ 0x3e, 0x40, 0x76, 0x99, 0xbe, 0x47, 0xe7, 0x5f, 0xae, 0x4c, 0x88, 0x3e, 0x90, 0x08, 0xd9, 0xc6, 0x35, 0x4b,
+ 0x19, 0xe4, 0x7b, 0xfe, 0x23, 0x04, 0x10, 0x2a, 0x50, 0x37, 0x88, 0x18, 0x72, 0xd0, 0x2a, 0x2f, 0x77, 0xaa,
+ 0x09, 0xe0, 0xf2, 0x49, 0x7a, 0xf2, 0xf9, 0x6b, 0xa5, 0x53, 0x55, 0xd5, 0x28, 0xf9, 0x2c, 0x0c, 0x99, 0x33,
+ 0x31, 0xc6, 0xa5, 0xb2, 0x52, 0x30, 0x42, 0x8e, 0x53, 0xb4, 0x38, 0xd3, 0x89, 0xfd, 0x0f, 0x25, 0x79, 0xbc,
+ 0xac, 0xe3, 0x8c, 0x04, 0xfd, 0x38, 0x67, 0xf0, 0xb5, 0x5f, 0xb1, 0x66, 0xf2, 0xb3, 0xd6, 0x0d, 0x99, 0x66,
+ 0xb6, 0x7b, 0xf4, 0x75, 0xa9, 0xb6, 0x8b, 0xbf, 0x58, 0xf8, 0xcc, 0xe0, 0x2c, 0xf6, 0xaf, 0xae, 0x1a, 0xd1,
+ 0x62, 0x55, 0xec, 0xb5, 0xf7, 0xff, 0x7b, 0x32, 0xe5, 0x81, 0x4d, 0xc1, 0x29, 0x67, 0x84, 0xb9, 0x54, 0x03,
+ 0x35, 0x17, 0x21, 0xcf, 0x91, 0xcd, 0x60, 0x6e, 0x2d, 0x86, 0xe1, 0x16, 0x56, 0x6a, 0x53, 0x9b, 0x98, 0xb8,
+ 0x8c, 0x85, 0x5a, 0x3b, 0xa0, 0xc0, 0x9c, 0xb4, 0xc8, 0x90, 0xda, 0x29, 0xd6, 0xcd, 0xc7, 0x6b, 0x8d, 0x43,
+ 0x95, 0x3d, 0xeb, 0x58, 0x6c, 0x55, 0x9a, 0xf5, 0xa3, 0xe2, 0xb0, 0x6d, 0x00, 0xe7, 0x98, 0xe5, 0xcb, 0x7a,
+ 0xf3, 0x3f, 0x0b, 0x09, 0x47, 0x45, 0x37, 0xc4, 0x98, 0x90, 0x00, 0x39, 0x4a, 0xff, 0x62, 0x01, 0x97, 0xb8,
+ 0x24, 0x41, 0x61, 0xd5, 0xbe, 0xc1, 0xac, 0xa8, 0xe5, 0x36, 0x41, 0x33, 0x2f, 0xef, 0x7d, 0x5e, 0x94, 0x60,
+ 0x76, 0xbf, 0x6c, 0xb3, 0x7a, 0x59, 0x60, 0xd3, 0x78, 0xbc, 0xc6, 0x4d, 0xf5, 0xe0, 0x1d, 0x55, 0x51, 0xf2,
+ 0xed, 0x17, 0x19, 0x03, 0x8e, 0x2e, 0xd6, 0x3f, 0x43, 0x7d, 0x91, 0x5b, 0xc8, 0x0f, 0xf3, 0x03, 0x58, 0x95,
+ 0x67, 0xed, 0x8b, 0xe2, 0x45, 0x84, 0xa5, 0x6d, 0xf8, 0x98, 0x50, 0x7f, 0x89, 0xcf, 0xf2, 0x40, 0x05, 0x8d,
+ 0x09, 0x8d, 0xdd, 0x11, 0xf5, 0x4c, 0x09, 0x71, 0x96, 0x8c, 0x01, 0xca, 0x99, 0x78, 0xfa, 0x50, 0x83, 0x6b,
+ 0xeb, 0x0d, 0x65, 0x1d, 0xee, 0xc2, 0xb2, 0x03, 0x66, 0x60, 0xbd, 0xa1, 0x9d, 0x13, 0x50, 0x8f, 0xeb, 0x0b,
+ 0x9a, 0x9e, 0x26, 0x9a, 0x94, 0x1b, 0x85, 0x6e, 0x4d, 0xbb, 0x0f, 0x6d, 0x72, 0x8f, 0x45, 0xb8, 0x95, 0x18,
+ 0x55, 0x60, 0x07, 0x27, 0x59, 0xb1, 0x73, 0xf3, 0xf8, 0xfb, 0xa6, 0xa1, 0x70, 0xd6, 0xd3, 0x35, 0xea, 0xaf,
+ 0x7d, 0x70, 0x88, 0xcd, 0x73, 0x34, 0x08, 0x63, 0xbd, 0xf8, 0x9d, 0x29, 0x31, 0x12, 0xea, 0x9f, 0xd0, 0x0c,
+ 0x5a, 0x06, 0xa3, 0xbd, 0xf9, 0xd4, 0x36, 0x02, 0x1d, 0x5a, 0x80, 0xe2, 0x66, 0xcc, 0x0b, 0x08, 0xab, 0xef,
+ 0xf7, 0x06, 0x79, 0xcf, 0x90, 0x90, 0x11, 0x31, 0x00, 0xcf, 0x03, 0x37, 0xb7, 0x2b, 0xd1, 0x94, 0x98, 0xfd,
+ 0xe2, 0x21, 0x5f, 0x0f, 0xcc, 0x20, 0xad, 0x8a, 0xf9, 0xf6, 0x77, 0x0e, 0xe8, 0x57, 0x87, 0x69, 0xd8, 0x61,
+ 0x03, 0xb5, 0x57, 0xf0, 0xf2, 0xd8, 0x24, 0x7b, 0x5b, 0x32, 0xc0, 0xdb, 0xa8, 0xc8, 0xff, 0x6c, 0x0b, 0xe4,
+ 0x7d, 0xd1, 0x6a, 0xd5, 0x7e, 0xa1, 0x01, 0x9a, 0x5a, 0xcb, 0x5e, 0x67, 0xa6, 0x1c, 0xdd, 0x20, 0xcf, 0xa7,
+ 0x91, 0x10, 0x47, 0x06, 0xb6, 0x2e, 0xc5, 0xb5, 0x35, 0x75, 0xae, 0xe8, 0xc7, 0xea, 0xb1, 0xb4, 0x27, 0x1b,
+ 0x52, 0x8a, 0x8d, 0x98, 0xe2, 0xc2, 0x6a, 0x17, 0x9d, 0x3d, 0x0d, 0x6e, 0xcc, 0x21, 0x8a, 0xbe, 0x55, 0xcd,
+ 0x19, 0x03, 0x2a, 0x27, 0xb7, 0xfb, 0xdb, 0x1d, 0xc0, 0xf8, 0x33, 0x1d, 0x9c, 0x4d, 0x40, 0x8c, 0x85, 0x16,
+ 0x5a, 0xc3, 0x55, 0xc8, 0xc1, 0x80, 0xe9, 0x6a, 0xb9, 0x88, 0x77, 0xd6, 0xba, 0xdd, 0xc4, 0x57, 0xd6, 0x1e,
+ 0xee, 0x98, 0x3b, 0x46, 0x9a, 0xf2, 0xba, 0x47, 0x0a, 0x81, 0xe9, 0x86, 0x32, 0xad, 0xa8, 0x17, 0xa6, 0x12,
+ 0xf3, 0x13, 0x93, 0xde, 0x7f, 0x52, 0x8d, 0xe2, 0x5d, 0xab, 0xce, 0xf3, 0x5e, 0x40, 0x69, 0xf1, 0x00, 0x9d,
+ 0x26, 0x6a, 0xb5, 0xb7, 0x3b, 0x82, 0xf0, 0x51, 0xb2, 0x8b, 0xea, 0xf0, 0x42, 0xaa, 0x69, 0x4c, 0x3a, 0xc4,
+ 0x4e, 0xb7, 0x35, 0x83, 0x97, 0xec, 0xb6, 0xe9, 0x76, 0x80, 0xbb, 0x88, 0x47, 0x73, 0x77, 0x6f, 0x54, 0x77,
+ 0xf4, 0x93, 0x04, 0xb8, 0x70, 0x77, 0xe0, 0xf1, 0xc3, 0x24, 0x50, 0x20, 0xb7, 0xe5, 0x1c, 0xa1, 0xd2, 0xae,
+ 0xe1, 0x25, 0x65, 0x23, 0xb6, 0x8c, 0x6e, 0x24, 0x97, 0xb1, 0xbe, 0x3b, 0xd3, 0xf5, 0x30, 0xfb, 0xe3, 0x93,
+ 0x2d, 0x70, 0xac, 0xde, 0x5a, 0x6c, 0x34, 0x81, 0xd9, 0xef, 0xee, 0x34, 0xc1, 0x2e, 0xa6, 0xf3, 0xd5, 0xdc,
+ 0x0a, 0x97, 0x3e, 0x75, 0x30, 0x66, 0xc8, 0x1b, 0xef, 0x66, 0xb2, 0x4c, 0x4e, 0xee, 0x9d, 0xa6, 0x43, 0xc3,
+ 0x1e, 0x3f, 0x24, 0x7e, 0x08, 0xa5, 0x2d, 0x47, 0x4c, 0x10, 0x0f, 0xe7, 0x4c, 0xad, 0x45, 0x11, 0xc4, 0x53,
+ 0x99, 0x84, 0xf0, 0x27, 0x50, 0xa7, 0xe1, 0x0b, 0xf8, 0x9c, 0x46, 0xd2, 0x50, 0x26, 0xd8, 0x1f, 0x34, 0x44,
+ 0x1f, 0xdc, 0x70, 0x82, 0x49, 0x2a, 0x57, 0x70, 0xcb, 0x75, 0x50, 0x2d, 0xe2, 0x3b, 0x81, 0xed, 0x32, 0x15,
+ 0x62, 0x55, 0x12, 0x7c, 0xb5, 0xe0, 0xd8, 0xe1, 0xd5, 0x93, 0x02, 0x69, 0xb3, 0x78, 0x8b, 0x3c, 0xde, 0x9f,
+ 0x08, 0xf3, 0x0b, 0xba, 0xd3, 0x6f, 0xd2, 0x43, 0x94, 0xa3, 0xe9, 0x99, 0x7c, 0xa8, 0xcb, 0x7a, 0x19, 0xf8,
+ 0xcf, 0x06, 0x66, 0x4b, 0xf8, 0xd1, 0x96, 0x78, 0x48, 0x45, 0x22, 0xa7, 0xc5, 0x41, 0x86, 0xea, 0xf7, 0x92,
+ 0x55, 0x0a, 0x84, 0xb2, 0x62, 0xa2, 0xc0, 0xe6, 0xce, 0x10, 0x02, 0x2b, 0x0d, 0xe5, 0x50, 0xee, 0x41, 0xc7,
+ 0x2c, 0x03, 0x01, 0xf9, 0xfb, 0xc7, 0x69, 0x6d, 0xf3, 0x78, 0x36, 0xa9, 0x3d, 0x90, 0xe5, 0xf5, 0x26, 0xfc,
+ 0x7c, 0xb0, 0x29, 0x60, 0xce, 0xb9, 0x55, 0x98, 0x87, 0x5f, 0xd6, 0xac, 0xe5, 0x5a, 0x95, 0x4c, 0x06, 0xcb,
+ 0x16, 0x05, 0xf7, 0x6a, 0xd1, 0x31, 0xc3, 0xf9, 0x7e, 0x21, 0x01, 0x66, 0xf1, 0x82, 0x54, 0x08, 0x6c, 0xf3,
+ 0x3c, 0x01, 0xa7, 0xf8, 0x14, 0x2a, 0x95, 0x01, 0xed, 0x66, 0x2e, 0xe3, 0xbc, 0xb4, 0x1e, 0xcd, 0x7b, 0x7e,
+ 0x4a, 0xe1, 0x35, 0xee, 0x6b, 0xef, 0x17, 0x8b, 0x39, 0x48, 0x1c, 0xb1, 0x83, 0x95, 0x63, 0x00, 0xf9, 0x24,
+ 0x69, 0xe2, 0x2e, 0x88, 0xcf, 0x37, 0x26, 0xcf, 0xca, 0x18, 0x2a, 0x99, 0x0d, 0x89, 0xe6, 0xa9, 0x64, 0x8f,
+ 0xf2, 0x84, 0x45, 0xde, 0x02, 0xef, 0x25, 0x5a, 0xdd, 0x42, 0x95, 0x65, 0xf2, 0x6a, 0x24, 0x5b, 0x5d, 0x88,
+ 0x6d, 0x75, 0x45, 0x54, 0x71, 0x98, 0x2c, 0xb7, 0xee, 0x2c, 0x5b, 0x61, 0x5f, 0x51, 0xf6, 0x5a, 0xc3, 0x0e,
+ 0x6f, 0x0e, 0xfb, 0xb0, 0x74, 0xa2, 0x09, 0x0d, 0x6d, 0xc7, 0x77, 0x24, 0x0c, 0xb0, 0x70, 0xc9, 0x35, 0x99,
+ 0x77, 0xe7, 0xef, 0xcd, 0xda, 0x46, 0x52, 0x5d, 0xa3, 0x5f, 0x45, 0x6b, 0x2d, 0x53, 0x93, 0xbe, 0x9b, 0xc6,
+ 0xfc, 0xf9, 0x26, 0xf8, 0x5d, 0x87, 0xdf, 0x9a, 0x53, 0x89, 0x2a, 0x79, 0x3c, 0x21, 0xa5, 0x4c, 0x62, 0x3d,
+ 0x4c, 0xc0, 0x85, 0xab, 0xcc, 0x8f, 0xc5, 0x22, 0x51, 0xd7, 0xb6, 0x0c, 0xc7, 0x69, 0xac, 0xf6, 0x5b, 0x0d,
+ 0xfd, 0x89, 0x35, 0x10, 0x59, 0x99, 0xc0, 0x52, 0x3a, 0xd2, 0x13, 0x2b, 0xe6, 0xe7, 0x12, 0x8c, 0x6b, 0x44,
+ 0x0a, 0x9c, 0x2e, 0x3f, 0x2f, 0x12, 0xdb, 0x8e, 0x94, 0xa3, 0xd1, 0xd6, 0x41, 0x91, 0xab, 0x9d, 0xc2, 0x9d,
+ 0x73, 0xd4, 0x81, 0x3a, 0x39, 0xeb, 0x92, 0x12, 0x09, 0x6f, 0x06, 0xd9, 0x72, 0x07, 0xd4, 0x8d, 0x99, 0x5e,
+ 0xca, 0x6f, 0x28, 0xe7, 0x2c, 0xc9, 0xa8, 0xcf, 0x7b, 0x69, 0xfa, 0x9d, 0x99, 0xdb, 0xfe, 0xfb, 0x27, 0x42,
+ 0x94, 0xfb, 0xfb, 0x87, 0xaa, 0x5a, 0x38, 0x8b, 0xb8, 0xaf, 0x3a, 0xf9, 0x16, 0x4e, 0x70, 0x69, 0x2d, 0xea,
+ 0xe3, 0xcb, 0xf3, 0x04, 0x6e, 0xba, 0x86, 0x0e, 0xa4, 0xc3, 0xdb, 0x33, 0x10, 0xdf, 0x36, 0x49, 0xa1, 0x1a,
+ 0x9e, 0xc3, 0x6e, 0xf4, 0xd6, 0x85, 0x14, 0x2e, 0x19, 0x99, 0x89, 0xf5, 0x63, 0x6b, 0x0a, 0x07, 0x6d, 0xfc,
+ 0x9f, 0x90, 0xac, 0x64, 0xa1, 0x14, 0xbc, 0xa8, 0x8c, 0xa2, 0x9b, 0x48, 0x56, 0xfd, 0xcf, 0x65, 0xeb, 0x8b,
+ 0x8a, 0x71, 0xd7, 0xdf, 0x5e, 0xf5, 0xb4, 0x98, 0xe8, 0x9e, 0xbd, 0x5e, 0x8f, 0xb9, 0xe1, 0xcd, 0x2f, 0xb2,
+ 0x79, 0xbd, 0x82, 0xce, 0x7b, 0x9d, 0xd3, 0xf6, 0xec, 0x7e, 0xa0, 0xa0, 0xc1, 0x88, 0xee, 0x7e, 0x85, 0x70,
+ 0x16, 0x53, 0x9f, 0xfb, 0x64, 0x35, 0xf7, 0xd7, 0xe6, 0x62, 0x6d, 0x1a, 0x46, 0xc9, 0xe9, 0xf2, 0xb7, 0x91,
+ 0x56, 0xb7, 0x5e, 0xd0, 0x5b, 0x0e, 0xd7, 0x62, 0x2e, 0xd3, 0xf4, 0x65, 0x04, 0xd9, 0x63, 0xee, 0x8b, 0x0d,
+ 0x1f, 0xaf, 0x5d, 0xfe, 0x4b, 0x56, 0x4b, 0x15, 0xf6, 0xdb, 0xbc, 0xca, 0xeb, 0x35, 0xbf, 0x32, 0xa5, 0x5e,
+ 0xf4, 0x22, 0x7a, 0xca, 0xbf, 0xd5, 0xbb, 0x0e, 0x5b, 0x81, 0xb7, 0xef, 0xe8, 0x4d, 0x8b, 0x20, 0x09, 0x5d,
+ 0x32, 0x50, 0x29, 0xb1, 0xc2, 0x04, 0xcc, 0x8f, 0xec, 0x5e, 0x48, 0xf0, 0x87, 0x4c, 0xb3, 0x27, 0x2c, 0x5d,
+ 0x4a, 0xc6, 0x73, 0x9d, 0xd7, 0x30, 0xf6, 0x32, 0xc8, 0xc0, 0xb8, 0x33, 0x23, 0xd3, 0x3a, 0x5a, 0x5b, 0x85,
+ 0x3b, 0x54, 0x70, 0x5c, 0xd0, 0xee, 0xbe, 0x65, 0x47, 0xe5, 0x82, 0xcf, 0x9f, 0xd6, 0xd7, 0xf0, 0x09, 0x60,
+ 0x89, 0x43, 0xfc, 0x70, 0xbb, 0xef, 0x13, 0x60, 0xb3, 0x6a, 0x22, 0x29, 0x5c, 0x36, 0xc5, 0xfd, 0xe3, 0x66,
+ 0xba, 0x02, 0x77, 0x12, 0x2d, 0x2f, 0xb9, 0xc3, 0x4c, 0x24, 0x00, 0x74, 0x96, 0x1a, 0xf7, 0x29, 0xcb, 0x90,
+ 0x5a, 0x61, 0x83, 0x09, 0xd3, 0x37, 0x0d, 0x34, 0xb5, 0x89, 0xec, 0x48, 0x80, 0x81, 0x80, 0x94, 0x96, 0x88,
+ 0x8e, 0x91, 0x95, 0xe1, 0x0e, 0x4b, 0x71, 0x88, 0x9c, 0x93, 0x8d, 0x16, 0x2e, 0xc3, 0x32, 0xc1, 0xd5, 0xc9,
+ 0x25, 0x32, 0x53, 0x6f, 0x63, 0x49, 0x2f, 0x0d, 0xe4, 0xc1, 0xf0, 0x93, 0x0c, 0x3b, 0x11, 0x2d, 0xf9, 0x15,
+ 0x1a, 0xc6, 0xfa, 0xb3, 0x1b, 0xd8, 0x18, 0xb5, 0x9d, 0x88, 0x1e, 0xc1, 0xc4, 0x6e, 0xe8, 0x64, 0x80, 0x6f,
+ 0xf9, 0xff, 0x53, 0xc7, 0x30, 0x09, 0xae, 0x8f, 0x64, 0x81, 0xe0, 0xb8, 0x7d, 0xe8, 0xcd, 0xea, 0xb1, 0x48,
+ 0x39, 0x49, 0x45, 0x03
};
-// context = smart_lighting
+// context = simple_context_ar
static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x65, 0x6e, 0x00, 0x09,
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x61, 0x72, 0x00, 0x09,
0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x98, 0x1b, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c,
- 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20,
- 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x61,
- 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x74, 0x6f,
- 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
- 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69,
- 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74,
- 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c,
- 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x74, 0x6f,
- 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
- 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
- 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63,
- 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d,
- 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
- 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
- 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72,
- 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20,
- 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
- 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f,
- 0x6c, 0x6f, 0x72, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74,
- 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
- 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x61, 0x6c,
- 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
- 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20,
- 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20,
- 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68,
- 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
- 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67,
- 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
- 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28,
- 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
- 0x73, 0x5d, 0x20, 0x5b, 0x69, 0x6e, 0x2c, 0x20, 0x61, 0x74, 0x5d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x24, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66,
- 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66,
- 0x66, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
- 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28,
- 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x6f,
- 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
- 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c,
- 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20,
- 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68,
- 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74,
- 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73,
- 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24,
- 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68,
- 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d,
- 0x20, 0x6f, 0x66, 0x66, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65,
- 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
- 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68,
- 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x62, 0x6c, 0x75, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x72, 0x65,
- 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x72, 0x61, 0x6e, 0x67,
- 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x69, 0x6e, 0x6b, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x72, 0x65, 0x64, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2d, 0x20, 0x22, 0x77, 0x68, 0x69, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
- 0x20, 0x22, 0x79, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62,
- 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x62, 0x65, 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x68,
- 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6b,
- 0x69, 0x74, 0x63, 0x68, 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6c,
- 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2d, 0x20, 0x22, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x0a, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
- 0x1d, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x37, 0x00,
- 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00,
- 0x57, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00,
- 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00,
- 0x8d, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x9d, 0x00, 0x00, 0x00, 0xa1, 0x00,
- 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00,
- 0x61, 0x6c, 0x6c, 0x00, 0x61, 0x74, 0x00, 0x62, 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x65,
- 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x6c, 0x75, 0x65, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x00,
- 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x67, 0x72, 0x65, 0x65, 0x6e,
- 0x00, 0x68, 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x00, 0x69, 0x6e, 0x00, 0x6b, 0x69, 0x74, 0x63, 0x68, 0x65,
- 0x6e, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x00, 0x6c, 0x69, 0x76,
- 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x6d, 0x61, 0x6b, 0x65, 0x00, 0x6f, 0x66, 0x66, 0x00,
- 0x6f, 0x6e, 0x00, 0x6f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x00, 0x70,
- 0x69, 0x6e, 0x6b, 0x00, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x00, 0x72, 0x65, 0x64, 0x00, 0x73, 0x65, 0x74,
- 0x00, 0x73, 0x68, 0x75, 0x74, 0x00, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x00, 0x74, 0x68, 0x65, 0x00, 0x74,
- 0x6f, 0x00, 0x74, 0x75, 0x72, 0x6e, 0x00, 0x77, 0x68, 0x69, 0x74, 0x65, 0x00, 0x79, 0x65, 0x6c, 0x6c, 0x6f,
- 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
- 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
- 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
- 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
- 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
- 0x1d, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x25, 0x00,
- 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x1d, 0x00,
- 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
- 0x30, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x44, 0x00,
- 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00,
- 0x52, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x66, 0x00,
- 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00,
- 0x75, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7d, 0x00,
- 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00,
- 0x04, 0x15, 0x02, 0x1f, 0x07, 0x02, 0x20, 0x1c, 0x22, 0x16, 0x07, 0x0b, 0x09, 0x1c, 0x22, 0x16, 0x07, 0x15,
- 0x22, 0x08, 0x0d, 0x17, 0x13, 0x14, 0x15, 0x01, 0x26, 0x03, 0x1f, 0x14, 0x03, 0x15, 0x0c, 0x14, 0x04, 0x15,
- 0x0c, 0x0f, 0x1c, 0x12, 0x17, 0x10, 0x04, 0x15, 0x24, 0x0d, 0x11, 0x17, 0x14, 0x11, 0x08, 0x03, 0x17, 0x15,
- 0x06, 0x1f, 0x1d, 0x15, 0x06, 0x1f, 0x15, 0x11, 0x23, 0x11, 0x18, 0x1c, 0x22, 0x16, 0x16, 0x0d, 0x14, 0x04,
- 0x0e, 0x01, 0x17, 0x04, 0x17, 0x04, 0x1c, 0x03, 0x17, 0x13, 0x04, 0x1c, 0x11, 0x17, 0x13, 0x1b, 0x02, 0x17,
- 0x1f, 0x1c, 0x12, 0x1b, 0x11, 0x18, 0x14, 0x1b, 0x0c, 0x1b, 0x03, 0x15, 0x1c, 0x0b, 0x09, 0x1d, 0x0b, 0x1f,
- 0x1e, 0x03, 0x1f, 0x1d, 0x24, 0x11, 0x08, 0x0a, 0x03, 0x0a, 0x12, 0x1f, 0x03, 0x1f, 0x11, 0x1f, 0x22, 0x1f,
- 0x0c, 0x17, 0x10, 0x24, 0x06, 0x1f, 0x24, 0x06, 0x1f, 0x25, 0x0b, 0x15, 0x19, 0x00, 0x0f, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x12, 0x00,
- 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00,
- 0x18, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x22, 0x00,
- 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
- 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1d, 0x00,
- 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x09, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x10, 0x00,
- 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
- 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
- 0x07, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
- 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00,
- 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
- 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00,
- 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73, 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
- 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
- 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00,
- 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00,
- 0x31, 0x00, 0x00, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x00, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66, 0x00, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0x04, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x64, 0x0a,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00,
- 0x44, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x3c, 0x02,
- 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x58, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0xb8, 0x00,
- 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00,
- 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00,
- 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x90, 0x01,
- 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
- 0x34, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x34, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x5c, 0x01, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x01, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00,
- 0xa4, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd0, 0x01,
- 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0xa4, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00,
- 0x2c, 0x02, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x1c, 0x02, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
- 0x54, 0x02, 0x00, 0x00, 0xc8, 0x02, 0x00, 0x00, 0x3c, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x6c, 0x02, 0x00, 0x00, 0xa4, 0x02, 0x00, 0x00, 0x54, 0x02, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x02, 0x00, 0x00, 0x6c, 0x02,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x02, 0x00, 0x00,
- 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x02,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x02, 0x00, 0x00,
- 0xa4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x02,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00,
- 0xc8, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xf4, 0x02,
- 0x00, 0x00, 0x18, 0x03, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0xf4, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00,
- 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00,
- 0xf8, 0x05, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x88, 0x03, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0xd0, 0x03,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00,
- 0x38, 0x04, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x28, 0x04, 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x4c, 0x04, 0x00, 0x00, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00,
- 0x74, 0x04, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x04,
- 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0xb4, 0x04, 0x00, 0x00, 0xa0, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xc8, 0x04, 0x00, 0x00, 0xb4, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x38, 0x05, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x50, 0x05, 0x00, 0x00, 0x74, 0x05, 0x00, 0x00, 0x38, 0x05,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x05, 0x00, 0x00,
- 0x50, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x05,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0xd4, 0x05,
- 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0xb0, 0x05, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xc4, 0x05, 0x00, 0x00, 0xb0, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xe8, 0x05, 0x00, 0x00, 0xd4, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x28, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x10, 0x06,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00,
- 0x28, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x06,
- 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x64, 0x06, 0x00, 0x00, 0x50, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x88, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x9c, 0x06, 0x00, 0x00, 0x88, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xec, 0x06, 0x00, 0x00, 0x10, 0x07, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0xec, 0x06,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0xc0, 0x08, 0x00, 0x00,
- 0xf8, 0x08, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x20, 0x07,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x6c, 0x07, 0x00, 0x00,
- 0x90, 0x07, 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x48, 0x07,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x07, 0x00, 0x00,
- 0x6c, 0x07, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0xdc, 0x07,
- 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xcc, 0x07, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0xf0, 0x07, 0x00, 0x00, 0xdc, 0x07, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x2c, 0x08, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x08, 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x50, 0x08, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x74, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x08, 0x00, 0x00, 0xb0, 0x08, 0x00, 0x00, 0x74, 0x08,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x08, 0x00, 0x00,
- 0x8c, 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x08,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
- 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd4, 0x08, 0x00, 0x00, 0xc0, 0x08,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x08, 0x00, 0x00,
- 0xd4, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x09, 0x00, 0x00,
- 0xf8, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00,
- 0x6c, 0x09, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x5c, 0x09, 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x6c, 0x09, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xbc, 0x09, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe0, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00,
- 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf4, 0x09, 0x00, 0x00, 0xe0, 0x09,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
- 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x18, 0x0a, 0x00, 0x00, 0x04, 0x0a,
- 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00,
- 0x18, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x40, 0x0a,
- 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x54, 0x0a, 0x00, 0x00, 0x40, 0x0a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00,
- 0x8c, 0x0a, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0xb0, 0x0d,
- 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x05, 0x00, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0xd4, 0x0a, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x80, 0x0b,
- 0x00, 0x00, 0xa4, 0x0b, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xc4, 0x0a, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x0b, 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x0c, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x34, 0x0b, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x70, 0x0b, 0x00, 0x00,
- 0x34, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x60, 0x0b,
- 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x34, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x94, 0x0b, 0x00, 0x00,
- 0x80, 0x0b, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
- 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00,
- 0xa4, 0x0b, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x0b,
- 0x00, 0x00, 0xf4, 0x0b, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00, 0x00, 0xd0, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0c, 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x50, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x78, 0x0c, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0xb4, 0x0c, 0x00, 0x00,
- 0x78, 0x0c, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x0c,
- 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x78, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0c,
- 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00,
- 0x3c, 0x0d, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00, 0x2c, 0x0d, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x06, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x0d, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x54, 0x0d, 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x3c, 0x0d,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00,
- 0x54, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x7c, 0x0d,
- 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x3c, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x0d,
- 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x64, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xc8, 0x0d,
- 0x00, 0x00, 0xec, 0x0d, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xdc, 0x0d, 0x00, 0x00, 0xc8, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x64, 0x0e, 0x00, 0x00,
- 0x28, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x54, 0x0e,
- 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x28, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x0d,
- 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00,
- 0xc4, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xb4, 0x0e, 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xd8, 0x0e, 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_ENGLISH__
-
-#if defined(__PV_LANGUAGE_GERMAN__)
-
-// wake-word = hey computer
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xa9, 0x5b, 0x9a, 0x5d, 0x4f, 0x7b, 0x71, 0x04, 0x94, 0xb2, 0x6c, 0x15, 0x29, 0xbf, 0xde, 0x31, 0x9c, 0xa9,
- 0x74, 0x68, 0x62, 0xfe, 0x9f, 0x16, 0x8d, 0xe3, 0xeb, 0x5e, 0x09, 0x1c, 0xaf, 0x7a, 0xbd, 0x42, 0x32, 0x40,
- 0x7c, 0xbd, 0xe8, 0x62, 0x32, 0xa3, 0x0c, 0xfd, 0x13, 0x16, 0xd9, 0x56, 0x8a, 0x8e, 0x8c, 0xcd, 0xc9, 0x06,
- 0x6c, 0x29, 0x42, 0xe4, 0x78, 0x9a, 0x07, 0x13, 0x77, 0xff, 0x6e, 0x47, 0xa5, 0x5f, 0xd2, 0xec, 0x28, 0x70,
- 0xb5, 0x69, 0x31, 0xc7, 0xe0, 0x98, 0xbd, 0x15, 0x1d, 0xbc, 0x84, 0xe3, 0xe3, 0x5f, 0x6b, 0x51, 0x1f, 0x38,
- 0x2f, 0xe6, 0xd2, 0x23, 0xb4, 0x61, 0x5d, 0xb3, 0x2b, 0xf0, 0x17, 0xf0, 0x63, 0xca, 0x51, 0x61, 0x85, 0xfc,
- 0xab, 0xed, 0xab, 0xc7, 0x16, 0xa0, 0x9e, 0xf4, 0x16, 0xb5, 0xe3, 0x96, 0xda, 0x56, 0x78, 0x2b, 0xea, 0x6e,
- 0x7e, 0x93, 0xb1, 0xdc, 0x91, 0x1a, 0x81, 0x38, 0xfc, 0x3d, 0x8e, 0x8c, 0xfc, 0x23, 0xb1, 0x0d, 0xd0, 0xd6,
- 0xae, 0x90, 0xab, 0x6e, 0x7d, 0xed, 0x0f, 0x7d, 0x14, 0xaf, 0x10, 0xfc, 0xa5, 0x66, 0x57, 0x63, 0x40, 0x82,
- 0xcc, 0x69, 0x1d, 0x8b, 0x55, 0x82, 0xfa, 0x48, 0x4a, 0xa0, 0x63, 0x8b, 0x57, 0x93, 0xc3, 0xe8, 0xb1, 0x52,
- 0x40, 0x14, 0xc6, 0x8a, 0xb7, 0x85, 0x7c, 0x0b, 0x51, 0x76, 0xd6, 0x6c, 0x13, 0x34, 0x87, 0x91, 0x1a, 0xbb,
- 0x7b, 0x26, 0x05, 0xdd, 0xda, 0x82, 0x5a, 0xce, 0xfd, 0xf1, 0xe0, 0x49, 0x28, 0x9a, 0x05, 0xc0, 0x11, 0x30,
- 0x1b, 0x3a, 0x6d, 0xfe, 0x21, 0x79, 0x25, 0x27, 0x9d, 0xfd, 0xa2, 0xc3, 0xc2, 0x5a, 0xc3, 0xa4, 0xf5, 0x39,
- 0xaa, 0x4b, 0x93, 0x78, 0xa0, 0xae, 0x20, 0x90, 0x07, 0xe3, 0x21, 0x4b, 0x60, 0x9f, 0x83, 0x59, 0xe9, 0xdb,
- 0x55, 0x7b, 0xed, 0x34, 0x2a, 0x06, 0x28, 0x16, 0x8d, 0x55, 0xb0, 0x38, 0x2e, 0x46, 0xb3, 0x94, 0xa9, 0x05,
- 0x30, 0x6c, 0x38, 0x41, 0xe8, 0x94, 0xc9, 0x21, 0x52, 0xbf, 0xf8, 0x50, 0x97, 0x56, 0x45, 0xa5, 0x1f, 0x2b,
- 0x55, 0xaa, 0x22, 0x58, 0x79, 0x94, 0x7c, 0x06, 0x2f, 0x30, 0xfb, 0x65, 0x37, 0xdb, 0xb0, 0x24, 0xe7, 0x5e,
- 0xab, 0x21, 0xde, 0x24, 0x9c, 0x56, 0x64, 0x5b, 0x11, 0xf8, 0xaa, 0x64, 0xa5, 0x84, 0x9f, 0xbd, 0xec, 0x56,
- 0x7c, 0xc7, 0x46, 0x15, 0x84, 0x18, 0x26, 0x9c, 0x32, 0xdd, 0xef, 0xd9, 0x93, 0x67, 0x08, 0x76, 0xa7, 0x73,
- 0x4a, 0x9c, 0xbc, 0xc4, 0x16, 0x35, 0x2a, 0x59, 0xec, 0x6c, 0x9f, 0x7e, 0x0f, 0x8d, 0x82, 0x36, 0xbc, 0xaf,
- 0x9f, 0xb0, 0x96, 0x07, 0xb6, 0x8f, 0xda, 0x4b, 0xb5, 0xe3, 0xc3, 0x00, 0x6c, 0x95, 0x43, 0x7d, 0x98, 0xaf,
- 0xa6, 0x7e, 0x38, 0x0e, 0xc1, 0x0c, 0x90, 0x51, 0x83, 0x90, 0x72, 0xaa, 0xe4, 0x50, 0x17, 0x31, 0x4f, 0x0c,
- 0x6e, 0xb7, 0x10, 0x32, 0x42, 0x03, 0xc2, 0x24, 0x57, 0x6d, 0x07, 0x93, 0x23, 0x4c, 0xd8, 0x2e, 0x7d, 0x46,
- 0x17, 0x06, 0x5f, 0xcd, 0x37, 0xa2, 0x0a, 0x0b, 0x9e, 0xb6, 0x7b, 0x82, 0x09, 0xa2, 0x65, 0x41, 0xea, 0x70,
- 0x96, 0x8e, 0x19, 0x88, 0xf6, 0xef, 0xc2, 0x45, 0x69, 0xc2, 0xd8, 0xfd, 0xfe, 0xde, 0x6a, 0x75, 0x47, 0x08,
- 0x60, 0x38, 0xbd, 0x9d, 0xb0, 0xf5, 0x34, 0xca, 0x7b, 0xcb, 0x59, 0x86, 0x6c, 0xa2, 0x1a, 0x76, 0xa9, 0x8a,
- 0x36, 0x97, 0xe7, 0xa9, 0x2d, 0xdf, 0xfe, 0x1f, 0xdf, 0xa1, 0xfd, 0x07, 0x94, 0xe4, 0x09, 0x94, 0x30, 0xa2,
- 0x75, 0x31, 0xb8, 0xce, 0xb0, 0xd6, 0x6d, 0xb9, 0x46, 0xc2, 0xfa, 0xfc, 0xbc, 0xf0, 0x26, 0x24, 0x49, 0x42,
- 0x5d, 0x53, 0x19, 0xd4, 0x58, 0x5e, 0x77, 0x89, 0xdd, 0xad, 0xd3, 0xd7, 0xd7, 0xb8, 0xb9, 0xaa, 0x05, 0x67,
- 0xdb, 0x5f, 0xfe, 0xad, 0xa8, 0x31, 0xc1, 0xb2, 0x86, 0x31, 0x1d, 0x25, 0x60, 0xf6, 0x88, 0xa8, 0x6c, 0x2e,
- 0xee, 0x99, 0xf6, 0x68, 0x1d, 0x2d, 0x2b, 0x30, 0x69, 0xca, 0xd9, 0x05
-};
-
-// context = beleuchtung
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x64, 0x65, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x22, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x20, 0x24, 0x76, 0x72,
+ 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
+ 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x22, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa7, 0xd9, 0x84, 0xd9, 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88,
+ 0xd9, 0x84, 0xd8, 0xa9, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xaa, 0xd9,
+ 0x81, 0xd8, 0xa7, 0xd8, 0xad, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x33, 0x00,
+ 0x00, 0x00, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x00, 0xd8, 0xa7, 0xd9, 0x84, 0xd9,
+ 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88, 0xd9, 0x84, 0xd8, 0xa9, 0x00, 0xd8, 0xaa, 0xd9, 0x81, 0xd8, 0xa7,
+ 0xd8, 0xad, 0x00, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x00, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1e, 0x00,
+ 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x46, 0x00,
+ 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00,
+ 0x7c, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa6, 0x00,
+ 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
+ 0xc4, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xd6, 0x00,
+ 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xea, 0x00, 0x00, 0x00,
+ 0xf1, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x03, 0x01, 0x00, 0x00, 0x07, 0x01,
+ 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x16, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00,
+ 0x21, 0x01, 0x00, 0x00, 0x27, 0x01, 0x00, 0x00, 0x2b, 0x01, 0x00, 0x00, 0x30, 0x01, 0x00, 0x00, 0x36, 0x01,
+ 0x00, 0x00, 0x02, 0x10, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x02, 0x1a, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x20, 0x09,
+ 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10,
+ 0x16, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20,
+ 0x24, 0x03, 0x09, 0x10, 0x08, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03,
+ 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24,
+ 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a,
+ 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a,
+ 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03,
+ 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11,
+ 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x10, 0x08,
+ 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x0c, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a,
+ 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a, 0x0c, 0x0e, 0x21, 0x0e, 0x0e, 0x21, 0x0e, 0x10, 0x0e, 0x21, 0x0e, 0x03,
+ 0x0e, 0x21, 0x0e, 0x1a, 0x0e, 0x21, 0x0e, 0x1a, 0x0c, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x0e, 0x1a, 0x24, 0x10,
+ 0x0e, 0x10, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x18, 0x10, 0x0a, 0x10,
+ 0x11, 0x10, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x11, 0x18, 0x10, 0x0a, 0x11, 0x10,
+ 0x18, 0x03, 0x0a, 0x11, 0x18, 0x03, 0x0a, 0x11, 0x03, 0x0c, 0x18, 0x03, 0x0a, 0x11, 0x1a, 0x0c, 0x18, 0x1a,
+ 0x0a, 0x10, 0x11, 0x18, 0x1a, 0x0a, 0x10, 0x11, 0x10, 0x18, 0x1a, 0x0a, 0x11, 0x18, 0x1a, 0x0a, 0x11, 0x10,
+ 0x18, 0x1a, 0x0a, 0x11, 0x1a, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69,
+ 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x18, 0x00,
+ 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_ARABIC__
+
+#if defined(__PV_LANGUAGE_GERMAN__)
+
+// wake-word = hey computer
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x97, 0x6f, 0x9c, 0x1d, 0x10, 0xb1, 0xbe, 0xcc, 0x81, 0xc4, 0xe7, 0xf1, 0xeb, 0xcd, 0x55, 0xd6, 0x74, 0x17,
+ 0xed, 0x0d, 0x6a, 0xbe, 0x39, 0xf7, 0xc6, 0x32, 0xe8, 0x31, 0x27, 0x37, 0x98, 0xea, 0x12, 0xbb, 0x53, 0xd6,
+ 0xa5, 0x80, 0xe7, 0x7d, 0x67, 0x29, 0x87, 0xf7, 0x09, 0x46, 0xe2, 0x3b, 0x52, 0xbb, 0x64, 0x92, 0x53, 0xb2,
+ 0x3d, 0x09, 0xd4, 0xa8, 0x7a, 0x34, 0x80, 0xfd, 0x6d, 0x5d, 0x33, 0x9e, 0x85, 0xb3, 0x2c, 0xd0, 0xc4, 0x52,
+ 0xe4, 0x9d, 0x46, 0x0c, 0x83, 0x36, 0x48, 0x34, 0xb2, 0xfb, 0x51, 0xad, 0xd4, 0x78, 0x30, 0x87, 0xfd, 0xf6,
+ 0x79, 0x60, 0x3a, 0x4d, 0x53, 0xb8, 0x80, 0x58, 0xa2, 0xf1, 0x68, 0x9e, 0x95, 0x72, 0x9e, 0xbe, 0xd9, 0xa5,
+ 0xdc, 0x15, 0xaa, 0x18, 0x41, 0xc6, 0x9f, 0xfc, 0x09, 0xef, 0x5a, 0x3a, 0x9f, 0xda, 0x40, 0x5d, 0x32, 0xef,
+ 0xad, 0x90, 0x22, 0xa1, 0xc7, 0xd7, 0xa0, 0x19, 0xbf, 0xa2, 0x17, 0xd6, 0xcb, 0x2a, 0x81, 0xa2, 0x1d, 0x02,
+ 0xcf, 0x16, 0xea, 0x2a, 0x29, 0x7a, 0xbc, 0x34, 0x97, 0x83, 0x75, 0x31, 0x7d, 0x7f, 0xf6, 0x1b, 0x72, 0xdb,
+ 0x07, 0xaf, 0xdd, 0xb6, 0xf9, 0x2a, 0xa4, 0x8d, 0x38, 0xe4, 0x43, 0xd0, 0x40, 0x66, 0x68, 0x4a, 0x2f, 0x21,
+ 0x23, 0xb5, 0x22, 0x42, 0x27, 0x5a, 0x03, 0x94, 0x93, 0x6d, 0x99, 0xa7, 0x6f, 0x13, 0x4e, 0x4f, 0x32, 0x6e,
+ 0x8f, 0x5e, 0x36, 0x19, 0xe1, 0x32, 0x08, 0x58, 0xc4, 0xa3, 0xf7, 0x60, 0x17, 0xec, 0xea, 0x78, 0x1d, 0x2b,
+ 0xbc, 0x6f, 0x80, 0x97, 0x88, 0x88, 0x6f, 0xf9, 0xf4, 0x99, 0x15, 0x12, 0x25, 0x54, 0xdf, 0x02, 0xdb, 0x6b,
+ 0x35, 0x04, 0x51, 0xd7, 0x5d, 0x7e, 0xee, 0xef, 0x85, 0x48, 0x55, 0x5c, 0x70, 0x70, 0xbb, 0xc2, 0x8f, 0x92,
+ 0x67, 0x43, 0x81, 0xa1, 0xca, 0x89, 0xf7, 0xa4, 0xd1, 0xa9, 0x86, 0x34, 0x41, 0xfa, 0xc0, 0x04, 0x9b, 0xcd,
+ 0x7e, 0x45, 0xbd, 0x8f, 0x72, 0x06, 0x0c, 0x40, 0x3e, 0x68, 0x62, 0x08, 0x76, 0xca, 0xbe, 0xef, 0xad, 0x18,
+ 0x3f, 0x2c, 0x68, 0x99, 0xfb, 0xb0, 0x9b, 0x4b, 0x64, 0x90, 0x8c, 0x70, 0xfe, 0x9d, 0xb4, 0x99, 0x3f, 0x30,
+ 0x5e, 0x8a, 0xea, 0x72, 0x2d, 0x2b, 0xb6, 0x77, 0x3f, 0x6e, 0xfd, 0x47, 0x7d, 0x1d, 0x44, 0xcb, 0x2d, 0x86,
+ 0x56, 0x95, 0xbf, 0xc9, 0xf8, 0x13, 0x3a, 0x3b, 0xd8, 0x15, 0x29, 0x08, 0x12, 0x34, 0x16, 0xca, 0x01, 0xde,
+ 0x99, 0xc9, 0xe7, 0x1a, 0x56, 0x64, 0x17, 0x2a, 0x1a, 0x24, 0xb8, 0x50, 0x01, 0x5c, 0x89, 0x07, 0x0c, 0x8c,
+ 0x9c, 0x0c, 0x1a, 0x3f, 0xea, 0x05, 0x67, 0x84, 0xd5, 0xc7, 0x6f, 0xe2, 0x3f, 0x92, 0x7c, 0x62, 0x0b, 0xb9,
+ 0xaa, 0xac, 0xa3, 0x68, 0x72, 0xb1, 0xca, 0x68, 0xf4, 0x3d, 0x95, 0x06, 0x14, 0x55, 0x4f, 0xb4, 0x84, 0x3d,
+ 0x5c, 0x49, 0x25, 0x52, 0x0a, 0x3a, 0xf5, 0x8b, 0x2d, 0x5f, 0x3e, 0x3d, 0x71, 0x0d, 0xae, 0xa1, 0x9d, 0x22,
+ 0xc7, 0x6e, 0xcf, 0x94, 0xec, 0xc5, 0xc0, 0x10, 0xbd, 0xc7, 0x54, 0x84, 0x72, 0x9a, 0xf3, 0x2e, 0xd0, 0xe0,
+ 0x29, 0x54, 0xda, 0xe2, 0x69, 0x76, 0x7c, 0x71, 0x5d, 0x1c, 0xb9, 0x7a, 0xe8, 0x5f, 0x19, 0x34, 0xe8, 0x49,
+ 0xa6, 0x61, 0x9c, 0x37, 0x0a, 0x5c, 0xac, 0x4b, 0x25, 0xe1, 0x44, 0x82, 0x0b, 0xe1, 0xe8, 0xbb, 0xdb, 0xae,
+ 0xcd, 0x55, 0x7b, 0xa9, 0xab, 0x94, 0x65, 0x15, 0x79, 0x27, 0x40, 0x83, 0x97, 0x08, 0xc2, 0x22, 0xb0, 0x31,
+ 0x36, 0x3a, 0x1e, 0x7e, 0x7d, 0x2b, 0x78, 0x30, 0x7c, 0x49, 0x1c, 0xa2, 0x65, 0x41, 0x95, 0x28, 0xef, 0x4d,
+ 0xa6, 0xb5, 0xab, 0xd9, 0xc7, 0x87, 0x18, 0xa9, 0x93, 0xb3, 0x78, 0x07, 0xf6, 0x62, 0x15, 0x58, 0x69, 0x50,
+ 0x52, 0xc8, 0x68, 0x37, 0xf3, 0x3e, 0x4e, 0x4b, 0xa8, 0x85, 0x1d, 0xcc, 0x77, 0x0e, 0x9e, 0x4c, 0x13, 0xee,
+ 0x72, 0xb4, 0xf4, 0x8f, 0x47, 0x8e, 0x55, 0x74, 0x45, 0xc6, 0x2f, 0x43
+};
+
+// context = beleuchtung
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x64, 0x65, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f,
0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x66, 0xc3, 0xa4, 0x72, 0x62,
@@ -751,49 +575,511 @@ static const uint8_t CONTEXT_ARRAY[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
-#endif // __PV_LANGUAGE_GERMAN__
+#endif // __PV_LANGUAGE_GERMAN__
+
+#if defined(__PV_LANGUAGE_ENGLISH__)
+
+// wake-word = picovoice
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x1a, 0x68, 0xd0, 0xd2, 0x03, 0xc2, 0x6e, 0xa8, 0x55, 0x24, 0x05, 0xa9, 0xa4, 0x4b, 0xb8, 0x1d, 0x5b, 0x39,
+ 0x6b, 0xc1, 0xb0, 0x5b, 0xe0, 0x23, 0xa6, 0x59, 0x0a, 0xab, 0x04, 0x94, 0xfb, 0xd5, 0x69, 0x30, 0x65, 0x58,
+ 0x41, 0x10, 0x27, 0x73, 0x31, 0x4c, 0xe6, 0x26, 0x51, 0x2b, 0x83, 0x4a, 0x98, 0x6d, 0x3c, 0xf3, 0x34, 0xb2,
+ 0x2b, 0xb2, 0xa6, 0x30, 0x78, 0x76, 0x70, 0x32, 0x82, 0x89, 0x9f, 0xc2, 0xd8, 0x40, 0x06, 0x7e, 0x5c, 0x4f,
+ 0xa6, 0x03, 0xd8, 0x0a, 0x80, 0x37, 0xfe, 0x92, 0x90, 0x0c, 0x9d, 0xd3, 0x77, 0xf6, 0xdc, 0xab, 0x9a, 0x8d,
+ 0x52, 0x1b, 0x5f, 0x15, 0x9c, 0x60, 0x87, 0xba, 0xd0, 0x36, 0xf4, 0x0e, 0xe2, 0x31, 0xef, 0x88, 0x9a, 0x33,
+ 0xd7, 0xaf, 0xb2, 0xdc, 0x62, 0x1d, 0xb2, 0xbb, 0x00, 0x99, 0x1f, 0x6b, 0xd7, 0xd4, 0x60, 0x68, 0xd4, 0x81,
+ 0x7d, 0xcc, 0x08, 0x04, 0xe5, 0x39, 0x47, 0x34, 0xc8, 0x9a, 0xce, 0x73, 0xe8, 0x4f, 0xf3, 0xa5, 0x3c, 0x76,
+ 0x75, 0x96, 0x73, 0x46, 0xc3, 0x4b, 0x9e, 0x00, 0x94, 0x3e, 0xa7, 0x24, 0x71, 0x8a, 0x16, 0xc2, 0x85, 0x66,
+ 0x68, 0xde, 0x07, 0xeb, 0xba, 0xa0, 0xbe, 0x92, 0xf6, 0xd8, 0xb7, 0x73, 0xe7, 0xe0, 0xf0, 0xc8, 0x12, 0x4a,
+ 0x4e, 0xd8, 0x0e, 0xac, 0x3b, 0x55, 0x7e, 0x2a, 0x33, 0x72, 0x65, 0x25, 0xe7, 0x85, 0xce, 0x5b, 0xe1, 0xa2,
+ 0x89, 0x8f, 0xc3, 0xfb, 0x6c, 0xf6, 0x64, 0x58, 0xa3, 0xc9, 0x81, 0x24, 0x0f, 0x9f, 0x2f, 0x2d, 0x00, 0x07,
+ 0x68, 0x03, 0xd7, 0x5d, 0x41, 0x39, 0xe8, 0xbf, 0xc4, 0x0a, 0x84, 0x81, 0x39, 0x5b, 0x82, 0x48, 0x42, 0x7b,
+ 0xa8, 0x52, 0x7b, 0x0b, 0x26, 0xd6, 0x83, 0xd5, 0x2b, 0x33, 0x32, 0x1d, 0x16, 0xab, 0x2c, 0xbe, 0x75, 0xca,
+ 0x69, 0x07, 0x1d, 0x00, 0x1b, 0x56, 0x59, 0xe3, 0xea, 0x87, 0x8f, 0x3f, 0x1d, 0xf4, 0xff, 0xf1, 0xf5, 0xda,
+ 0x57, 0x9e, 0xae, 0xa9, 0xab, 0x3c, 0xfd, 0xc8, 0x0b, 0x95, 0x22, 0x16, 0x45, 0x13, 0xf8, 0x36, 0x18, 0x16,
+ 0xac, 0x8b, 0x60, 0xa3, 0x2d, 0xf0, 0xd3, 0x14, 0x60, 0x97, 0xdd, 0x11, 0x81, 0x52, 0xf5, 0x37, 0xf2, 0xbc,
+ 0xa4, 0x72, 0x2e, 0xc8, 0x8d, 0xbf, 0xa3, 0x9e, 0x5e, 0xfa, 0xef, 0x23, 0x45, 0x91, 0x8a, 0x86, 0x66, 0x13,
+ 0x05, 0x6e, 0x3d, 0xbc, 0xd7, 0xef, 0xe1, 0x44, 0x02, 0x75, 0x65, 0x55, 0xcd, 0x85, 0x3e, 0x31, 0xe2, 0x8b,
+ 0x2b, 0xbd, 0x3f, 0xca, 0x4e, 0xdf, 0xb2, 0xca, 0x4b, 0x45, 0x9f, 0xf0, 0x3d, 0x97, 0x83, 0xe6, 0x0b, 0xcd,
+ 0x2b, 0xd3, 0x0d, 0xdb, 0x57, 0xd1, 0x18, 0xfa, 0xcf, 0x84, 0x50, 0xff, 0xdb, 0xa6, 0x5d, 0x7c, 0x0c, 0x71,
+ 0x8e, 0xb2, 0x36, 0x61, 0x13, 0xa4, 0x41, 0x26, 0xcf, 0x8d, 0xa8, 0xf8, 0x0f, 0xef, 0xb8, 0x2a, 0x4d, 0xf6,
+ 0x6b, 0x09, 0x5e, 0x5f, 0xf8, 0x8e, 0x4e, 0x9b, 0x68, 0x3d, 0x73, 0xa0, 0xdd, 0x1b, 0x8c, 0x56, 0x14, 0x98,
+ 0xf7, 0xc8, 0xd6, 0x99, 0x52, 0xcf, 0x7b, 0x11, 0x70, 0xe2, 0x22, 0x06, 0x7e, 0x0f, 0x0e, 0xd2, 0x5d, 0x58,
+ 0x74, 0xfc, 0x1a, 0xf9, 0xc9, 0x9f, 0xd8, 0x42, 0x0b, 0xe3, 0xa9, 0x28, 0xab, 0xce, 0x6b, 0x19, 0x4b, 0xea,
+ 0x53, 0x8b, 0x4d, 0x53, 0x81, 0xca, 0xec, 0x56, 0x82, 0xa5, 0x63, 0xbb, 0x6a, 0x11, 0x48, 0xe2, 0xc4, 0x4e,
+ 0xee, 0x24, 0x19, 0x16, 0x81, 0xb0, 0xa3, 0xfa, 0xe5, 0x2e, 0x0d, 0x89, 0x0b, 0x2f, 0xe0, 0x03, 0x83, 0x8b,
+ 0x3a, 0x75, 0xf4, 0x3a, 0x7e, 0x7c, 0x87, 0x7a, 0x68, 0x44, 0x5e, 0xb9, 0xd0, 0x50, 0xfc, 0xe3, 0x57, 0xc0,
+ 0xaf, 0xbb, 0x1f, 0xe2, 0x72, 0x3a, 0xc4, 0x9a, 0xa5, 0xf2, 0x7c, 0x8a, 0xe7, 0xad, 0xb8, 0x4b, 0x07, 0xa7,
+ 0xcb, 0xfd, 0x6c, 0x10, 0x13, 0x36, 0xec, 0x46, 0x73, 0x3b, 0xec, 0x84, 0xc3, 0x8f, 0x7a, 0x53, 0xf1, 0x9f,
+ 0x05, 0x92, 0xad, 0x11, 0xad, 0xe2, 0x5f, 0xe6, 0xf7, 0xc1, 0xbe, 0x50, 0x18, 0xf0, 0x25, 0xe0, 0x07, 0x51,
+ 0x7f, 0x5d, 0x42, 0xb9, 0xa8, 0x55, 0x9d, 0x01, 0x32, 0x70, 0xdb, 0x77, 0x7f, 0xe8, 0xa3, 0x94, 0xe8, 0x17,
+ 0x03, 0x1f, 0x22, 0x5c, 0x21, 0x20, 0x35, 0xea, 0x7b, 0xb5, 0xcb, 0xc7, 0x59, 0x8e, 0x08, 0x55, 0x91, 0xdd,
+ 0x35, 0x58, 0xc9, 0x37, 0xa5, 0xfa, 0xcb, 0x7d, 0x3d, 0x74, 0x45, 0xae, 0xe8, 0x1c, 0xd4, 0xe4, 0x96, 0x11,
+ 0x7c, 0x30, 0x27, 0xd7, 0x3a, 0xc2, 0xfb, 0x0c, 0x03, 0xa7, 0xe3, 0xaa, 0xdf, 0xa2, 0x81, 0xbe, 0xae, 0x12,
+ 0x3d, 0x0d, 0x23, 0x58, 0x3a, 0x7c, 0x8a, 0x33, 0x0a, 0xc9, 0xdd, 0x86, 0x8d, 0xaa, 0xf8, 0x76, 0x78, 0x89,
+ 0x33, 0xe0, 0xd7, 0x53, 0xce, 0x36, 0x21, 0x86, 0xf9, 0xe2, 0x6d, 0xda, 0x63, 0xf5, 0x18, 0xfe, 0xff, 0x66,
+ 0x19, 0x5e, 0x46, 0x4c, 0x20, 0xcb, 0x85, 0xf8, 0x93, 0x9e, 0xf5, 0xb3, 0x1a, 0xe3, 0x77, 0x4e, 0xc0, 0xeb,
+ 0xfb, 0xe3, 0xb3, 0xed, 0x23, 0x39, 0xfd, 0xfd, 0x5d, 0xa0, 0x4c, 0x3c, 0xdb, 0x62, 0x1e, 0xf8, 0xbb, 0xd6,
+ 0x43, 0x4a, 0x2c, 0x4c, 0x7c, 0xea, 0x5f, 0xc4, 0xf3, 0x82, 0x3c, 0x22, 0x02, 0x79, 0xd2, 0xb9, 0xa9, 0xaa,
+ 0x4f, 0x9e, 0xdd, 0x0e, 0x4d, 0xb4, 0xdd, 0x09, 0xde, 0x71, 0xd8, 0x9b, 0xdf, 0xd1, 0x0f, 0xeb, 0x34, 0x50,
+ 0xea, 0xc6, 0x31, 0xe7, 0xb2, 0x2b, 0x98, 0x95, 0x0a, 0x3c, 0x39, 0xc2, 0xf2, 0x7a, 0x56, 0x64, 0xfb, 0x15,
+ 0x07, 0x34, 0x3b, 0x93, 0x51, 0xd9, 0x34, 0xad, 0xc5, 0x90, 0x2b, 0x72, 0x39, 0x37, 0x1c, 0xe3, 0xb1, 0x3d,
+ 0x37, 0x0b, 0x5c, 0xa7, 0x78, 0xab, 0x32, 0x0b, 0xf5, 0xb5, 0x99, 0x1b, 0xb6, 0xee, 0x39, 0xb8, 0x2a, 0x12,
+ 0x30, 0x1c, 0xcb, 0xa7, 0xc3, 0x9b, 0xc4, 0xd8, 0x6f, 0x47, 0xea, 0x55, 0xac, 0x59, 0x45, 0x3c, 0x9f, 0xfc,
+ 0xea, 0x7a, 0x0e, 0xa6, 0x59, 0xdd, 0xb7, 0xce, 0x88, 0x77, 0x51, 0xd1, 0x1d, 0xd7, 0xda, 0x7d, 0x62, 0x7d,
+ 0x28, 0xa3, 0x90, 0x13, 0x45, 0x2e, 0x21, 0xc9, 0x6c, 0x12, 0xf3, 0xc9, 0x4e, 0xf9, 0x19, 0x2c, 0x82, 0xf3,
+ 0x72, 0xa7, 0xd6, 0xa5, 0x0b, 0x5d, 0xcf, 0xd9, 0x24, 0x41, 0x1e, 0xf8, 0xac, 0x9f, 0x93, 0xd1, 0xae, 0xc3,
+ 0x1c, 0xb2, 0xde, 0x5a, 0x1c, 0xc1, 0x0e, 0x37, 0x3c, 0x14, 0xca, 0xfe, 0x49, 0x50, 0xd9, 0x98, 0x26, 0x99,
+ 0x81, 0x87, 0xa6, 0x85, 0x09, 0xf0, 0x7c, 0x31, 0xab, 0xbe, 0xd8, 0x7b, 0xb6, 0xa1, 0x6b, 0xef, 0x97, 0x8a,
+ 0xd3, 0xfe, 0xfb, 0x94, 0xc4, 0x05, 0x95, 0x13, 0x6f, 0xfa, 0x13, 0xb7, 0x96, 0x8e, 0x0c, 0xb4, 0xd1, 0xf2,
+ 0x55, 0x08, 0x32, 0x88, 0xb1, 0x5e, 0x53, 0xa4, 0x50, 0xeb, 0x3a, 0x07, 0x7a, 0xc7, 0x47, 0x53, 0xc4, 0xac,
+ 0x3a, 0x34, 0xd1, 0x71, 0x17, 0x9f, 0xc0, 0x33, 0xed, 0xde, 0x4d, 0x8e, 0x1d, 0xfa, 0x63, 0xc2, 0xc5, 0x30,
+ 0x05, 0xff
+};
+
+// context = smart_lighting
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x65, 0x6e, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x98, 0x1b, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c,
+ 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20,
+ 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67,
+ 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x61,
+ 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x74, 0x6f,
+ 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
+ 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69,
+ 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74,
+ 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c,
+ 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x74, 0x6f,
+ 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
+ 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
+ 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
+ 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63,
+ 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68,
+ 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d,
+ 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
+ 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
+ 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
+ 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72,
+ 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20,
+ 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
+ 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f,
+ 0x6c, 0x6f, 0x72, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74,
+ 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
+ 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
+ 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x61, 0x6c,
+ 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x73, 0x74,
+ 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
+ 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20,
+ 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20,
+ 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68,
+ 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
+ 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
+ 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67,
+ 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
+ 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
+ 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28,
+ 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
+ 0x73, 0x5d, 0x20, 0x5b, 0x69, 0x6e, 0x2c, 0x20, 0x61, 0x74, 0x5d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x24, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66,
+ 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66,
+ 0x66, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
+ 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28,
+ 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x6f,
+ 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
+ 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c,
+ 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20,
+ 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68,
+ 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74,
+ 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73,
+ 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24,
+ 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68,
+ 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d,
+ 0x20, 0x6f, 0x66, 0x66, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65,
+ 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
+ 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68,
+ 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x62, 0x6c, 0x75, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x72, 0x65,
+ 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x72, 0x61, 0x6e, 0x67,
+ 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x69, 0x6e, 0x6b, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x72, 0x65, 0x64, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0x77, 0x68, 0x69, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
+ 0x20, 0x22, 0x79, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x74,
+ 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62,
+ 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x62, 0x65, 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x68,
+ 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6b,
+ 0x69, 0x74, 0x63, 0x68, 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6c,
+ 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2d, 0x20, 0x22, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x0a, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x1d, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x37, 0x00,
+ 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00,
+ 0x57, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00,
+ 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00,
+ 0x8d, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x9d, 0x00, 0x00, 0x00, 0xa1, 0x00,
+ 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00,
+ 0x61, 0x6c, 0x6c, 0x00, 0x61, 0x74, 0x00, 0x62, 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x65,
+ 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x6c, 0x75, 0x65, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x00,
+ 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x67, 0x72, 0x65, 0x65, 0x6e,
+ 0x00, 0x68, 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x00, 0x69, 0x6e, 0x00, 0x6b, 0x69, 0x74, 0x63, 0x68, 0x65,
+ 0x6e, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x00, 0x6c, 0x69, 0x76,
+ 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x6d, 0x61, 0x6b, 0x65, 0x00, 0x6f, 0x66, 0x66, 0x00,
+ 0x6f, 0x6e, 0x00, 0x6f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x00, 0x70,
+ 0x69, 0x6e, 0x6b, 0x00, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x00, 0x72, 0x65, 0x64, 0x00, 0x73, 0x65, 0x74,
+ 0x00, 0x73, 0x68, 0x75, 0x74, 0x00, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x00, 0x74, 0x68, 0x65, 0x00, 0x74,
+ 0x6f, 0x00, 0x74, 0x75, 0x72, 0x6e, 0x00, 0x77, 0x68, 0x69, 0x74, 0x65, 0x00, 0x79, 0x65, 0x6c, 0x6c, 0x6f,
+ 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
+ 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
+ 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x1d, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x25, 0x00,
+ 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x1d, 0x00,
+ 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
+ 0x30, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x44, 0x00,
+ 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00,
+ 0x52, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x66, 0x00,
+ 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00,
+ 0x75, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7d, 0x00,
+ 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00,
+ 0x04, 0x15, 0x02, 0x1f, 0x07, 0x02, 0x20, 0x1c, 0x22, 0x16, 0x07, 0x0b, 0x09, 0x1c, 0x22, 0x16, 0x07, 0x15,
+ 0x22, 0x08, 0x0d, 0x17, 0x13, 0x14, 0x15, 0x01, 0x26, 0x03, 0x1f, 0x14, 0x03, 0x15, 0x0c, 0x14, 0x04, 0x15,
+ 0x0c, 0x0f, 0x1c, 0x12, 0x17, 0x10, 0x04, 0x15, 0x24, 0x0d, 0x11, 0x17, 0x14, 0x11, 0x08, 0x03, 0x17, 0x15,
+ 0x06, 0x1f, 0x1d, 0x15, 0x06, 0x1f, 0x15, 0x11, 0x23, 0x11, 0x18, 0x1c, 0x22, 0x16, 0x16, 0x0d, 0x14, 0x04,
+ 0x0e, 0x01, 0x17, 0x04, 0x17, 0x04, 0x1c, 0x03, 0x17, 0x13, 0x04, 0x1c, 0x11, 0x17, 0x13, 0x1b, 0x02, 0x17,
+ 0x1f, 0x1c, 0x12, 0x1b, 0x11, 0x18, 0x14, 0x1b, 0x0c, 0x1b, 0x03, 0x15, 0x1c, 0x0b, 0x09, 0x1d, 0x0b, 0x1f,
+ 0x1e, 0x03, 0x1f, 0x1d, 0x24, 0x11, 0x08, 0x0a, 0x03, 0x0a, 0x12, 0x1f, 0x03, 0x1f, 0x11, 0x1f, 0x22, 0x1f,
+ 0x0c, 0x17, 0x10, 0x24, 0x06, 0x1f, 0x24, 0x06, 0x1f, 0x25, 0x0b, 0x15, 0x19, 0x00, 0x0f, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x12, 0x00,
+ 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x22, 0x00,
+ 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1d, 0x00,
+ 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x10, 0x00,
+ 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
+ 0x07, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
+ 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00,
+ 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
+ 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00,
+ 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73, 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
+ 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00,
+ 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73,
+ 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00,
+ 0x31, 0x00, 0x00, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x63, 0x68,
+ 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x00, 0x63, 0x68, 0x61,
+ 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66, 0x00, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x04, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x64, 0x0a,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00,
+ 0x44, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x3c, 0x02,
+ 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x58, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0xb8, 0x00,
+ 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00,
+ 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x90, 0x01,
+ 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x34, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x34, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x5c, 0x01, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x01, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00,
+ 0xa4, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd0, 0x01,
+ 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0xa4, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00,
+ 0x2c, 0x02, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x1c, 0x02, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x54, 0x02, 0x00, 0x00, 0xc8, 0x02, 0x00, 0x00, 0x3c, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x6c, 0x02, 0x00, 0x00, 0xa4, 0x02, 0x00, 0x00, 0x54, 0x02, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x02, 0x00, 0x00, 0x6c, 0x02,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x02, 0x00, 0x00,
+ 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x02,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x02, 0x00, 0x00,
+ 0xa4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x02,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00,
+ 0xc8, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xf4, 0x02,
+ 0x00, 0x00, 0x18, 0x03, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0xf4, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00,
+ 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00,
+ 0xf8, 0x05, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x88, 0x03, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0xd0, 0x03,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00,
+ 0x38, 0x04, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x28, 0x04, 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x4c, 0x04, 0x00, 0x00, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00,
+ 0x74, 0x04, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x04,
+ 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xb4, 0x04, 0x00, 0x00, 0xa0, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xc8, 0x04, 0x00, 0x00, 0xb4, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x38, 0x05, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x50, 0x05, 0x00, 0x00, 0x74, 0x05, 0x00, 0x00, 0x38, 0x05,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x05, 0x00, 0x00,
+ 0x50, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x05,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0xd4, 0x05,
+ 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xb0, 0x05, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xc4, 0x05, 0x00, 0x00, 0xb0, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xe8, 0x05, 0x00, 0x00, 0xd4, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x28, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x10, 0x06,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00,
+ 0x28, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x06,
+ 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x64, 0x06, 0x00, 0x00, 0x50, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x88, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x9c, 0x06, 0x00, 0x00, 0x88, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xec, 0x06, 0x00, 0x00, 0x10, 0x07, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0xec, 0x06,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0xc0, 0x08, 0x00, 0x00,
+ 0xf8, 0x08, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x20, 0x07,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x6c, 0x07, 0x00, 0x00,
+ 0x90, 0x07, 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x48, 0x07,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x07, 0x00, 0x00,
+ 0x6c, 0x07, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0xdc, 0x07,
+ 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xcc, 0x07, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xf0, 0x07, 0x00, 0x00, 0xdc, 0x07, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x2c, 0x08, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x08, 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x50, 0x08, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x74, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x08, 0x00, 0x00, 0xb0, 0x08, 0x00, 0x00, 0x74, 0x08,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x08, 0x00, 0x00,
+ 0x8c, 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x08,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
+ 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd4, 0x08, 0x00, 0x00, 0xc0, 0x08,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x08, 0x00, 0x00,
+ 0xd4, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x09, 0x00, 0x00,
+ 0xf8, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00,
+ 0x6c, 0x09, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x5c, 0x09, 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x6c, 0x09, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xbc, 0x09, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe0, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf4, 0x09, 0x00, 0x00, 0xe0, 0x09,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x18, 0x0a, 0x00, 0x00, 0x04, 0x0a,
+ 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00,
+ 0x18, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x40, 0x0a,
+ 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x54, 0x0a, 0x00, 0x00, 0x40, 0x0a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00,
+ 0x8c, 0x0a, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0xb0, 0x0d,
+ 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x05, 0x00, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0xd4, 0x0a, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x80, 0x0b,
+ 0x00, 0x00, 0xa4, 0x0b, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xc4, 0x0a, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x0b, 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x0c, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x34, 0x0b, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x70, 0x0b, 0x00, 0x00,
+ 0x34, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x60, 0x0b,
+ 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x34, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x94, 0x0b, 0x00, 0x00,
+ 0x80, 0x0b, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
+ 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00,
+ 0xa4, 0x0b, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x0b,
+ 0x00, 0x00, 0xf4, 0x0b, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00, 0x00, 0xd0, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0c, 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x50, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x78, 0x0c, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0xb4, 0x0c, 0x00, 0x00,
+ 0x78, 0x0c, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x0c,
+ 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x78, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0c,
+ 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00,
+ 0x3c, 0x0d, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00, 0x2c, 0x0d, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x0d, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x54, 0x0d, 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x3c, 0x0d,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00,
+ 0x54, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x7c, 0x0d,
+ 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x3c, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x0d,
+ 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x64, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xc8, 0x0d,
+ 0x00, 0x00, 0xec, 0x0d, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xdc, 0x0d, 0x00, 0x00, 0xc8, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x64, 0x0e, 0x00, 0x00,
+ 0x28, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x54, 0x0e,
+ 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x28, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x0d,
+ 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00,
+ 0xc4, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xb4, 0x0e, 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xd8, 0x0e, 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_ENGLISH__
#if defined(__PV_LANGUAGE_SPANISH__)
// wake-word = hola computadora
static const uint8_t KEYWORD_ARRAY[] = {
- 0xd4, 0xbc, 0x3c, 0xc6, 0x53, 0xe3, 0xa4, 0xc2, 0x2d, 0xa6, 0x98, 0x5b, 0xeb, 0x97, 0xc3, 0xff, 0xec, 0x5f,
- 0xec, 0x07, 0x3a, 0x72, 0x68, 0x85, 0x7d, 0x38, 0xa6, 0x67, 0x39, 0x16, 0x8d, 0xf4, 0x30, 0x8e, 0x79, 0x02,
- 0x5b, 0x65, 0xbc, 0xb7, 0x93, 0x5d, 0x90, 0x8c, 0x4c, 0x91, 0xac, 0x51, 0x10, 0xc5, 0xf7, 0x5a, 0xd6, 0x69,
- 0x1f, 0x8d, 0xb1, 0x2a, 0xbc, 0xfc, 0x71, 0xb7, 0x1e, 0x94, 0xab, 0x26, 0xb7, 0x97, 0x5c, 0x70, 0x49, 0x1e,
- 0x0f, 0x33, 0x36, 0xa0, 0xfb, 0x84, 0xbb, 0x56, 0x3d, 0xb7, 0x22, 0xc9, 0x6b, 0x1b, 0xf8, 0x33, 0x51, 0xd9,
- 0x83, 0xd7, 0x2d, 0x44, 0x2f, 0x89, 0x07, 0x1f, 0x41, 0x75, 0xb1, 0xbc, 0xde, 0x21, 0xa1, 0xac, 0x8b, 0x40,
- 0xf5, 0x56, 0xa0, 0xe7, 0xab, 0x98, 0xf3, 0x03, 0x98, 0x27, 0x10, 0xd3, 0xb2, 0x6f, 0xa0, 0x27, 0x5c, 0x3e,
- 0xa8, 0x08, 0x79, 0xea, 0xf4, 0xce, 0x73, 0xf8, 0x59, 0xc9, 0xf5, 0xf3, 0xf0, 0x60, 0x2d, 0xcc, 0xc1, 0x37,
- 0x12, 0x97, 0x64, 0x0d, 0xa8, 0xf3, 0x7b, 0xcb, 0x76, 0xf0, 0x9e, 0x86, 0xe5, 0x06, 0x15, 0xd7, 0x2a, 0xeb,
- 0xd4, 0x0a, 0xd7, 0x29, 0xde, 0x06, 0x55, 0xdc, 0x7d, 0xd0, 0xd4, 0xc1, 0x44, 0x25, 0x53, 0x30, 0xd7, 0x17,
- 0xe9, 0x13, 0x2a, 0x52, 0x66, 0x6c, 0x1a, 0x8a, 0x66, 0xfd, 0xa9, 0x6d, 0x49, 0x08, 0xf0, 0x10, 0x49, 0x76,
- 0xc5, 0xd8, 0xce, 0xa9, 0x3c, 0xe5, 0xd6, 0xa5, 0xd3, 0xc3, 0x0d, 0x65, 0xa2, 0x3a, 0x1c, 0xf2, 0x37, 0xa1,
- 0xab, 0x2d, 0x26, 0x31, 0xb0, 0x4d, 0xe3, 0xd1, 0xd0, 0xfd, 0x88, 0xf5, 0x7e, 0x1a, 0xd7, 0x15, 0xf3, 0x3b,
- 0xb7, 0xdd, 0xb8, 0x4c, 0x86, 0x99, 0xf0, 0xf3, 0xb1, 0x26, 0x9d, 0x24, 0xf8, 0xd8, 0xdb, 0x4b, 0x5b, 0xc3,
- 0x91, 0x05, 0x27, 0xb3, 0x21, 0x48, 0x9c, 0x8a, 0x1b, 0x95, 0xce, 0xee, 0x7b, 0x54, 0xa2, 0xc4, 0xe8, 0x44,
- 0xe9, 0x1f, 0x1a, 0xa9, 0xff, 0x8e, 0xd1, 0x06, 0xf4, 0xab, 0x8f, 0x4f, 0x6a, 0xec, 0x47, 0xf5, 0x65, 0x7f,
- 0x19, 0x98, 0x6b, 0xbf, 0xfe, 0x51, 0x0b, 0x04, 0x38, 0xb7, 0x76, 0x63, 0x87, 0xb0, 0x90, 0x53, 0x7b, 0x49,
- 0x37, 0x25, 0xe1, 0x2a, 0x67, 0x4b, 0xcd, 0x5d, 0x71, 0x99, 0x1e, 0x50, 0xdf, 0xc9, 0x76, 0xd2, 0x84, 0xda,
- 0x0c, 0xed, 0x88, 0x1d, 0x10, 0xf3, 0x10, 0xcd, 0xfa, 0x73, 0x8d, 0x0c, 0xaa, 0x30, 0xc0, 0xd5, 0x10, 0xb6,
- 0x9d, 0xdb, 0x32, 0x41, 0x6d, 0x71, 0x9e, 0x70, 0xbb, 0xe4, 0x61, 0x87, 0xb0, 0x3a, 0xa5, 0x8b, 0x61, 0xe4,
- 0x18, 0x9a, 0x14, 0x12, 0x77, 0x52, 0x05, 0xbd, 0xd1, 0x0a, 0x75, 0x52, 0x7b, 0xe3, 0xf8, 0xca, 0xee, 0xe0,
- 0xcc, 0xb4, 0xe3, 0x17, 0xec, 0x4b, 0x35, 0x0b, 0x1b, 0x2e, 0x35, 0x83, 0x72, 0x48, 0x8f, 0x7e, 0x2a, 0x2a,
- 0x72, 0x19, 0x71, 0x1b, 0x42, 0x4e, 0x05, 0x31, 0x5d, 0x04, 0xd4, 0xb8, 0xb0, 0x09, 0xd9, 0x6d, 0x6a, 0x85,
- 0xa0, 0xfc, 0xe8, 0x4a, 0x96, 0x4d, 0xed, 0x7e, 0xd7, 0x43, 0x61, 0x17, 0x92, 0x80, 0xa1, 0x94, 0x5b, 0x5b,
- 0xd1, 0x21, 0xe2, 0xa8, 0x7e, 0xd8, 0x55, 0x74, 0x31, 0x65, 0xc8, 0xab, 0x11, 0x43, 0x33, 0xdf, 0xa2, 0x9d,
- 0x3d, 0x39, 0xdf, 0x22, 0x15, 0xac, 0x8a, 0x4b, 0x15, 0xcc, 0xa0, 0x24, 0x94, 0x6d, 0x41, 0x68, 0x18, 0xe2,
- 0xc9, 0x68, 0x13, 0xf3, 0xfa, 0x53, 0xc3, 0xe9, 0xa4, 0x98, 0x45, 0x68, 0x77, 0x7f, 0x60, 0x4a, 0x81, 0x98,
- 0x8b, 0xae, 0xe2, 0x86, 0x60, 0x9d, 0xce, 0x79, 0x9e, 0x1c, 0xc4, 0xa4, 0xc3, 0x7f, 0x7f, 0x10, 0x1b, 0x0a,
- 0x30, 0x6b, 0x6c, 0x50, 0x9a, 0x12, 0xb2, 0x46, 0x75, 0xc5, 0xb3, 0xb8, 0x7b, 0x89, 0x6e, 0xe4, 0xf5, 0xa7,
- 0x52, 0x39, 0x25, 0x48, 0xc2, 0xea, 0x6a, 0xa8, 0x25, 0xe2, 0xe8, 0xbd, 0xf1, 0xe5, 0x1c, 0x4e, 0xae, 0x5f,
- 0xac, 0x26, 0xe9, 0x95, 0xd3, 0x58, 0x3f, 0x8a, 0x67, 0x62, 0x85, 0xa6, 0xb0, 0x1d, 0xa9, 0xe7, 0x31, 0xf5,
- 0x5d, 0x31, 0x25, 0x88, 0x40, 0x7f, 0x83, 0xa6, 0x56, 0x6f, 0xbd, 0x2d, 0x87, 0xd9, 0x97, 0x81, 0x43, 0xc0,
- 0xa0, 0xa6, 0x6b, 0xfe, 0xae, 0x98, 0x7a, 0xc9, 0x8a, 0x00, 0x51, 0xff, 0x8a, 0x47, 0x33, 0x0b, 0x88, 0x95,
- 0xff, 0xa8, 0x11, 0xee, 0x4c, 0x43, 0xf4, 0x89, 0xdf, 0x4d, 0xf5, 0x07, 0xbb, 0x7e, 0x61, 0xaa, 0xcf, 0xd2,
- 0x85, 0xf6, 0xba, 0x20, 0x91, 0xc6, 0x3f, 0x3f, 0xc4, 0xb1, 0xf6, 0xb8, 0x03, 0x54, 0x68, 0x65, 0xef, 0x30,
- 0x59, 0xb3, 0xac, 0xb2, 0xe8, 0x15, 0x43, 0x09, 0x45, 0xc7, 0x07, 0x46, 0x35, 0x17, 0x9a, 0x75, 0x53, 0x5e,
- 0x98, 0x69, 0xf6, 0xf2
+ 0x1c, 0xce, 0x7c, 0xd9, 0xc2, 0x23, 0x16, 0x70, 0x85, 0xf7, 0x93, 0x1a, 0x59, 0xd0, 0x62, 0xce, 0xac, 0x16,
+ 0xd1, 0x3e, 0x05, 0x02, 0x6d, 0x26, 0x65, 0x81, 0xc9, 0xd5, 0xae, 0x93, 0x30, 0x29, 0x02, 0x0a, 0x0d, 0xc3,
+ 0xc9, 0xf7, 0x80, 0xfc, 0x2a, 0x2c, 0x76, 0x68, 0xb3, 0x78, 0x70, 0x64, 0xf6, 0xbb, 0xbe, 0x84, 0xa3, 0xae,
+ 0x4a, 0x9b, 0x96, 0x84, 0x8e, 0x5b, 0xc9, 0x8d, 0x80, 0x6a, 0xd9, 0xf8, 0x20, 0x9a, 0xcf, 0x55, 0x23, 0x33,
+ 0x7c, 0x6a, 0x99, 0x16, 0x0f, 0x04, 0x87, 0x41, 0xef, 0x3f, 0x0f, 0x20, 0xe0, 0xe6, 0xdd, 0x1f, 0x62, 0x0a,
+ 0x0c, 0x13, 0x0d, 0x59, 0x52, 0x1d, 0x6d, 0x59, 0x95, 0xec, 0xf8, 0xe1, 0x08, 0x17, 0x5a, 0xaf, 0x87, 0x6e,
+ 0xdf, 0x24, 0x2f, 0x39, 0x8e, 0xcc, 0x90, 0xbd, 0xd3, 0x3d, 0x7d, 0xba, 0x07, 0xcd, 0xe3, 0x0a, 0xf3, 0x96,
+ 0x31, 0x13, 0x3d, 0xa1, 0x0b, 0x00, 0xb2, 0x54, 0x41, 0xbe, 0x1b, 0x83, 0x5d, 0xbc, 0x44, 0x7c, 0x36, 0x69,
+ 0xd1, 0x87, 0x24, 0xf8, 0x5c, 0x72, 0xe8, 0x65, 0x65, 0x49, 0xae, 0xee, 0xe2, 0xf9, 0x13, 0x40, 0x18, 0x4a,
+ 0xaf, 0x4e, 0xf8, 0xe4, 0x65, 0xe1, 0x4e, 0x5a, 0xb9, 0xcc, 0x32, 0xab, 0x37, 0xfe, 0x82, 0x54, 0xec, 0x7c,
+ 0xb7, 0x1d, 0x09, 0x66, 0x59, 0xd5, 0x47, 0x3f, 0x71, 0xa2, 0xb8, 0x74, 0xe6, 0x41, 0x8b, 0x63, 0x0e, 0xcc,
+ 0xd7, 0xc8, 0x56, 0xa5, 0xe1, 0x06, 0x81, 0x95, 0x45, 0x5c, 0x20, 0x82, 0xdb, 0xe2, 0x5a, 0xba, 0xc6, 0x16,
+ 0x4f, 0x08, 0x51, 0xb5, 0xcd, 0x0c, 0x2f, 0x7c, 0x96, 0xff, 0xfc, 0x5e, 0x21, 0xc0, 0x14, 0xf0, 0x50, 0xa6,
+ 0x7a, 0x09, 0xbb, 0xcf, 0x4b, 0x14, 0x39, 0xc0, 0x03, 0xd3, 0x2c, 0x6a, 0x45, 0xfe, 0xf8, 0xea, 0x77, 0xd4,
+ 0x2b, 0xfb, 0x24, 0x58, 0xd1, 0x73, 0x93, 0x13, 0x3a, 0x32, 0x16, 0x3a, 0xb5, 0x64, 0x97, 0x6f, 0xc7, 0xa6,
+ 0x71, 0xee, 0x47, 0x5a, 0xeb, 0x66, 0xad, 0xb3, 0xf5, 0x1f, 0x0c, 0x14, 0x3a, 0xfc, 0xb4, 0x53, 0xc2, 0xaa,
+ 0xf6, 0x77, 0x1d, 0x0c, 0x6a, 0x6c, 0x78, 0xb8, 0xb5, 0x7d, 0xd2, 0x8b, 0x97, 0x04, 0xbe, 0x0c, 0xa9, 0xa8,
+ 0x6c, 0x48, 0x6b, 0x92, 0x14, 0x44, 0x3c, 0x6e, 0x64, 0x95, 0x0f, 0xf6, 0x0f, 0x5d, 0x74, 0xf8, 0xa6, 0xc4,
+ 0xf4, 0x26, 0x04, 0x38, 0xb5, 0x79, 0x4a, 0xe5, 0x47, 0xb2, 0xc6, 0x5a, 0x82, 0xd6, 0xfd, 0x19, 0xfd, 0xd2,
+ 0xef, 0x7b, 0x29, 0xc1, 0x2c, 0xc7, 0x03, 0xff, 0xa1, 0xfd, 0xf5, 0x91, 0x87, 0x4f, 0x8a, 0x68, 0x40, 0xdd,
+ 0xb4, 0x6d, 0x64, 0xb4, 0x8b, 0x0c, 0x87, 0x54, 0x68, 0x1b, 0xc3, 0x12, 0x52, 0xb9, 0x1f, 0x0d, 0x0b, 0x4b,
+ 0x5a, 0x88, 0x79, 0x6e, 0xdc, 0x1d, 0x45, 0x37, 0xca, 0x44, 0x18, 0xb6, 0x9f, 0x2e, 0xdc, 0x24, 0xcc, 0xb2,
+ 0x20, 0x66, 0x4e, 0x88, 0x4f, 0x3c, 0x1e, 0x52, 0x02, 0x30, 0x58, 0xb7, 0x7b, 0xaa, 0xf4, 0x95, 0xee, 0xbe,
+ 0xbc, 0xbf, 0x2a, 0x8b, 0xe8, 0xff, 0x14, 0xb5, 0xad, 0xc2, 0xfc, 0x1d, 0xef, 0xc8, 0x56, 0x4f, 0xb5, 0xa5,
+ 0x6e, 0xa4, 0x47, 0x27, 0xaa, 0x12, 0xf6, 0x8d, 0x85, 0xc9, 0xb0, 0x16, 0xbb, 0xed, 0x63, 0x64, 0xa3, 0x4d,
+ 0x71, 0x03, 0x2e, 0xa8, 0xf3, 0xdf, 0x1e, 0x03, 0x45, 0x96, 0xae, 0x71, 0xad, 0x0e, 0xf4, 0x1a, 0xec, 0x59,
+ 0xc5, 0x35, 0x7f, 0x4f, 0xbb, 0x30, 0x36, 0xff, 0x81, 0x6f, 0x17, 0xe6, 0xba, 0x1a, 0xb6, 0xb0, 0xfa, 0x52,
+ 0x45, 0xec, 0xd8, 0x8e, 0x2e, 0xef, 0x4c, 0x56, 0xba, 0x3d, 0xa8, 0x84, 0x57, 0xa1, 0x81, 0x08, 0xe0, 0x80,
+ 0x75, 0x01, 0xf3, 0x09, 0x93, 0x14, 0xd4, 0x19, 0xc4, 0xe9, 0x1c, 0xf8, 0x0e, 0xa9, 0x43, 0x02, 0xa3, 0x4d,
+ 0x21, 0xa0, 0x37, 0x35, 0x76, 0x49, 0xb5, 0xf0, 0x2b, 0x7d, 0xd8, 0x65, 0xee, 0x6a, 0xb6, 0x0a, 0x64, 0xe3,
+ 0x16, 0x1c, 0xfa, 0x49, 0x29, 0x6f, 0x4a, 0x0f, 0xab, 0x2c, 0xbc, 0x33, 0x95, 0x6d, 0xcf, 0xc7, 0x0a, 0x7c,
+ 0x4a, 0x89, 0xbc, 0x2d, 0x53, 0x06, 0x84, 0xac, 0x7a, 0x29, 0x8f, 0xea, 0xed, 0x17, 0xbb, 0x11, 0xc3, 0x73,
+ 0x68, 0x4f, 0x42, 0xe7, 0x3a, 0xf6, 0x73, 0x16, 0x00, 0xa8, 0xb9, 0x03, 0x65, 0xb1, 0xb6, 0x37, 0x22, 0x0c,
+ 0xff, 0x54, 0x8a, 0xe5, 0xf4, 0xd0, 0xe9, 0xa9, 0x85, 0x4d, 0x17, 0x6c, 0x21, 0xad, 0x04, 0x72, 0x34, 0x11,
+ 0xfc, 0x35, 0x04, 0xac, 0x46, 0xc4, 0xa0, 0xe9, 0x9e, 0x1d, 0x65, 0x6f, 0xf5, 0xcb, 0xd1, 0xe3, 0x28, 0xcf,
+ 0x5b, 0xc3, 0x9f, 0xa8, 0x7a, 0x59, 0x94, 0xb6, 0xca, 0xbd, 0x32, 0x79, 0x72, 0x41, 0x57, 0xfb, 0x03, 0x21,
+ 0x4d, 0x2a, 0x6c, 0x7c
};
// context = iluminación_inteligente
@@ -986,47 +1272,144 @@ static const uint8_t CONTEXT_ARRAY[] = {
#endif // __PV_LANGUAGE_SPANISH__
+#if defined(__PV_LANGUAGE_FARSI__)
+
+// wake-word = سلام رایانه
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x59, 0x31, 0x28, 0x1e, 0xd6, 0xd3, 0x96, 0x5b, 0xcc, 0x53, 0x9b, 0x26, 0xf2, 0xdd, 0x74, 0xe3, 0xc0, 0x07,
+ 0x05, 0xb1, 0x68, 0x0c, 0x1e, 0x4c, 0x73, 0xac, 0x70, 0xe6, 0x4c, 0x78, 0x98, 0xcb, 0x8e, 0x6e, 0xe2, 0x25,
+ 0x3c, 0xfa, 0xf6, 0x01, 0x0d, 0x8a, 0x82, 0xdd, 0xa8, 0xed, 0x0f, 0x61, 0x9b, 0x18, 0x31, 0xa5, 0x64, 0x52,
+ 0x81, 0xf6, 0xce, 0xc6, 0x7b, 0xf2, 0xb6, 0x49, 0x4f, 0x59, 0x12, 0x86, 0x72, 0xe7, 0xd8, 0x6a, 0xab, 0x54,
+ 0x67, 0x47, 0xbf, 0x29, 0xa0, 0x0e, 0x93, 0x52, 0x9d, 0x76, 0x12, 0x26, 0x1a, 0xb7, 0x36, 0x62, 0xd4, 0xc8,
+ 0x4f, 0x27, 0x62, 0x2f, 0x6e, 0x4e, 0xf8, 0xf6, 0x44, 0x7c, 0x19, 0x36, 0xb0, 0x62, 0x18, 0x04, 0x30, 0xd4,
+ 0x6e, 0x3f, 0xa9, 0x4b, 0xcd, 0xaa, 0x71, 0x23, 0xef, 0xcb, 0x2a, 0x8c, 0x56, 0x6a, 0x5e, 0x18, 0x1e, 0x0a,
+ 0xb1, 0xed, 0x1c, 0x5a, 0xeb, 0x52, 0x83, 0xd6, 0xb2, 0x8c, 0x48, 0xeb, 0x5f, 0x3f, 0xfb, 0xdf, 0x37, 0x80,
+ 0xf5, 0xb0, 0xd4, 0x5b, 0x50, 0x2d, 0x68, 0x8d, 0x84, 0x25, 0xf8, 0x93, 0xa3, 0x52, 0xec, 0x3a, 0x6d, 0x36,
+ 0x2d, 0xa4, 0xb0, 0x25, 0xf2, 0x08, 0xb3, 0x23, 0x79, 0x36, 0x52, 0x04, 0x1b, 0x1d, 0x95, 0x90, 0xb0, 0x6c,
+ 0xdc, 0x5b, 0xe5, 0xb4, 0xd4, 0x42, 0x69, 0x6b, 0xda, 0xad, 0x1f, 0xca, 0xe5, 0xa0, 0xee, 0x90, 0xdb, 0xdf,
+ 0x26, 0xd6, 0x94, 0xcc, 0x13, 0xe5, 0x07, 0xfc, 0x94, 0x34, 0x7e, 0x38, 0x52, 0x67, 0xe6, 0x2a, 0x39, 0xc0,
+ 0xd3, 0x72, 0xc5, 0x2b, 0x0c, 0x6f, 0xcf, 0x57, 0x7a, 0xd3, 0x84, 0xa2, 0x17, 0xf8, 0xea, 0xf0, 0x96, 0xce,
+ 0xa4, 0xdf, 0xa9, 0xe8, 0xa9, 0x2f, 0xea, 0x20, 0xa7, 0xc0, 0xba, 0xee, 0xb0, 0x2b, 0x42, 0xf8, 0x15, 0x76,
+ 0x55, 0x4f, 0x99, 0xb7, 0x01, 0x78, 0xc8, 0xaf, 0x69, 0xa3, 0xad, 0x13, 0xf7, 0x6e, 0x1c, 0xa7, 0xe8, 0x13,
+ 0x3c, 0x3d, 0x1e, 0xd8, 0x8b, 0x8c, 0xc5, 0x34, 0x7c, 0x11, 0x33, 0xae, 0x67, 0x14, 0x64, 0x68, 0x1f, 0xf8,
+ 0x95, 0x66, 0x4a, 0x47, 0xde, 0x58, 0x3a, 0x48, 0x09, 0xad, 0x43, 0xe1, 0x59, 0x71, 0xf6, 0xf1, 0x87, 0xc4,
+ 0x45, 0xd2, 0xf7, 0x62, 0x0c, 0x33, 0xda, 0xa2, 0x77, 0x20, 0x15, 0x45, 0x58, 0x0a, 0xb0, 0x4c, 0x33, 0xe4,
+ 0x33, 0x89, 0xb7, 0x00, 0xa7, 0x94, 0x82, 0xd2, 0x47, 0xae, 0x9b, 0x60, 0xbd, 0x4f, 0xe3, 0xca, 0x7e, 0xc0,
+ 0xc4, 0xcb, 0x8a, 0x9d, 0x8c, 0x15, 0x81, 0x87, 0xd7, 0x4e, 0xec, 0x00, 0x72, 0xe4, 0x1c, 0xd0, 0xb3, 0x41,
+ 0xd2, 0x40, 0x33, 0xca, 0xbc, 0xbc, 0x80, 0x4f, 0x64, 0x3d, 0x32, 0x0f, 0x86, 0x4b, 0x3f, 0x74, 0x17, 0x4b,
+ 0x35, 0xe1, 0x8a, 0x23, 0xc6, 0xcf, 0xca, 0x51, 0x0a, 0xed, 0xdf, 0x4b, 0x3b, 0x5b, 0xa3, 0xfb, 0x98, 0x0e,
+ 0xe4, 0x27, 0x69, 0xfa, 0x14, 0xb7, 0x06, 0x62, 0x10, 0x93, 0x17, 0x0d, 0x85, 0xeb, 0xf0, 0xd7, 0x8e, 0x33,
+ 0xfb, 0x26, 0x1b, 0x57, 0x94, 0xe4, 0x15, 0x9b, 0x47, 0xae, 0xd1, 0x32, 0x66, 0x92, 0x0b, 0x7d, 0x90, 0xc2,
+ 0x7d, 0xde, 0x5a, 0x12, 0x71, 0x25, 0xa8, 0x77, 0x8f, 0x71, 0xf2, 0x14, 0x4f, 0xf0, 0xaf, 0x5d, 0x6d, 0x71,
+ 0xd8, 0xa4, 0x94, 0xc7, 0x1f, 0x5e, 0x21, 0x3a, 0x59, 0x44, 0x03, 0x92, 0xb0, 0xdc, 0xef, 0x06, 0x00, 0x45,
+ 0x78, 0x0e, 0xc6, 0x87, 0xb0, 0x7b, 0xf3, 0xd4, 0xcb, 0x36, 0xa1, 0xe4, 0xda, 0x24, 0x6c, 0x6b, 0x73, 0xb1,
+ 0xfe, 0x72, 0xf4, 0x9b, 0x86, 0x66, 0xf2, 0x2f, 0x37, 0x0e, 0xd3, 0x35, 0x2a, 0xcd, 0xe1, 0xa5, 0x28, 0xba,
+ 0xcc, 0xb7, 0xd8, 0x13, 0x84, 0x4b, 0xa9, 0xa7, 0x29, 0x46, 0x2e, 0x5c, 0x58, 0x1e, 0x4f, 0x29, 0xda, 0x64,
+ 0x7d, 0xd7, 0x5f, 0x7c, 0x1d, 0xc2, 0x34, 0x53, 0xb8, 0xb8, 0xd9, 0x14, 0xb8, 0x0b, 0x65, 0xa1, 0x2c, 0x89,
+ 0x72, 0x46, 0x29, 0x7a, 0x07, 0xba, 0x7d, 0x53, 0xf3, 0x88, 0x41, 0x15, 0xa2, 0xa4, 0x85, 0xa2, 0x94, 0x5a,
+ 0xd3, 0x94, 0xef, 0xf2, 0x27, 0x9e, 0x04, 0xc8, 0x96, 0x4c, 0x46, 0xfe, 0xf3, 0x8b, 0x55, 0xb6, 0xce, 0xbc,
+ 0xc0, 0x71, 0xba, 0xd8, 0x3c, 0xd9, 0x6c, 0x7c, 0xe2, 0xf3, 0x40, 0x6f, 0xec, 0x09, 0x55, 0x5e, 0x9a, 0xb9,
+ 0xdf, 0x9b, 0x05, 0x21, 0xd0, 0x64, 0x9c, 0x22, 0x2d, 0x10, 0x5d, 0xdc, 0x20, 0x63, 0x1b, 0x2d, 0x9a, 0x89,
+ 0x46, 0xf2, 0x3e, 0xb2, 0xb5, 0x49, 0x96, 0x24, 0x79, 0x89, 0x92, 0xf4, 0xd6, 0xee, 0xf1, 0x8d, 0xb6, 0xb2,
+ 0x60, 0x22, 0xda, 0x15, 0xb7, 0xa4, 0xfc, 0x09, 0xce, 0x3f, 0xe9, 0x47, 0x54, 0xad, 0xfe, 0x0a, 0x5c, 0xe2,
+ 0x77, 0x37, 0xab, 0x94, 0x01, 0x3d, 0x43, 0xac, 0xb6, 0x49, 0x39, 0x7d, 0xa0, 0x9f, 0x6e, 0xde, 0x54, 0x79,
+ 0x6f, 0xdd, 0x25, 0xcc, 0x5e, 0xc9, 0x68, 0xbe, 0x08, 0x73, 0x81, 0xe8, 0x42, 0x61, 0x7d, 0xe7, 0x07, 0xbd,
+ 0x05, 0x2c, 0x36, 0x54, 0xb1, 0x17, 0xd4, 0xe0, 0xe2, 0x8c, 0x3d, 0xe1, 0x58, 0xb1, 0xd4, 0x0f, 0x80, 0x7d,
+ 0x1f, 0x97, 0x00, 0xf6, 0x02, 0xca, 0x1b, 0xbf, 0x83, 0x5d, 0xa0, 0x50, 0x44, 0x88, 0xc8, 0x45, 0x36, 0x89,
+ 0xc0, 0x73, 0x80, 0x9b, 0x62, 0x36, 0x4a, 0xdc, 0xfa, 0x94, 0x13, 0x86, 0x86, 0x64, 0x90, 0xbc, 0xa4, 0xae,
+ 0xa9, 0xbe, 0xd5, 0x73, 0xb5, 0x11, 0x76, 0x46, 0x97, 0x48, 0x2f, 0x3f, 0x3f, 0xc5, 0x6c, 0xba, 0x5b, 0xfa,
+ 0xda, 0x89, 0xa2, 0x94, 0xac, 0xf9, 0x8a, 0x71, 0x0c, 0xbc, 0x5a, 0x0c, 0x05, 0x70, 0x1b, 0xd4, 0xbb, 0x38,
+ 0xc8, 0xf8, 0xa0, 0x72, 0xd7, 0x92, 0xfa, 0x2d, 0x2c, 0x4d, 0x24, 0xf9, 0x96, 0x71, 0x5d, 0x48, 0x20, 0xc2,
+ 0xb8, 0x06, 0x6d, 0x01, 0x3a, 0x2d, 0xc3, 0x92, 0x3a, 0x44, 0x13, 0xdb, 0xc9, 0x42, 0x40, 0x71, 0xa1, 0x43,
+ 0x99, 0x75, 0x86, 0x30, 0xc3, 0x90, 0xfb, 0x95, 0x73, 0x1f, 0x8c, 0xc6, 0x43, 0x83, 0x8d, 0xc4, 0xdf, 0x18,
+ 0x9c, 0xdf, 0x1a, 0xf2, 0x98, 0xd8, 0x6c, 0x4c, 0x5c, 0x27, 0xb5, 0x7c, 0x2a, 0xab, 0xf2, 0xfe, 0x86, 0x1c,
+ 0xbc, 0x23, 0x37, 0x4d, 0xc8, 0x63, 0x10, 0xa5, 0x0f, 0xc9
+};
+
+// context = simple_context_fa
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x66, 0x61, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x60, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x20, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x63, 0x6f, 0x66, 0x66, 0x65,
+ 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd9, 0x82, 0xd9, 0x87, 0xd9, 0x88,
+ 0xd9, 0x87, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa8, 0xd8, 0xb1, 0xd9, 0x88,
+ 0x20, 0xd8, 0xa8, 0xd9, 0x87, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa2, 0xd8, 0xb4, 0xd9, 0xbe, 0xd8, 0xb2, 0xd8, 0xae, 0xd8, 0xa7, 0xd9, 0x86,
+ 0xd9, 0x87, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xda, 0xa9, 0xd9, 0x84, 0xd8,
+ 0xa7, 0xd8, 0xb3, 0x20, 0xd8, 0xaf, 0xd8, 0xb1, 0xd8, 0xb3, 0x22, 0x0a, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x26, 0x00,
+ 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0xd8, 0xa2, 0xd8, 0xb4, 0xd9, 0xbe, 0xd8, 0xb2, 0xd8, 0xae, 0xd8, 0xa7,
+ 0xd9, 0x86, 0xd9, 0x87, 0x00, 0xd8, 0xa8, 0xd8, 0xb1, 0xd9, 0x88, 0x00, 0xd8, 0xa8, 0xd9, 0x87, 0x00, 0xd9,
+ 0x82, 0xd9, 0x87, 0xd9, 0x88, 0xd9, 0x87, 0x00, 0xda, 0xa9, 0xd9, 0x84, 0xd8, 0xa7, 0xd8, 0xb3, 0x20, 0xd8,
+ 0xaf, 0xd8, 0xb1, 0xd8, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1d, 0x00,
+ 0x00, 0x00, 0x1d, 0x1f, 0x12, 0x01, 0x1c, 0x1b, 0x1d, 0x10, 0x06, 0x03, 0x11, 0x14, 0x11, 0x03, 0x07, 0x13,
+ 0x01, 0x09, 0x1a, 0x07, 0x0d, 0x06, 0x0e, 0x1d, 0x15, 0x04, 0x01, 0x14, 0x15, 0x00, 0x00, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x6d, 0x61, 0x6b, 0x65,
+ 0x5f, 0x63, 0x6f, 0x66, 0x66, 0x65, 0x65, 0x00, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_FARSI__
+
#if defined(__PV_LANGUAGE_FRENCH__)
// wake-word = bonjour ordinateur
static const uint8_t KEYWORD_ARRAY[] = {
- 0xef, 0x2e, 0x44, 0x7a, 0x25, 0x80, 0x58, 0x42, 0xb3, 0xf2, 0xde, 0xca, 0x89, 0xbc, 0x54, 0x67, 0xe9, 0xdf,
- 0x14, 0x87, 0x1e, 0xf4, 0x1e, 0xae, 0x47, 0xcc, 0x96, 0x3f, 0x74, 0x9b, 0x8b, 0x27, 0x49, 0x6d, 0x1e, 0x78,
- 0x66, 0x07, 0x83, 0x1f, 0xc3, 0x87, 0x5f, 0xf3, 0x0f, 0x4f, 0x6f, 0x00, 0xf5, 0x3e, 0x65, 0x9b, 0xe7, 0xcb,
- 0xe7, 0x55, 0xfa, 0xc1, 0x50, 0xdb, 0xdf, 0x7d, 0x9e, 0xb0, 0xf0, 0xf4, 0x2a, 0x54, 0x4b, 0xea, 0x37, 0xd2,
- 0xc7, 0x9e, 0x19, 0xd0, 0x14, 0xf0, 0x42, 0x80, 0xfd, 0x56, 0x5d, 0x23, 0x14, 0x3a, 0x43, 0x9a, 0xcf, 0xbb,
- 0x67, 0xc9, 0x2d, 0x2b, 0x58, 0x15, 0xb5, 0x31, 0x9a, 0xd7, 0xff, 0xd6, 0x7e, 0x27, 0x4b, 0x6d, 0x11, 0x57,
- 0x45, 0xaf, 0x54, 0x86, 0x5d, 0x97, 0xf9, 0x9f, 0xc0, 0x26, 0x53, 0xce, 0xed, 0x03, 0x69, 0x04, 0x9a, 0x34,
- 0x95, 0x58, 0x64, 0x84, 0x2d, 0x55, 0x49, 0xee, 0x05, 0xf4, 0xb2, 0x1e, 0x97, 0x08, 0x75, 0xe4, 0xd7, 0xd1,
- 0x81, 0x61, 0x4f, 0x7c, 0x1c, 0x40, 0x94, 0x60, 0x18, 0xfb, 0xf4, 0x2d, 0x68, 0xd0, 0xea, 0x1f, 0x0b, 0x38,
- 0xca, 0xcc, 0x91, 0x86, 0x5f, 0xef, 0xcb, 0x0e, 0x33, 0xd8, 0x3f, 0x1c, 0x13, 0x4f, 0x82, 0x74, 0xb7, 0x4c,
- 0xd6, 0x35, 0x07, 0x7c, 0x8f, 0x0f, 0x6d, 0xb9, 0x05, 0xe4, 0xea, 0xce, 0x91, 0x14, 0xc5, 0xf8, 0xee, 0xee,
- 0x36, 0x65, 0x58, 0xae, 0xdb, 0xd3, 0x05, 0xda, 0x52, 0x86, 0xa8, 0xe4, 0x90, 0xca, 0x99, 0xf8, 0x03, 0x94,
- 0xaa, 0x97, 0x02, 0xcc, 0x12, 0xe2, 0x70, 0x43, 0x06, 0x19, 0x23, 0xd7, 0xc7, 0x2b, 0x5f, 0x46, 0x01, 0x05,
- 0xea, 0x61, 0xf9, 0xc8, 0x9b, 0x1e, 0x18, 0x86, 0x8d, 0x8e, 0xb8, 0xab, 0x1b, 0x5b, 0x16, 0x4e, 0x4d, 0xc1,
- 0x16, 0x8b, 0xad, 0xd5, 0xf9, 0x18, 0x18, 0x7c, 0x77, 0x76, 0x43, 0x17, 0xd0, 0x10, 0x1e, 0x6a, 0xb3, 0x18,
- 0x18, 0xbe, 0x81, 0x5b, 0x31, 0x49, 0xef, 0xb6, 0xec, 0xfb, 0x04, 0xab, 0xa9, 0xb5, 0xb3, 0x66, 0xe2, 0xb4,
- 0x84, 0xc4, 0x64, 0xbd, 0x30, 0x89, 0x02, 0x42, 0x85, 0x25, 0xf7, 0x39, 0xdc, 0x10, 0x71, 0x1b, 0x2e, 0xdc,
- 0xd6, 0x2c, 0xc2, 0x68, 0x8e, 0x2c, 0xd0, 0x57, 0xc1, 0xdd, 0xc2, 0xb6, 0x3c, 0x71, 0xac, 0x64, 0x71, 0x62,
- 0x53, 0x51, 0x72, 0xb6, 0x04, 0x5a, 0x75, 0xe8, 0xb0, 0x15, 0x86, 0x17, 0x10, 0xaf, 0x95, 0x92, 0x43, 0xd4,
- 0xf3, 0x31, 0x4d, 0x8d, 0x8c, 0x13, 0xc8, 0xee, 0xac, 0xc2, 0x80, 0x7e, 0x05, 0xb2, 0x7a, 0x97, 0xd5, 0xe1,
- 0xf2, 0x52, 0x42, 0x3a, 0x80, 0x0d, 0x6c, 0x5b, 0x45, 0xb4, 0x8b, 0x4d, 0x53, 0x8d, 0xc1, 0x28, 0x85, 0xcb,
- 0xac, 0x71, 0xf4, 0x8d, 0x13, 0x34, 0x80, 0x6d, 0x1a, 0x81, 0x42, 0xe5, 0x30, 0x99, 0x55, 0x8d, 0x37, 0x37,
- 0xe7, 0x40, 0xc7, 0x14, 0x6a, 0x3d, 0xd6, 0x67, 0x3f, 0x9e, 0x51, 0xf3, 0xa1, 0x71, 0x12, 0x68, 0xba, 0xd7,
- 0x52, 0x3e, 0x41, 0x63, 0xee, 0x67, 0x85, 0xf5, 0xdf, 0x00, 0xe5, 0xa5, 0xe8, 0xe7, 0x58, 0x25, 0x65, 0x3d,
- 0xe3, 0x2e, 0xea, 0x9f, 0x19, 0x63, 0x8e, 0xd1, 0x71, 0x6c, 0x2f, 0x10, 0xe4, 0x8c, 0x5d, 0x4a, 0x3b, 0x92,
- 0x40, 0x3a, 0x9b, 0x55, 0x12, 0x2a, 0xc4, 0xff, 0x64, 0x52, 0x42, 0xab, 0xc5, 0x66, 0x8d, 0x5c, 0x71, 0x1b,
- 0x50, 0x1d, 0x8f, 0x8f, 0x8b, 0xa4, 0x31, 0x91, 0x9d, 0x23, 0xaf, 0x22, 0xa6, 0x50, 0x86, 0x0c, 0xab, 0x4c,
- 0x66, 0x3e, 0x65, 0x2b, 0xf7, 0xe3, 0xd2, 0x63, 0x72, 0x99, 0x60, 0x31, 0x31, 0xa5, 0x3c, 0x13, 0x4c, 0xa4,
- 0x8b, 0xc6, 0x10, 0x22, 0xef, 0x59, 0x8d, 0xb6, 0x34, 0x61, 0x1a, 0x06, 0x85, 0x52, 0xd2, 0xe5, 0x13, 0x23,
- 0x7a, 0x29, 0x26, 0x49, 0xfe, 0x62, 0xde, 0x06, 0xab, 0x53, 0x7b, 0xaf, 0xaf, 0x4a, 0x8d, 0x97, 0xd6, 0x57,
- 0x81, 0xbb, 0xd0, 0x8b, 0x43, 0x6e, 0xc3, 0x20, 0x4b, 0xe7, 0xec, 0x01, 0x1c, 0x47, 0x09, 0x7c, 0x01, 0xa7,
- 0x75, 0x8c, 0xc3, 0x91, 0x01, 0x10, 0xd9, 0x33, 0x61, 0xc7, 0x48, 0xad, 0xff, 0xf8, 0x82, 0x6a, 0xba, 0x34,
- 0xc6, 0x50, 0xf6, 0x3a, 0xa9, 0xc8, 0x6a, 0x82, 0x9a, 0xe0, 0x7f, 0xfb, 0xad, 0xc1, 0x84, 0x1f, 0x69, 0x1f,
- 0x96, 0xb2, 0xdc, 0x4b, 0xc8, 0xb3, 0x67, 0xb1, 0x42, 0x00, 0x71, 0xf4, 0xd6, 0x79, 0xfa, 0xce, 0x7f, 0xc2,
- 0xab, 0x90, 0x24, 0x89, 0x12, 0x13, 0x1d, 0x54, 0x7e, 0x4a, 0x4b, 0x09, 0xaa, 0xe0, 0x25, 0x9a, 0x98, 0x8f,
- 0x07, 0xc3, 0x4d, 0xaa, 0x08, 0x60, 0x59, 0x2d, 0xda, 0xed, 0x99, 0x3b, 0x45, 0xa1, 0x90, 0xe3, 0xd7, 0x6a,
- 0x05, 0xda, 0x92, 0x9b, 0xc3, 0x54, 0xed, 0x04, 0xbb, 0x36, 0xb1, 0x7f
+ 0xbb, 0x5c, 0xb1, 0xe7, 0xbd, 0xc8, 0x3c, 0xc7, 0xa4, 0xbe, 0x37, 0x23, 0xf5, 0xcc, 0xa2, 0x7a, 0x6f, 0x00,
+ 0x62, 0x72, 0x34, 0x7b, 0x73, 0xa2, 0xeb, 0xe8, 0x6c, 0x9d, 0x82, 0xfb, 0x48, 0x63, 0x03, 0xec, 0x3f, 0x7d,
+ 0xf0, 0xae, 0xe5, 0xb1, 0x47, 0x58, 0x8e, 0xf3, 0xbf, 0x7b, 0xd0, 0x77, 0x12, 0xd1, 0xc6, 0x54, 0xda, 0xc3,
+ 0x20, 0xca, 0x7b, 0x20, 0x30, 0xf1, 0x47, 0xe1, 0xdb, 0xca, 0x70, 0x0c, 0x86, 0x79, 0xe5, 0x02, 0x63, 0x7b,
+ 0x5f, 0x48, 0x2e, 0xb1, 0x44, 0x1d, 0xb6, 0xd3, 0x58, 0x2b, 0x7b, 0x50, 0xc8, 0x8a, 0xd4, 0xa0, 0x20, 0x7b,
+ 0x01, 0x0a, 0x84, 0x18, 0xb4, 0x3a, 0xe7, 0x49, 0x86, 0x70, 0xf3, 0xfc, 0x21, 0xc6, 0xc2, 0xeb, 0x65, 0x26,
+ 0x70, 0xa1, 0x7d, 0x7a, 0xeb, 0x26, 0xc2, 0x72, 0x20, 0xdd, 0x32, 0x6d, 0x5b, 0x1e, 0x9f, 0x97, 0x87, 0x7e,
+ 0x0b, 0xf3, 0x2c, 0x50, 0x2b, 0x95, 0x28, 0x62, 0xcd, 0x0f, 0xb5, 0xb5, 0x40, 0x26, 0x22, 0x48, 0xf7, 0x23,
+ 0x8f, 0x95, 0x86, 0xcc, 0xac, 0xcb, 0x80, 0xbb, 0xd8, 0xe2, 0xb4, 0xb7, 0x3c, 0x78, 0xe7, 0x87, 0xac, 0x04,
+ 0xca, 0x48, 0x54, 0xdb, 0xdd, 0x79, 0x23, 0xa3, 0x8a, 0xff, 0x87, 0x26, 0x88, 0x7a, 0x74, 0x64, 0xfa, 0xeb,
+ 0xa0, 0x0b, 0x28, 0x73, 0x43, 0xbe, 0xa7, 0x34, 0xbe, 0xab, 0x35, 0x86, 0x72, 0xac, 0xdb, 0xe9, 0x01, 0x10,
+ 0xb0, 0x6e, 0x7e, 0x75, 0x90, 0x5b, 0x6b, 0xaa, 0xfb, 0x16, 0x31, 0x22, 0x25, 0x1b, 0xa3, 0x48, 0x4d, 0x6a,
+ 0x63, 0xa9, 0x5e, 0x57, 0x33, 0xf2, 0x09, 0x26, 0x29, 0xa7, 0x70, 0xed, 0xd5, 0x15, 0x3f, 0x5e, 0x52, 0x07,
+ 0x03, 0x4b, 0x88, 0x30, 0xea, 0x95, 0x9e, 0xc9, 0xfd, 0x16, 0x94, 0xce, 0x6d, 0xb3, 0x3c, 0xb6, 0x9f, 0x92,
+ 0x21, 0x90, 0xc0, 0xdc, 0xcd, 0xb2, 0x48, 0x6b, 0x27, 0xc0, 0x0f, 0x52, 0xfc, 0x81, 0x99, 0xbd, 0x56, 0x82,
+ 0x67, 0xd4, 0x41, 0x14, 0x0e, 0x06, 0x51, 0xa4, 0x67, 0xba, 0xd0, 0x8f, 0x40, 0xd2, 0x6e, 0x7b, 0xb8, 0xb2,
+ 0x70, 0xd8, 0xb0, 0xf3, 0xf6, 0x16, 0x1a, 0xcd, 0x48, 0xa7, 0x6a, 0xec, 0x3b, 0xe2, 0x2d, 0x13, 0x61, 0xc0,
+ 0xaf, 0x16, 0x92, 0xae, 0xea, 0xea, 0x66, 0xb7, 0xa8, 0x60, 0xd1, 0x16, 0x0e, 0xdd, 0xcf, 0x5f, 0x86, 0xeb,
+ 0xcc, 0xff, 0xeb, 0x74, 0x18, 0x52, 0xbe, 0xc5, 0x58, 0x87, 0x01, 0xda, 0x06, 0x01, 0x91, 0x3c, 0x42, 0xc2,
+ 0xd7, 0x67, 0x5e, 0xe0, 0x74, 0xad, 0x06, 0x59, 0x6a, 0x48, 0x11, 0xb9, 0x61, 0xdc, 0xe2, 0xc8, 0x5c, 0x2b,
+ 0x24, 0x54, 0x95, 0xe7, 0x9f, 0x1b, 0x8b, 0x10, 0x44, 0x0a, 0x1d, 0x26, 0x07, 0xf0, 0x5c, 0xa6, 0x9d, 0x63,
+ 0x51, 0x51, 0x29, 0x09, 0xbd, 0x4a, 0xa1, 0xa2, 0x44, 0x8c, 0x9a, 0x90, 0xd6, 0x1b, 0x74, 0x63, 0x3f, 0xc4,
+ 0xb2, 0x4b, 0x88, 0x67, 0x70, 0xd9, 0x73, 0x3e, 0x29, 0x9b, 0x85, 0xd5, 0x9b, 0x1b, 0x58, 0xf8, 0xee, 0x40,
+ 0x03, 0x83, 0x35, 0xa2, 0xd5, 0x0f, 0x28, 0x40, 0x06, 0xbb, 0xfa, 0xf1, 0x20, 0xa9, 0xc5, 0x33, 0xe6, 0x6a,
+ 0x9d, 0x90, 0xc6, 0xf6, 0x78, 0xaf, 0x8f, 0xc6, 0x00, 0x56, 0xab, 0x64, 0x95, 0x8a, 0xe6, 0xf9, 0x65, 0xfe,
+ 0x7b, 0xa7, 0x75, 0x6b, 0x63, 0x39, 0x03, 0x86, 0xf9, 0xf7, 0x59, 0xf1, 0x56, 0x3a, 0xdb, 0xbd, 0xa3, 0x96,
+ 0xd8, 0xba, 0x8a, 0x46, 0x52, 0xbc, 0xd2, 0x98, 0x87, 0xda, 0xaa, 0xf3, 0x07, 0xcc, 0x10, 0x6c, 0xd5, 0xa7,
+ 0x63, 0xab, 0xc2, 0x2a, 0x2f, 0x62, 0x6b, 0x36, 0xcc, 0x38, 0x0d, 0xc6, 0xd8, 0xac, 0xb1, 0x65, 0x5b, 0x5a,
+ 0x10, 0xc5, 0x8e, 0xe9, 0xfb, 0x46, 0xea, 0xe5, 0xf5, 0xf8, 0xd5, 0x04, 0x9f, 0x0b, 0x4d, 0x98, 0x54, 0xdd,
+ 0xed, 0xb1, 0x35, 0x87, 0x1c, 0xd8, 0x99, 0xe4, 0x5e, 0xd2, 0x0d, 0xb3, 0x4c, 0x0f, 0x44, 0xd0, 0x10, 0x07,
+ 0x87, 0x17, 0xb6, 0x22, 0xe9, 0x2a, 0x70, 0x56, 0x07, 0x33, 0x3c, 0x93, 0xdb, 0x13, 0x4c, 0x2f, 0x17, 0xc0,
+ 0xf5, 0xe4, 0xaf, 0x60, 0x36, 0xd7, 0x61, 0xeb, 0x37, 0x64, 0x4d, 0xb3, 0x96, 0xc8, 0x7d, 0x76, 0x64, 0x98,
+ 0xc6, 0xc5, 0x64, 0x73, 0xeb, 0x11, 0x49, 0x57, 0xc9, 0x4e, 0x60, 0xe8, 0x28, 0x1b, 0x5f, 0x01, 0x5e, 0xff,
+ 0xbb, 0x2a, 0xf9, 0x1d, 0xa8, 0x15, 0x84, 0x5b, 0xb2, 0xd9, 0x68, 0x4f, 0x29, 0x95, 0xa5, 0x33, 0x2e, 0x84,
+ 0x43, 0x87, 0x35, 0x9e, 0x09, 0x2f, 0x07, 0x15, 0x4e, 0xcb, 0x5b, 0x0e, 0x1a, 0x4a, 0x5b, 0xcc, 0xe2, 0x98,
+ 0x63, 0x99, 0xa9, 0xe3, 0x42, 0xe4, 0xa6, 0x8e, 0xbf, 0xd4, 0xb9, 0x54, 0xd6, 0x27, 0xed, 0x0a, 0x73, 0xa7,
+ 0x8e, 0x39, 0xc6, 0x87, 0x8c, 0xc8, 0x5e, 0xda, 0xcd, 0xf1, 0x63, 0xaa
};
// context = éclairage_intelligent
@@ -1206,44 +1589,148 @@ static const uint8_t CONTEXT_ARRAY[] = {
#endif // __PV_LANGUAGE_FRENCH__
+#if defined(__PV_LANGUAGE_HINDI__)
+
+// wake-word = नमस्ते कंप्यूटर
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0xdc, 0xad, 0x59, 0xc4, 0xf5, 0xbf, 0xc7, 0x7a, 0xf7, 0xfa, 0x59, 0xd5, 0x41, 0x65, 0x7f, 0x25, 0x80, 0x0a,
+ 0x66, 0x99, 0x32, 0xb5, 0x28, 0xc3, 0x94, 0xa3, 0xcd, 0xdb, 0xd2, 0x80, 0x61, 0xd5, 0x90, 0x12, 0x09, 0x7e,
+ 0x4f, 0xc1, 0x43, 0xbc, 0x8e, 0x9c, 0x6c, 0x14, 0xbb, 0xe3, 0x48, 0x00, 0xfb, 0xc4, 0x98, 0x96, 0xd0, 0x56,
+ 0x0c, 0xc2, 0x4a, 0x64, 0xf5, 0x04, 0x81, 0xd2, 0x28, 0xda, 0x79, 0xba, 0x20, 0x67, 0xf0, 0xf5, 0x40, 0x1f,
+ 0x63, 0xf3, 0x5d, 0x1b, 0x4a, 0xc8, 0x75, 0xbc, 0x37, 0x00, 0xf1, 0x60, 0x6b, 0x58, 0xa8, 0x37, 0x90, 0x2f,
+ 0x37, 0x29, 0xe1, 0x15, 0xb2, 0xa9, 0x1a, 0x99, 0xa1, 0x5d, 0xbb, 0xf9, 0x0a, 0x9d, 0x9c, 0xa9, 0x69, 0x55,
+ 0xd6, 0xc2, 0x16, 0x46, 0xd6, 0x3d, 0x2a, 0xc6, 0xc4, 0xda, 0x0b, 0x7d, 0x1d, 0x3d, 0x4c, 0x70, 0x26, 0x8d,
+ 0xd9, 0x7a, 0xca, 0x94, 0x46, 0x3b, 0x92, 0xd5, 0x78, 0xee, 0xa6, 0xe3, 0x7b, 0xcb, 0x60, 0xe2, 0xd1, 0x89,
+ 0x32, 0x3f, 0x03, 0x89, 0x35, 0x97, 0x62, 0x64, 0xf1, 0xcb, 0xfe, 0x19, 0x6b, 0xf6, 0xba, 0xe4, 0xdf, 0x44,
+ 0xd4, 0xdc, 0x76, 0xd3, 0x72, 0x49, 0x84, 0xea, 0x54, 0x1d, 0x7b, 0x0f, 0xe3, 0x90, 0x75, 0x47, 0xaa, 0xb9,
+ 0xcf, 0xd0, 0xe4, 0xaf, 0xeb, 0xd2, 0xf9, 0xac, 0xef, 0xe6, 0x76, 0x25, 0x5c, 0x55, 0xc2, 0xbe, 0x13, 0xb9,
+ 0xb1, 0x68, 0x69, 0x3f, 0xd3, 0xb3, 0x25, 0xaa, 0x4a, 0xa1, 0xfd, 0xb8, 0x99, 0x08, 0x3a, 0x13, 0x4b, 0x7d,
+ 0xc8, 0x7a, 0xca, 0xee, 0x5d, 0xd5, 0xd9, 0xd1, 0xc0, 0xaf, 0x2c, 0x6c, 0xeb, 0x18, 0xac, 0x95, 0x69, 0x2a,
+ 0xe7, 0x92, 0x8b, 0x8a, 0xcf, 0xf6, 0x16, 0xd1, 0x44, 0x20, 0xc3, 0x76, 0xe2, 0x38, 0x8b, 0x18, 0xae, 0x85,
+ 0xd9, 0xc6, 0x73, 0x7b, 0xe2, 0xfa, 0xf0, 0x36, 0x2a, 0x9c, 0x9c, 0xb2, 0x0f, 0xc0, 0x8f, 0x7b, 0xaf, 0x3b,
+ 0xda, 0x7b, 0x02, 0x3b, 0x62, 0x1a, 0x9c, 0x16, 0xce, 0x2b, 0x36, 0x9c, 0x5e, 0x04, 0x7f, 0xa9, 0xd0, 0x53,
+ 0xc6, 0x7e, 0xd6, 0x9a, 0x17, 0xac, 0xdd, 0x2e, 0x25, 0x93, 0xc1, 0x72, 0x33, 0x80, 0xdf, 0x7d, 0x22, 0x08,
+ 0x90, 0xd3, 0xda, 0x6c, 0x19, 0x30, 0x9d, 0x3e, 0x90, 0xb4, 0x22, 0x0e, 0xbd, 0x91, 0xc6, 0xf4, 0xb1, 0x8d,
+ 0x0f, 0xf5, 0xa4, 0x93, 0x40, 0xfa, 0xbe, 0xbb, 0x11, 0x76, 0xe2, 0x45, 0x8a, 0x69, 0xd2, 0x65, 0xcb, 0x36,
+ 0xca, 0xa9, 0xc3, 0x06, 0x7d, 0xcb, 0x8f, 0x7b, 0x14, 0xf0, 0xef, 0x63, 0xba, 0xe3, 0x60, 0x24, 0x0d, 0x40,
+ 0xcf, 0x13, 0x47, 0x87, 0x6b, 0x7d, 0x66, 0x7a, 0xae, 0xe6, 0xf9, 0xd7, 0x56, 0x91, 0xad, 0xb1, 0x41, 0xb5,
+ 0x3a, 0x8c, 0x97, 0x04, 0x83, 0xe0, 0x30, 0x00, 0xe8, 0xf7, 0xfe, 0x76, 0xef, 0xff, 0x9c, 0x18, 0x50, 0xee,
+ 0xa8, 0x81, 0x9b, 0x7e, 0x68, 0x6c, 0x9a, 0x21, 0xda, 0x1b, 0xc0, 0xc9, 0xad, 0x07, 0x6c, 0x1b, 0x26, 0x38,
+ 0x78, 0xab, 0x19, 0x1f, 0xa6, 0x80, 0x98, 0x4c, 0x26, 0x4f, 0x51, 0xeb, 0xf2, 0xca, 0x29, 0x0d, 0x54, 0x16,
+ 0x4d, 0xb1, 0xf3, 0x43, 0x62, 0x2c, 0xa3, 0xc8, 0x27, 0xd8, 0xc4, 0x22, 0xc7, 0x42, 0xc5, 0x65, 0x17, 0x4d,
+ 0x8f, 0xbd, 0x98, 0x19, 0x77, 0xa0, 0x3f, 0x15, 0x77, 0x36, 0x7b, 0x9a, 0x79, 0xe7, 0x59, 0x7e, 0xe5, 0xa3,
+ 0x59, 0x66, 0x96, 0xf9, 0x7e, 0xf9, 0x4f, 0x8c, 0x02, 0xfe, 0x4b, 0x69, 0x01, 0x5d, 0xa8, 0x05, 0xe0, 0xeb,
+ 0xb4, 0x14, 0xdb, 0x50, 0x17, 0xb4, 0x94, 0xe5, 0xd3, 0x51, 0x79, 0xa6, 0xfd, 0xe5, 0x14, 0xea, 0xa5, 0x7d,
+ 0x10, 0x11, 0xa5, 0x09, 0xec, 0xec, 0x0c, 0xf8, 0x7e, 0x74, 0xd6, 0xe5, 0x58, 0x91, 0xd1, 0x36, 0x26, 0x44,
+ 0xe6, 0x09, 0xf9, 0xce, 0x41, 0x11, 0xb5, 0x0b, 0xee, 0xe0, 0xf6, 0xe9, 0xa7, 0x87, 0x35, 0x19, 0x11, 0x92,
+ 0x57, 0xc0, 0xa5, 0xfb, 0xb2, 0xd1, 0x44, 0x32, 0x22, 0x59, 0x6a, 0x70, 0x1c, 0xa2, 0xf4, 0x2b, 0x6d, 0x98,
+ 0x9f, 0x57, 0xfe, 0xfc, 0x4c, 0x50, 0x97, 0x82, 0xfe, 0xa1, 0xab, 0x16, 0x62, 0x33, 0xe9, 0x38, 0x29, 0x98,
+ 0xa3, 0x46, 0x75, 0xab, 0xd1, 0xda, 0x73, 0x95, 0x93, 0x87, 0xd8, 0x85, 0x3c, 0x7b, 0x9e, 0x76, 0x1c, 0x35,
+ 0xbb, 0x68, 0x92, 0x4d, 0xa6, 0x78, 0x90, 0x92, 0xcd, 0x82, 0xf7, 0x85, 0x30, 0x96, 0x0e, 0xa0, 0xce, 0x1e,
+ 0x8c, 0xf0, 0x0d, 0x34, 0xef, 0x60, 0xc6, 0xe1, 0x50, 0x48, 0x8a, 0x9b, 0xa1, 0xef, 0xc3, 0xb9, 0xc6, 0x2a,
+ 0x8f, 0xb7, 0xa6, 0xc4, 0x31, 0xa0, 0x55, 0xc1, 0xa8, 0x36, 0x7a, 0xe7, 0x4c, 0x2d, 0x56, 0x5d, 0x3e, 0xa3,
+ 0xda, 0x98, 0xb2, 0x40, 0x1f, 0x51, 0x8f, 0xf6, 0xdc, 0xf4, 0x49, 0x13, 0x4b, 0x05, 0x93, 0x8d, 0x4d, 0x29,
+ 0xa7, 0x5b, 0x27, 0x12, 0xcf, 0x24, 0x00, 0xad, 0x04, 0x18, 0x7c, 0x0f, 0x1f, 0x92, 0xfc, 0xed, 0xcc, 0x26,
+ 0x27, 0x6d, 0x2c, 0xa3, 0xc1, 0xde, 0x52, 0xf6, 0x22, 0x49, 0x85, 0x82, 0xfb, 0x89, 0x86, 0x10, 0xa3, 0x0c,
+ 0xb7, 0xd7, 0x0c, 0x30, 0x86, 0xc0, 0xe4, 0xd3, 0xc7, 0xb2, 0x1e, 0x89, 0x2a, 0x63, 0x53, 0x61, 0xe4, 0x37,
+ 0x1b, 0xfe, 0xd8, 0xf9, 0xcf, 0xdd, 0x9a, 0xcc, 0xef, 0x32, 0x98, 0x1a, 0x85, 0x95, 0x6b, 0x26, 0x50, 0x2b,
+ 0x45, 0xbf, 0x8a, 0x28, 0xfa, 0x7c, 0x59, 0x2c, 0x06, 0xf5, 0x7f, 0x0a, 0x75, 0xc7, 0x52, 0xce, 0x1c, 0x04,
+ 0x13, 0x66, 0x8b, 0x4d, 0x5c, 0x0d, 0x20, 0x8a, 0x75, 0x49, 0xf7, 0x9e, 0x2b, 0x47, 0x40, 0x22, 0x58, 0x32,
+ 0x14, 0x90, 0xc7, 0xa3, 0xc1, 0x0d, 0x68, 0x41, 0x63, 0xce, 0xab, 0x91, 0x60, 0x14, 0x02, 0x33, 0x51, 0x98,
+ 0xef, 0x79, 0xa7, 0x58, 0xa8, 0x91, 0x5c, 0xcd, 0x8d, 0xf1, 0x57, 0x4c, 0xa3, 0x45, 0x9b, 0x3c, 0x95, 0x58,
+ 0x9f, 0x58, 0xb2, 0x43, 0x74, 0xc0, 0x0f, 0x4e, 0x68, 0xa5, 0xd3, 0xbb, 0xa9, 0x47
+};
+
+// context = simple_context_hi
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x68, 0x69, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0,
+ 0xa4, 0xbe, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70,
+ 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4,
+ 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x20, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95, 0x20,
+ 0x24, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x20, 0xe0, 0xa4, 0xa6,
+ 0xe0, 0xa5, 0x8b, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0,
+ 0xa4, 0xb8, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0,
+ 0xa4, 0xac, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5,
+ 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87,
+ 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
+ 0x3b, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95,
+ 0x00, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xa6, 0xe0,
+ 0xa5, 0x8b, 0x00, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0, 0xa4, 0xbe, 0xe0, 0xa4, 0xb8,
+ 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x00, 0xe0,
+ 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0xe0, 0xa4, 0xb8,
+ 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0, 0xa4, 0xac,
+ 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x0e, 0x17, 0x17, 0x0e, 0x19, 0x05, 0x0a, 0x1d, 0x1e, 0x15, 0x05, 0x24, 0x05, 0x1a,
+ 0x2a, 0x16, 0x0e, 0x21, 0x04, 0x24, 0x07, 0x04, 0x21, 0x14, 0x24, 0x28, 0x21, 0x03, 0x06, 0x0e, 0x21, 0x14,
+ 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
+ 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_HINDI__
+
#if defined(__PV_LANGUAGE_ITALIAN__)
// wake-word = ciao computer
static const uint8_t KEYWORD_ARRAY[] = {
- 0x74, 0x54, 0x95, 0x9b, 0x89, 0x7b, 0x24, 0xe3, 0xb1, 0xa6, 0xf4, 0x2e, 0x56, 0x94, 0xbd, 0xc5, 0x87, 0x3c,
- 0x84, 0x91, 0xf9, 0x1c, 0xe1, 0x99, 0x0e, 0xc1, 0x54, 0x31, 0x3f, 0x78, 0xd1, 0x30, 0x33, 0x56, 0x05, 0xaf,
- 0x85, 0x9e, 0x5a, 0xe7, 0xd0, 0x88, 0x2e, 0xac, 0x78, 0xb3, 0x9f, 0x94, 0x44, 0xe9, 0x2f, 0x0c, 0x6e, 0x61,
- 0xb7, 0x24, 0xcd, 0xdb, 0x4e, 0x68, 0xdd, 0x9e, 0xab, 0x21, 0xdb, 0xb8, 0x17, 0x0f, 0xa0, 0x7d, 0x4a, 0x2b,
- 0xf2, 0x19, 0xac, 0x1a, 0x02, 0x6a, 0x21, 0x2a, 0x09, 0x7d, 0x85, 0x68, 0x54, 0x33, 0x05, 0xca, 0x91, 0x62,
- 0xce, 0x0b, 0x0b, 0x58, 0xa0, 0xac, 0x85, 0x49, 0xa8, 0xf5, 0x1d, 0x7e, 0xce, 0x8c, 0x73, 0xfe, 0xbd, 0x98,
- 0xe8, 0x30, 0x28, 0xbe, 0x9e, 0x07, 0xdf, 0x93, 0x34, 0x63, 0x49, 0x09, 0x40, 0x16, 0xfa, 0x64, 0x62, 0x33,
- 0xf9, 0x42, 0x36, 0xcc, 0x89, 0x2f, 0x44, 0xca, 0xd6, 0x3a, 0x8b, 0xd8, 0x3b, 0x60, 0x89, 0x29, 0x13, 0x76,
- 0x5d, 0x52, 0xdc, 0x84, 0x0c, 0xd8, 0x1f, 0x00, 0x5e, 0xfb, 0x6a, 0xc4, 0x55, 0xb9, 0xb7, 0x76, 0xc5, 0xc6,
- 0x0b, 0xb6, 0xc2, 0xfd, 0x76, 0xdd, 0x3a, 0xf8, 0x47, 0xa6, 0xd2, 0xa4, 0xa3, 0x3d, 0x4a, 0xa8, 0x12, 0x0e,
- 0x92, 0xfb, 0x14, 0xbb, 0xee, 0x61, 0x29, 0xbc, 0x4d, 0x3f, 0xcf, 0x00, 0x6f, 0x59, 0x9a, 0x77, 0x03, 0x1f,
- 0x83, 0xdf, 0x63, 0x68, 0x41, 0x84, 0x4f, 0xe0, 0xbe, 0x8f, 0x2f, 0xec, 0x15, 0x15, 0xd2, 0xce, 0x52, 0x98,
- 0x94, 0x61, 0xb6, 0xa0, 0x43, 0xda, 0x11, 0xa6, 0x2a, 0x57, 0x8a, 0x17, 0x17, 0x36, 0x1a, 0xcc, 0xe0, 0xf2,
- 0x21, 0x4d, 0x77, 0x79, 0x59, 0x4b, 0x18, 0x31, 0x90, 0xe6, 0xbc, 0xe4, 0xa6, 0x68, 0x11, 0x15, 0x85, 0x30,
- 0xd9, 0x8c, 0xf9, 0x79, 0xfe, 0x47, 0x9e, 0xc3, 0x93, 0x14, 0xab, 0xf5, 0xf4, 0xcb, 0xad, 0x68, 0xad, 0x0b,
- 0xb6, 0x49, 0xed, 0x6b, 0xbe, 0x2b, 0x44, 0x26, 0xa5, 0x56, 0xa9, 0xaa, 0x3e, 0x93, 0xf0, 0x22, 0x45, 0x63,
- 0xbd, 0x0b, 0xe4, 0x49, 0x9c, 0x60, 0xab, 0xda, 0xf4, 0xaf, 0x28, 0x19, 0xb3, 0x56, 0xa4, 0x93, 0xf9, 0x8c,
- 0xf7, 0xcc, 0xe6, 0x03, 0x24, 0x1c, 0x5f, 0x74, 0xfd, 0xb5, 0x58, 0xfb, 0x7d, 0x2a, 0xba, 0x2b, 0x33, 0xe7,
- 0x59, 0x8f, 0x0b, 0xca, 0xd1, 0x6d, 0x48, 0xd4, 0x7a, 0xb0, 0x64, 0xf4, 0x77, 0x79, 0x2a, 0x8a, 0x6b, 0x16,
- 0x0b, 0x44, 0x14, 0x8a, 0xfb, 0x25, 0x2b, 0x50, 0xc6, 0x94, 0x36, 0xc7, 0x04, 0xef, 0x52, 0x56, 0x66, 0xad,
- 0x85, 0xc8, 0x2d, 0x86, 0x0d, 0xb3, 0xed, 0x08, 0x4a, 0x89, 0x8f, 0x87, 0x75, 0xfc, 0x13, 0xfe, 0xc1, 0x6a,
- 0x97, 0x09, 0xa6, 0xbb, 0x64, 0x45, 0xfc, 0x12, 0x33, 0x7e, 0x90, 0x00, 0x8c, 0x2e, 0x79, 0x87, 0x63, 0xd1,
- 0x6e, 0x31, 0x99, 0x4d, 0xa6, 0x8f, 0xc3, 0x8d, 0xb8, 0x43, 0x42, 0x1e, 0x99, 0x37, 0x7e, 0x49, 0x9a, 0xe4,
- 0x8b, 0x27, 0xea, 0x57, 0x1d, 0x23, 0xf8, 0xe6, 0xd9, 0x4f, 0xd5, 0x29, 0x19, 0x01, 0x65, 0x73, 0xd7, 0x40,
- 0x5f, 0x95, 0xb5, 0x59, 0x69, 0x24, 0x04, 0x94, 0xf9, 0xa8, 0x02, 0x53, 0x0d, 0x82, 0x3a, 0x95, 0x74, 0xae,
- 0x92, 0x9e, 0x57, 0x1f, 0x85, 0x71, 0xef, 0x48, 0xdd, 0x64, 0xd0, 0xb8, 0x1c, 0x32, 0x29, 0x16, 0x02, 0x10,
- 0xd7, 0xe3, 0x34, 0x66, 0x59, 0xcb, 0xba, 0xef, 0xda, 0xba, 0x0c, 0xe8, 0xe8, 0x05, 0x5b, 0x94, 0x70, 0xef,
- 0x74, 0x12, 0x97, 0x38, 0xc4, 0xc7, 0x2c, 0x18, 0x51, 0x2f, 0x8f, 0xe6, 0x0c, 0x18, 0x62, 0xcb, 0x61, 0x20,
- 0x38, 0x44, 0x19, 0x57, 0x31, 0xa5, 0xff, 0xc0, 0x0f, 0xf8, 0x1b, 0x57, 0x02, 0xd9, 0x06, 0x68, 0x3c, 0x02,
- 0x5b, 0x05, 0xdf, 0x24, 0x3e, 0xcd, 0xbc, 0x05, 0x18, 0x91, 0xf6, 0x92, 0x45, 0x4f, 0x8b, 0x46, 0x94, 0x0d,
- 0x8d, 0xf7, 0x37, 0x73, 0xa5, 0x9e, 0xb8, 0x32, 0x7e, 0x70, 0x89, 0x9d, 0x3d, 0x74, 0x98, 0xaf, 0x16, 0xd6,
- 0xd6, 0x18, 0x90, 0x0a, 0xd6, 0x51, 0xc6, 0x80, 0xf1, 0xe9, 0x6f, 0x2d, 0x6e, 0x60, 0x35, 0x5e, 0x76, 0xcd,
- 0xb9, 0x6e, 0xb0, 0x4f, 0x23, 0x4d, 0xe6, 0x64, 0x96, 0xf2, 0xe6, 0x4e, 0x18, 0xf3, 0xe9, 0x61, 0xe9, 0x02,
- 0xcc, 0x2b
+ 0xdf, 0x32, 0x2e, 0x43, 0xc4, 0x4e, 0x14, 0x3c, 0x1c, 0xd3, 0xd0, 0x53, 0x60, 0x28, 0x78, 0x4f, 0x46, 0xa8,
+ 0xf3, 0x57, 0xcb, 0x0f, 0xda, 0x5b, 0xeb, 0xbe, 0xd8, 0x12, 0x85, 0x90, 0xac, 0x1c, 0x21, 0x4a, 0x54, 0x78,
+ 0x7b, 0x04, 0xce, 0x9b, 0xa0, 0x9f, 0x54, 0xb6, 0xca, 0x8c, 0xb7, 0x36, 0x2e, 0x23, 0xc4, 0x15, 0x29, 0xca,
+ 0xd8, 0x79, 0x97, 0x1f, 0xd8, 0xb8, 0xc4, 0xc8, 0xe2, 0xe0, 0xb3, 0xea, 0xd7, 0x26, 0xf3, 0xcc, 0xf9, 0x98,
+ 0xd6, 0x84, 0x52, 0xf1, 0x1a, 0xc8, 0x08, 0x42, 0x7f, 0xbd, 0xb1, 0x6c, 0x53, 0x3a, 0x18, 0xee, 0xee, 0xae,
+ 0x58, 0x11, 0x8e, 0xf6, 0x95, 0x10, 0x6a, 0x86, 0xe0, 0x26, 0x73, 0xe1, 0x5f, 0xc5, 0xa9, 0x7e, 0xc9, 0x67,
+ 0xa3, 0xff, 0xcd, 0xbb, 0x38, 0x80, 0x1d, 0x82, 0x9e, 0x1e, 0x14, 0xb2, 0x19, 0x36, 0x5f, 0xef, 0xe4, 0x16,
+ 0x36, 0x2e, 0x32, 0x50, 0xcb, 0xea, 0x16, 0x55, 0xe1, 0xb1, 0xed, 0x34, 0x9b, 0x97, 0x24, 0x9f, 0x74, 0xdf,
+ 0x85, 0xf1, 0x7c, 0xdc, 0x44, 0x4d, 0x92, 0xb8, 0xb8, 0x4a, 0xfd, 0xa4, 0x1b, 0x69, 0xe3, 0x1b, 0xe1, 0x02,
+ 0x8d, 0x43, 0xba, 0x15, 0x1d, 0xfa, 0xca, 0xf5, 0x87, 0x70, 0xfd, 0xc1, 0x26, 0xcc, 0x92, 0x0f, 0x16, 0x84,
+ 0x29, 0xef, 0x77, 0x88, 0x97, 0x14, 0x6e, 0x8e, 0xb9, 0x16, 0x2c, 0xd0, 0xd8, 0xb5, 0x82, 0x92, 0x18, 0x93,
+ 0xe8, 0xee, 0x3e, 0xd3, 0xcd, 0x0e, 0x1e, 0xb4, 0x56, 0xc3, 0x4d, 0xd5, 0xaa, 0x69, 0xc1, 0x8e, 0x1d, 0x60,
+ 0xd8, 0x8c, 0x29, 0x48, 0x20, 0x63, 0xe7, 0x7e, 0x88, 0xb9, 0xd3, 0x05, 0x7b, 0x07, 0x79, 0xc3, 0x2a, 0x30,
+ 0x3b, 0x9d, 0xe6, 0x6d, 0x65, 0x20, 0x15, 0x62, 0x79, 0x9d, 0xd1, 0x22, 0xd4, 0x32, 0x87, 0x6e, 0x56, 0x85,
+ 0x57, 0x6c, 0xed, 0x56, 0x82, 0xa6, 0xed, 0x6f, 0x3a, 0x12, 0x5c, 0x53, 0xc3, 0x52, 0x76, 0xd1, 0x16, 0x90,
+ 0x6b, 0x87, 0x6d, 0xb8, 0xbf, 0xc9, 0x84, 0xf6, 0xbd, 0xaa, 0x80, 0x24, 0xd7, 0x6b, 0x81, 0x2c, 0xa8, 0xcb,
+ 0x21, 0x08, 0xdd, 0x94, 0x5d, 0x86, 0x2b, 0x0a, 0xcb, 0x2c, 0x5d, 0xa5, 0xfb, 0x1b, 0xda, 0x99, 0x42, 0xcb,
+ 0xef, 0xd4, 0x36, 0x2f, 0xb3, 0xba, 0x46, 0x6e, 0xbf, 0x2c, 0x31, 0x09, 0xc4, 0xe0, 0x0c, 0xbd, 0x18, 0x4d,
+ 0xa5, 0x0e, 0xf2, 0xea, 0x65, 0x2b, 0xb5, 0x57, 0x82, 0x47, 0xda, 0x2e, 0xed, 0xc3, 0xcf, 0xbf, 0x4c, 0xda,
+ 0x60, 0x5c, 0x3a, 0xf5, 0xe2, 0xff, 0x6e, 0x45, 0x71, 0x61, 0xa9, 0xd4, 0x7d, 0x75, 0xcd, 0x1d, 0xcf, 0xcf,
+ 0x83, 0xa2, 0x16, 0xce, 0x58, 0xf1, 0xe0, 0xfe, 0xba, 0x1a, 0x82, 0xe3, 0x77, 0x6f, 0x56, 0x62, 0x68, 0xae,
+ 0xd7, 0x66, 0x64, 0x31, 0x36, 0x58, 0xb1, 0x0f, 0xcb, 0x16, 0x78, 0x4d, 0x6c, 0x46, 0x17, 0xb7, 0xd9, 0xf0,
+ 0x15, 0x80, 0xe7, 0x97, 0x09, 0x25, 0xbe, 0x98, 0xd9, 0xe1, 0x48, 0x37, 0x63, 0x11, 0xd0, 0xf1, 0xd5, 0x00,
+ 0x4c, 0xf4, 0x9a, 0x3e, 0x24, 0xdf, 0x33, 0x03, 0x68, 0x6b, 0x79, 0x31, 0x30, 0x1b, 0xfc, 0x17, 0x18, 0xba,
+ 0x2c, 0x5f, 0x18, 0x65, 0xb3, 0xf7, 0x86, 0x3a, 0xdc, 0x6f, 0x7e, 0x42, 0xfb, 0x3f, 0x16, 0x86, 0x7d, 0x46,
+ 0xb0, 0x8e, 0x9a, 0x05, 0x38, 0x52, 0x56, 0x80, 0xef, 0x3c, 0x65, 0x5b, 0xc2, 0x59, 0x64, 0x18, 0xe7, 0x08,
+ 0xe6, 0x9f, 0x6e, 0x81, 0xa6, 0xb0, 0x96, 0xb6, 0x99, 0x88, 0x20, 0x13, 0x8f, 0x72, 0x93, 0xbb, 0xc8, 0x68,
+ 0x3f, 0x3f, 0xf8, 0xe4, 0x55, 0xfa, 0x41, 0x94, 0x1d, 0xba, 0x30, 0x2c, 0xc5, 0x34, 0x1b, 0x27, 0x0b, 0x20,
+ 0x6d, 0xb5, 0x07, 0x07, 0xf5, 0x59, 0x25, 0x35, 0xcc, 0x11, 0x44, 0x31, 0x56, 0x44, 0x93, 0xf3, 0x84, 0x0a,
+ 0x3e, 0xe4, 0x30, 0xe5, 0x39, 0xcf, 0x8e, 0xe3, 0xb9, 0x7d, 0x94, 0xf1, 0xe7, 0x48, 0xf3, 0x9b, 0x52, 0x61,
+ 0x05, 0x39, 0x91, 0xb7, 0xc2, 0x20, 0x77, 0xe7, 0x2f, 0xfe, 0xd7, 0xbf, 0xfd, 0x9c, 0xab, 0x31, 0xb4, 0x64,
+ 0x03, 0xb7, 0x42, 0xeb, 0x99, 0xeb, 0x10, 0x8d, 0x7c, 0xaa, 0xe2, 0x3a, 0x59, 0x2c, 0x5d, 0xb5, 0xcb, 0xf9,
+ 0x0b, 0xe0, 0xe4, 0x6b, 0x3f, 0x80, 0xa7, 0x8f, 0x0a, 0x7e, 0x7a, 0x2a, 0x50, 0x6b, 0xc9, 0x9c, 0x9b, 0x21,
+ 0x77, 0xcb
};
// context = illuminazione
@@ -1535,53 +2022,53 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_JAPANESE__)
-// wake-word = konnichiwa konpyūtā
+// wake-word = こんにちは コンピューター
static const uint8_t KEYWORD_ARRAY[] = {
- 0xf9, 0x5a, 0xc7, 0xf5, 0xa7, 0xe9, 0x06, 0x3f, 0x00, 0x3a, 0x82, 0x94, 0x96, 0xc2, 0xa7, 0x82, 0xc3, 0x85,
- 0xc3, 0xec, 0xd9, 0x43, 0x14, 0x8f, 0x2a, 0xcf, 0x34, 0x77, 0x17, 0xfc, 0x81, 0x08, 0xf2, 0xb0, 0x16, 0x42,
- 0x3b, 0x2d, 0x95, 0xb3, 0xad, 0x00, 0xfc, 0xbb, 0x15, 0x2e, 0xba, 0x7e, 0x8a, 0x28, 0xfc, 0x46, 0x38, 0x6d,
- 0xeb, 0x07, 0xa7, 0xc3, 0x53, 0x2e, 0x3c, 0xd5, 0x3c, 0x69, 0xc5, 0x1d, 0x46, 0x1f, 0x0e, 0x93, 0x81, 0xc9,
- 0x8a, 0xc8, 0x32, 0xbe, 0x8f, 0xb6, 0xb2, 0x8a, 0x67, 0x1b, 0xc6, 0xba, 0x66, 0xf9, 0x2d, 0x48, 0x74, 0x0f,
- 0x31, 0xb2, 0x1d, 0x59, 0xe8, 0x65, 0x90, 0x0a, 0xea, 0x01, 0x03, 0x2e, 0xaf, 0x95, 0x7b, 0x15, 0x2a, 0xdb,
- 0xa4, 0x36, 0x73, 0x15, 0xe5, 0x23, 0xdc, 0xec, 0x93, 0x4e, 0x16, 0x04, 0x1d, 0x4c, 0x5b, 0x16, 0x25, 0x38,
- 0x61, 0xba, 0xc2, 0x48, 0x52, 0x2c, 0xa2, 0xfb, 0x59, 0xb6, 0x7b, 0x11, 0xc6, 0x5e, 0x96, 0x1b, 0xe4, 0x0d,
- 0x01, 0x8d, 0x22, 0xea, 0xbd, 0x1a, 0xb2, 0x31, 0x70, 0xa9, 0x1b, 0x25, 0x07, 0x0a, 0x17, 0xff, 0xf4, 0xfd,
- 0xdf, 0xf4, 0x0f, 0x60, 0xb7, 0x9f, 0xaa, 0x4c, 0xb9, 0xed, 0x97, 0x16, 0xc5, 0x03, 0x28, 0xef, 0xe8, 0x41,
- 0x2a, 0x45, 0x72, 0x48, 0xa1, 0x8f, 0x2c, 0x89, 0x23, 0x78, 0x50, 0xe1, 0xbe, 0xe1, 0x16, 0x63, 0x1b, 0x9f,
- 0x3b, 0x33, 0xf4, 0x7b, 0xf0, 0xfa, 0xd4, 0xfe, 0x6f, 0x54, 0x69, 0x8b, 0x89, 0x7b, 0x2f, 0x4f, 0x3f, 0x4b,
- 0xf7, 0x8c, 0xed, 0x99, 0x52, 0x87, 0x94, 0x26, 0x04, 0x51, 0xd9, 0x57, 0xab, 0xf7, 0xc3, 0x89, 0xc9, 0x46,
- 0x59, 0xb4, 0x0e, 0xef, 0xa1, 0xf3, 0x7a, 0x30, 0xec, 0x43, 0xfe, 0xf8, 0x7d, 0x9c, 0x94, 0x1f, 0xa2, 0xf2,
- 0x5d, 0x69, 0x01, 0xdd, 0x7f, 0xf7, 0x3c, 0x72, 0x7b, 0xa9, 0xa5, 0x99, 0x0d, 0xe9, 0x46, 0xb1, 0x36, 0x76,
- 0x2f, 0x4c, 0xf6, 0x65, 0x33, 0xb1, 0x0f, 0x90, 0x37, 0x62, 0xd2, 0xb7, 0x5b, 0x5b, 0x8b, 0xef, 0x0e, 0x3f,
- 0x97, 0xcd, 0xbf, 0x1e, 0xba, 0x65, 0x69, 0xaf, 0x99, 0xab, 0xa7, 0x20, 0xe3, 0x4f, 0xf3, 0x26, 0xda, 0x3c,
- 0x06, 0xb9, 0x10, 0xcc, 0x4e, 0x7d, 0xb4, 0x23, 0x51, 0xa4, 0x0b, 0x36, 0x40, 0x46, 0xa5, 0x2b, 0xe7, 0xa8,
- 0xd4, 0x30, 0xdb, 0x92, 0x5a, 0x10, 0x26, 0x23, 0x34, 0x07, 0x89, 0x1c, 0x93, 0xda, 0xf9, 0x0d, 0x5d, 0x59,
- 0xa9, 0x19, 0xfc, 0x02, 0x54, 0xfd, 0x68, 0x6d, 0x8e, 0x25, 0xf9, 0xf5, 0x76, 0xe0, 0x3e, 0x0a, 0x15, 0xce,
- 0x89, 0xdc, 0x53, 0xf6, 0xb7, 0xd3, 0xb6, 0xda, 0xc7, 0xdb, 0x36, 0x03, 0x49, 0xe1, 0x66, 0x43, 0x3c, 0xa8,
- 0x62, 0x31, 0xb9, 0x8e, 0x94, 0xc8, 0x74, 0x30, 0x67, 0x37, 0x27, 0x8f, 0x91, 0x83, 0xda, 0xc0, 0x17, 0xeb,
- 0xb6, 0x87, 0x72, 0x38, 0x2e, 0x21, 0xd7, 0x74, 0x28, 0x8f, 0x20, 0xe6, 0x37, 0x74, 0x7e, 0xe9, 0xa9, 0x48,
- 0x33, 0x42, 0x17, 0x12, 0x3d, 0x47, 0xc3, 0x25, 0x63, 0x26, 0xd0, 0x56, 0xbe, 0xaa, 0x79, 0x14, 0x0b, 0x93,
- 0xc6, 0xf1, 0x9a, 0x31, 0x71, 0x99, 0x22, 0x3d, 0xad, 0x93, 0xeb, 0x2f, 0xc2, 0x7b, 0x89, 0xb2, 0x28, 0xae,
- 0xcd, 0x60, 0xbd, 0x26, 0xc5, 0x71, 0x3c, 0x30, 0x55, 0xc0, 0xc8, 0xbd, 0xf9, 0x9b, 0x47, 0x58, 0x86, 0xcf,
- 0x69, 0x9a, 0x3a, 0xb0, 0x66, 0xc9, 0x04, 0x95, 0x84, 0x5c, 0x10, 0xa7, 0xab, 0x35, 0x82, 0x30, 0xfb, 0xfc,
- 0xe8, 0x8b, 0xab, 0xb0, 0xc1, 0x44, 0xff, 0x28, 0x6b, 0x8a, 0x85, 0xa6, 0xfe, 0x2c, 0x66, 0x70, 0x38, 0x6d,
- 0x79, 0xbb, 0xde, 0x03, 0x1e, 0x17, 0x64, 0x09, 0xbd, 0x0c, 0x86, 0x39, 0xbb, 0x30, 0xdb, 0x2f, 0x45, 0x2b,
- 0x5c, 0x5d, 0xb5, 0x48, 0xa6, 0xa0, 0x6e, 0x06, 0xcf, 0x36, 0x9c, 0xed, 0x3f, 0x5e, 0x22, 0x70, 0xc9, 0x9b,
- 0xaf, 0x29, 0x7b, 0x11, 0xa3, 0x16, 0x45, 0x89, 0xd5, 0x3d, 0x0d, 0xff, 0xfd, 0x3b, 0x06, 0x3d, 0xf9, 0x46,
- 0x3e, 0xa4, 0x0a, 0xcf, 0xa3, 0x0a, 0xb5, 0x95, 0x05, 0xdb, 0xad, 0x0e, 0x8e, 0xb6, 0x36, 0xf2, 0xd6, 0xd1,
- 0xa1, 0xee, 0x48, 0x36, 0xa0, 0xa6, 0xba, 0x7a, 0x9c, 0xd6, 0x28, 0x65, 0xe6, 0xfb, 0xe6, 0x43, 0x81, 0x14,
- 0xdc, 0xd5, 0x3b, 0x4b, 0x2d, 0x4b, 0x8a, 0x3a, 0x2d, 0x23, 0x8b, 0xc0, 0x83, 0x61, 0x5c, 0x68, 0xf2, 0xaf,
- 0xbf, 0x5f, 0x21, 0xc5, 0x8a, 0xa7, 0xa5, 0x97, 0x8d, 0xb8, 0xd2, 0x49, 0x0d, 0xcd, 0x5f, 0x9f, 0x36, 0xc4,
- 0x2c, 0x73, 0xa1, 0xe8, 0xa9, 0xb1, 0x7d, 0x6c, 0xaf, 0x3a, 0x67, 0x8c, 0xe9, 0xf8, 0xa9, 0x1c, 0xd1, 0xc7,
- 0x97, 0x1f, 0xee, 0x6c, 0x38, 0x07, 0x9f, 0x83, 0xec, 0x7c, 0xcf, 0xc2, 0x4c, 0xf7, 0x2d, 0x0f, 0x87, 0x23,
- 0x05, 0x56, 0x08, 0x52, 0xa9, 0xad, 0xab, 0x3f, 0x7f, 0x0a, 0xed, 0xd2, 0xca, 0x6b, 0xb5, 0xb2, 0x47, 0x79,
- 0x33, 0x4a, 0x7e, 0x9c, 0x56, 0x74, 0xe2, 0x3e, 0x57, 0x08, 0xb5, 0x49, 0xa4, 0x60, 0x33, 0xea, 0x9b, 0xe4,
- 0x38, 0x6b, 0x6b, 0x80, 0xde, 0x1c, 0xdd, 0x5d, 0x16, 0xb2, 0x66, 0xd2, 0x8c, 0x96, 0x5f, 0x14, 0x92, 0x87,
- 0xa4, 0x18, 0x42, 0xa8, 0xe8, 0x77, 0x1d, 0x1f, 0xf3, 0xd7, 0x89, 0xa4, 0x33, 0xee, 0xdc, 0x45, 0xa1, 0xe5,
- 0x59, 0x58, 0x62, 0xe3, 0xe2, 0x6b, 0x14, 0xec, 0x5d, 0xbd, 0x0e, 0x37, 0xdd, 0x2b, 0x17, 0xc3, 0xee, 0x30,
- 0x97, 0x15, 0x3a, 0xf2, 0xc9, 0xae, 0x93, 0xaf, 0x51, 0x00, 0x14, 0x2a, 0xe0, 0xf7, 0x1a, 0xd0, 0xee, 0xf5,
- 0x25, 0x0f, 0x19, 0x50, 0x1a, 0x53, 0xc3, 0xf8, 0xc5, 0x0c, 0xfd, 0x50, 0x37, 0x9a, 0xcc, 0x3a, 0xea, 0xe0,
- 0xc6, 0x6a, 0x91, 0x9c
+ 0x0c, 0xd2, 0x22, 0x12, 0xb5, 0x59, 0xe6, 0xf1, 0x07, 0x3a, 0x41, 0x98, 0xb9, 0x0b, 0x68, 0x9d, 0xf6, 0x00,
+ 0x8d, 0x85, 0xb2, 0x2e, 0x0d, 0x94, 0xc1, 0x08, 0x9e, 0x13, 0xc7, 0x50, 0xdc, 0xe3, 0x7a, 0x30, 0x22, 0xe1,
+ 0x19, 0xff, 0x5f, 0xe4, 0xa0, 0xd8, 0x18, 0xea, 0xda, 0xf5, 0x40, 0x1a, 0x7d, 0xc9, 0xe9, 0x32, 0xab, 0x56,
+ 0x95, 0x7b, 0xd0, 0x48, 0xb2, 0xef, 0x4f, 0x93, 0x1d, 0x1c, 0x79, 0x45, 0x55, 0x75, 0x5b, 0xa7, 0x05, 0x99,
+ 0xee, 0x35, 0x32, 0xe4, 0x24, 0x57, 0xb6, 0x1f, 0x8c, 0xef, 0x6e, 0xe6, 0x67, 0x38, 0xaa, 0x8e, 0x84, 0x40,
+ 0x7b, 0x2c, 0xb3, 0xba, 0x6c, 0x3e, 0xbe, 0x4c, 0x35, 0xbf, 0x60, 0x76, 0x2d, 0x56, 0x97, 0x73, 0x3f, 0xa0,
+ 0x92, 0x74, 0xf4, 0x80, 0xba, 0x75, 0x4d, 0x24, 0x35, 0x2d, 0xe5, 0x17, 0xd8, 0x89, 0x9c, 0xc9, 0x7a, 0xbd,
+ 0xf6, 0xc2, 0xaf, 0x0d, 0x68, 0x75, 0xb4, 0x0e, 0x7c, 0x83, 0x95, 0xf3, 0xbf, 0x8d, 0x0d, 0x96, 0x8c, 0xfd,
+ 0xf4, 0xd6, 0x61, 0xa6, 0x1d, 0xb3, 0x2b, 0x8a, 0x0a, 0x3f, 0xcb, 0xac, 0x77, 0x6c, 0x8d, 0x01, 0xc8, 0x96,
+ 0x8d, 0x05, 0x84, 0x6c, 0x34, 0x17, 0x17, 0x09, 0x71, 0xc3, 0x68, 0xd9, 0xe7, 0x55, 0x3a, 0x4d, 0x37, 0x14,
+ 0xe7, 0x0a, 0x87, 0xbc, 0xa2, 0x3c, 0xa2, 0xb5, 0xa7, 0xb2, 0xd7, 0x80, 0x5a, 0x92, 0x99, 0x1a, 0xc8, 0x1c,
+ 0x54, 0xc7, 0x47, 0x62, 0x7d, 0xfa, 0xe5, 0xec, 0xcb, 0x47, 0xb1, 0x74, 0xdd, 0xa4, 0x33, 0x8d, 0xad, 0x67,
+ 0x4e, 0x8a, 0x6e, 0x56, 0x94, 0x7b, 0x9b, 0xcc, 0xf1, 0x28, 0xd0, 0x81, 0xd1, 0xd0, 0xe3, 0x8a, 0xcd, 0xcc,
+ 0x1c, 0x9b, 0xde, 0xc7, 0xac, 0xe9, 0xb6, 0x4a, 0xe1, 0xbe, 0x15, 0xb2, 0x02, 0x19, 0x30, 0x0b, 0x7a, 0x94,
+ 0xcf, 0xf6, 0xa1, 0x71, 0x54, 0xfc, 0xe8, 0x3f, 0xd0, 0xba, 0x7f, 0x7e, 0x52, 0xb8, 0x6a, 0x13, 0x48, 0xa3,
+ 0xbb, 0xc3, 0x23, 0xff, 0xd9, 0x03, 0xdc, 0x6d, 0xe5, 0x97, 0x9e, 0xf1, 0x9d, 0x17, 0x23, 0x33, 0x77, 0x1d,
+ 0xff, 0xbd, 0x86, 0x02, 0x93, 0x8e, 0xf1, 0x56, 0xfd, 0x02, 0xb7, 0x3c, 0x13, 0x07, 0xea, 0x32, 0x6f, 0x11,
+ 0x28, 0x17, 0x53, 0x8a, 0xd6, 0xdc, 0x97, 0x83, 0xd9, 0x22, 0x47, 0xa8, 0x4c, 0x3f, 0xa2, 0xd1, 0x0c, 0x56,
+ 0x68, 0xc4, 0xb3, 0x3d, 0xfa, 0x3f, 0xf0, 0x3f, 0x13, 0xd8, 0xfd, 0x5e, 0x8b, 0x25, 0xd3, 0xb5, 0x0f, 0x10,
+ 0xd9, 0xfe, 0x83, 0xc3, 0x4b, 0x7d, 0x26, 0x86, 0x3f, 0x3d, 0xf3, 0x40, 0xc0, 0x0c, 0xb1, 0x44, 0xfa, 0x19,
+ 0x57, 0xfc, 0x1f, 0xeb, 0x1c, 0x85, 0x4f, 0xc4, 0x9d, 0x10, 0x70, 0x99, 0x21, 0x49, 0xc3, 0x52, 0x29, 0x8d,
+ 0xde, 0xee, 0x73, 0xb6, 0xc1, 0x1e, 0x7a, 0x9b, 0x73, 0x09, 0xc9, 0x43, 0x1e, 0xeb, 0x7a, 0x45, 0x94, 0x52,
+ 0xd9, 0x5c, 0xaa, 0x1c, 0x57, 0xa6, 0x1f, 0x7c, 0xdf, 0x47, 0xe4, 0xd7, 0xeb, 0xab, 0x98, 0x44, 0xbd, 0x38,
+ 0x5f, 0xf6, 0xd2, 0xef, 0xfe, 0xc1, 0xe5, 0xee, 0xd7, 0x9a, 0xc1, 0xc6, 0xdb, 0x62, 0x91, 0xc4, 0x17, 0x67,
+ 0x3a, 0x1c, 0xf3, 0x19, 0xff, 0x2f, 0x9b, 0xed, 0x06, 0xcd, 0x95, 0xd0, 0x68, 0x00, 0x41, 0xc6, 0xcd, 0x2f,
+ 0xd8, 0x5b, 0xd0, 0x28, 0xaf, 0x22, 0x20, 0xbd, 0x5b, 0x9e, 0x3e, 0x79, 0x81, 0xd6, 0x7a, 0xea, 0xc3, 0xc2,
+ 0xab, 0x27, 0xa5, 0xdf, 0x1a, 0xa1, 0x96, 0x90, 0xab, 0xbd, 0x1d, 0x0a, 0xb4, 0x8d, 0x8f, 0x2c, 0x39, 0xab,
+ 0x09, 0xde, 0x8c, 0xe6, 0x81, 0x37, 0x0b, 0xac, 0x0d, 0x3d, 0xca, 0x4b, 0xc4, 0x45, 0x79, 0xb7, 0x11, 0x7b,
+ 0xad, 0x4b, 0xf6, 0x89, 0x9b, 0x97, 0x27, 0xa0, 0x7f, 0x46, 0x4b, 0x77, 0xd1, 0x77, 0xf3, 0xf5, 0x99, 0xc0,
+ 0x4a, 0xec, 0x08, 0x16, 0x2d, 0xa6, 0xde, 0xb8, 0x1b, 0x46, 0x4f, 0xe8, 0x56, 0xb5, 0x76, 0x7d, 0xb7, 0x2f,
+ 0x22, 0xc3, 0x52, 0x72, 0xa6, 0x28, 0xb3, 0x2f, 0x41, 0xe3, 0x32, 0x03, 0xbb, 0x17, 0xc8, 0xc7, 0x26, 0xca,
+ 0x07, 0x3b, 0xf4, 0x7f, 0x73, 0x88, 0xab, 0x86, 0xbe, 0x57, 0x63, 0xfe, 0xa7, 0x84, 0xdb, 0xd1, 0xeb, 0xd3,
+ 0x1a, 0xad, 0xe6, 0xbe, 0x2e, 0x08, 0x15, 0xd2, 0x6a, 0x49, 0xc9, 0x8b, 0x95, 0xb5, 0xa0, 0xc8, 0x9f, 0x56,
+ 0x00, 0x0b, 0xec, 0xfb, 0x27, 0x2e, 0xd3, 0x2a, 0x4e, 0xbf, 0xa9, 0xdc, 0xa9, 0x71, 0xfc, 0xb2, 0x68, 0x18,
+ 0x90, 0x5e, 0x33, 0xb7, 0xcc, 0xbd, 0x6d, 0x66, 0x55, 0x7d, 0xdf, 0x04, 0xfa, 0x81, 0x9e, 0xd3, 0x00, 0xf5,
+ 0x3c, 0xa5, 0x5d, 0x36, 0xf9, 0x83, 0x7f, 0x6f, 0xc0, 0x98, 0x0e, 0xac, 0x51, 0x4a, 0xbe, 0xc0, 0x96, 0x2f,
+ 0x40, 0xee, 0x01, 0x8d, 0x07, 0x1c, 0x4d, 0xc4, 0x34, 0xdf, 0xcb, 0x2d, 0x55, 0xbe, 0x2a, 0x39, 0xa6, 0x90,
+ 0x37, 0xec, 0x5b, 0xe3, 0xfd, 0x7d, 0xe0, 0x3b, 0x9f, 0x52, 0xac, 0x60, 0xce, 0xbe, 0x76, 0x63, 0xe5, 0x4f,
+ 0x9f, 0xec, 0x43, 0xcf, 0x5a, 0xb0, 0xee, 0x78, 0x45, 0x3e, 0xd5, 0x81, 0x56, 0x2c, 0x1a, 0xae, 0xda, 0xbb,
+ 0xf5, 0x1a, 0x29, 0x96, 0xd5, 0x1a, 0x81, 0xcc, 0x2c, 0x6f, 0xc1, 0x76, 0x93, 0x97, 0x10, 0x3d, 0x27, 0xce,
+ 0x1b, 0xa5, 0xc0, 0x04, 0xca, 0xc0, 0xa2, 0x3d, 0x54, 0x41, 0xec, 0x7e, 0x82, 0xb7, 0x8c, 0x76, 0x39, 0x33,
+ 0xb1, 0x14, 0xa3, 0x04, 0x16, 0x4d, 0x87, 0xe5, 0x8a, 0x8d, 0x59, 0x99, 0x11, 0x64, 0x06, 0xee, 0xf2, 0x25,
+ 0xb5, 0xd3, 0xa7, 0xf4, 0x4a, 0x30, 0x97, 0x51, 0xf7, 0x53, 0xbd, 0xa6, 0x06, 0x54, 0xb4, 0x58, 0x50, 0x45,
+ 0x7b, 0xae, 0x41, 0x86, 0xa2, 0x78, 0x50, 0x7d, 0xe4, 0x24, 0xe9, 0xb9, 0xcf, 0x73, 0xba, 0x81, 0x98, 0xa7,
+ 0xa2, 0x0d, 0x43, 0x40
};
// context = sumāto_shōmei
@@ -2002,42 +2489,42 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_KOREAN__)
-// wake-word = annyeong keompyuteo
+// wake-word = 안녕 컴퓨터
static const uint8_t KEYWORD_ARRAY[] = {
- 0xca, 0x3d, 0xa9, 0x17, 0x6d, 0xd1, 0x76, 0x57, 0x8a, 0xdb, 0xe5, 0x85, 0x47, 0x26, 0xfe, 0xad, 0x92, 0x53,
- 0xa4, 0x2f, 0x81, 0xf0, 0x00, 0x14, 0xae, 0xa3, 0xa9, 0x97, 0xb1, 0x61, 0xea, 0x79, 0x9e, 0xc8, 0x76, 0xdd,
- 0xe1, 0x5a, 0x0f, 0x3b, 0x66, 0x8e, 0xd0, 0x24, 0xc9, 0xed, 0x76, 0xcc, 0x68, 0x8e, 0x0d, 0xcb, 0x8e, 0x6a,
- 0xe8, 0xa9, 0x64, 0xc2, 0x19, 0x35, 0x83, 0xb7, 0xd0, 0x62, 0xc3, 0x1d, 0x1b, 0x4f, 0x11, 0x31, 0x9c, 0xbf,
- 0x81, 0x61, 0x87, 0xe2, 0xf1, 0xb5, 0xc4, 0x2f, 0xe8, 0x63, 0x00, 0xc3, 0x1d, 0x26, 0x3a, 0xf6, 0x01, 0x47,
- 0x63, 0x65, 0xf6, 0xe3, 0x51, 0xaa, 0x8a, 0x5f, 0x12, 0xbb, 0xe6, 0xf7, 0x81, 0xb3, 0x4e, 0xb7, 0xa0, 0xb4,
- 0x4e, 0xe5, 0x86, 0xae, 0x18, 0xbb, 0x54, 0x45, 0xc9, 0x52, 0xe4, 0x2e, 0xce, 0x84, 0xcf, 0x49, 0x21, 0xff,
- 0x81, 0xb7, 0xbe, 0x4d, 0x75, 0x8d, 0xa5, 0x74, 0xdb, 0xc6, 0xb9, 0x30, 0xc2, 0xb6, 0x1c, 0xd2, 0x69, 0x67,
- 0xe8, 0x80, 0xab, 0xcd, 0xcd, 0xd3, 0x3e, 0xb4, 0x23, 0xc8, 0xae, 0xd1, 0xba, 0x17, 0xba, 0x95, 0x1c, 0x68,
- 0xba, 0x96, 0xa6, 0x53, 0x14, 0x95, 0x41, 0xf6, 0xd6, 0xc4, 0x78, 0x7d, 0x69, 0xb0, 0xd9, 0xb6, 0x21, 0xe7,
- 0x86, 0xc5, 0xab, 0xc6, 0xeb, 0xf5, 0xf6, 0xd4, 0x98, 0xb6, 0xa7, 0x1a, 0x84, 0x02, 0xfc, 0xcf, 0xc0, 0x15,
- 0x1a, 0x66, 0x6f, 0x25, 0xea, 0x03, 0x79, 0xad, 0x14, 0x15, 0x74, 0x62, 0x8b, 0x7e, 0x53, 0x2f, 0x94, 0xea,
- 0xf8, 0xd6, 0x1f, 0x4d, 0xe6, 0xfd, 0xe3, 0xa0, 0xf7, 0x9a, 0x3f, 0x37, 0x63, 0x6f, 0x48, 0x27, 0xea, 0x86,
- 0xa2, 0x0e, 0x41, 0x8b, 0xe5, 0xd9, 0xcb, 0x1b, 0x9b, 0x50, 0x0f, 0x71, 0xd5, 0xa8, 0x90, 0x0f, 0xac, 0x57,
- 0x7b, 0xc2, 0x81, 0x77, 0x11, 0x8c, 0x31, 0x29, 0x45, 0xc8, 0x51, 0x2d, 0xa8, 0x77, 0x4b, 0xed, 0x0b, 0x31,
- 0x0e, 0x14, 0x3f, 0xd6, 0xa3, 0xb1, 0xb6, 0xc1, 0x54, 0xe1, 0xbf, 0x72, 0xf6, 0xdc, 0xcc, 0x27, 0xeb, 0x47,
- 0x0d, 0x04, 0x8d, 0xe0, 0xf3, 0xe3, 0xb4, 0xaf, 0x73, 0x09, 0x7a, 0x82, 0x58, 0xaa, 0xca, 0x97, 0xc2, 0x82,
- 0x46, 0xbf, 0xad, 0x4b, 0x2d, 0x20, 0x2d, 0xef, 0xf7, 0x21, 0x29, 0x36, 0x3b, 0xa9, 0x87, 0x61, 0x9a, 0x66,
- 0x53, 0xfb, 0xa7, 0x5f, 0x02, 0xc7, 0x60, 0x4c, 0x44, 0x87, 0x54, 0x3f, 0x60, 0xa4, 0x0d, 0xc0, 0x4a, 0x1c,
- 0xa8, 0x50, 0xe0, 0xbd, 0x37, 0x16, 0x95, 0x58, 0xea, 0x10, 0xa5, 0x76, 0xa4, 0x1f, 0x58, 0xbe, 0x1f, 0x01,
- 0xc5, 0x2b, 0x1d, 0x3b, 0x3b, 0xc9, 0xca, 0xbb, 0x52, 0xf3, 0xe8, 0x9c, 0xbf, 0x68, 0xe9, 0xa5, 0x58, 0x42,
- 0x1f, 0x01, 0xfd, 0xe8, 0xc0, 0x7c, 0xff, 0x23, 0xf8, 0xbb, 0x46, 0xcd, 0xf2, 0xc4, 0x92, 0x86, 0x3f, 0xf7,
- 0x43, 0xba, 0x23, 0x53, 0x20, 0x1b, 0x93, 0x11, 0x93, 0xe8, 0x89, 0x5b, 0xfb, 0x95, 0x23, 0xd2, 0x74, 0xab,
- 0xed, 0xed, 0xe9, 0xc9, 0x5e, 0x3e, 0xfd, 0xe2, 0x21, 0xfe, 0x01, 0xf7, 0x11, 0xd6, 0xd2, 0x5a, 0x12, 0x59,
- 0xfa, 0xa1, 0x91, 0x3f, 0x99, 0x15, 0x24, 0x14, 0x53, 0xd5, 0xc2, 0xaa, 0xf3, 0xdc, 0xb5, 0xb3, 0xca, 0x57,
- 0x05, 0x8b, 0x48, 0x3e, 0xbc, 0x94, 0x7d, 0xe7, 0x2f, 0xae, 0x18, 0x54, 0xa8, 0x37, 0x07, 0x83, 0x89, 0x5a,
- 0x06, 0x0c, 0xdf, 0xd6, 0xaa, 0x14, 0x74, 0x4d, 0xdd, 0x25, 0x2b, 0xad, 0x7c, 0xfc, 0x2a, 0xb1, 0x7b, 0x12,
- 0x4d, 0x88, 0xa9, 0x94, 0x50, 0xd8, 0x47, 0x00, 0x35, 0x22, 0x32, 0x9b, 0xf2, 0xf2, 0x1d, 0x9c, 0x28, 0x2d,
- 0x5b, 0xc2, 0x4e, 0x79, 0x7a, 0x9d, 0x76, 0x76, 0xa6, 0xb5, 0x18, 0x54, 0x00, 0xd8, 0x3c, 0x7d, 0x37, 0x82,
- 0x38, 0x20, 0xab, 0x19, 0xce, 0x85, 0xda, 0x1f, 0x49, 0x82, 0x0e, 0x5a, 0x56, 0xfc, 0x12, 0x5a, 0x1c, 0x86,
- 0x9a, 0x00, 0x7d, 0xf3, 0xae, 0xee, 0xa8, 0xe6, 0xe0, 0x82, 0xc6, 0x46, 0x0b, 0x67, 0x2d, 0x2d, 0xc9, 0x00,
- 0x8a, 0x1f, 0xe4, 0x34, 0xdf, 0x3e, 0x7d, 0xdb, 0x15, 0xb4, 0xad, 0x80, 0xc6, 0x21, 0x9e, 0x80, 0xdf, 0xd0,
- 0x77, 0x98, 0xaf, 0xa0, 0xe7, 0xb0, 0xee, 0x8f, 0x38, 0x92, 0x36, 0x8b, 0x24, 0xd9, 0xeb, 0x37, 0xc7, 0xfb,
- 0x20, 0x74, 0x61, 0x63, 0x6c, 0x53, 0xf9, 0x7a, 0x65, 0x26, 0x5c, 0xa0, 0xb0, 0x5b, 0x22, 0x0d, 0x8e, 0x68
+ 0x6f, 0x77, 0x54, 0x89, 0xec, 0xb1, 0x5b, 0x25, 0xad, 0xd5, 0xb5, 0xc1, 0x15, 0x17, 0x09, 0x6e, 0x82, 0xe5,
+ 0x50, 0xb1, 0xde, 0xa4, 0x9f, 0x12, 0x5f, 0x18, 0xb7, 0x19, 0x24, 0xb3, 0x3b, 0xe3, 0xeb, 0x83, 0x09, 0xc2,
+ 0x90, 0x12, 0x93, 0x88, 0xa7, 0x24, 0x40, 0xaf, 0x3f, 0xee, 0xbd, 0x56, 0x6d, 0x13, 0x8f, 0xbb, 0x97, 0xef,
+ 0xae, 0x31, 0x17, 0xd2, 0x14, 0x97, 0xd5, 0x19, 0x7c, 0xf8, 0xa2, 0xd5, 0xc9, 0xda, 0xc7, 0x9f, 0xdc, 0x3f,
+ 0x45, 0x16, 0xbf, 0xf2, 0x14, 0xf3, 0xe6, 0x80, 0xee, 0xd7, 0xc7, 0xdc, 0x4e, 0xc7, 0xcb, 0x8c, 0xf6, 0x21,
+ 0xd8, 0x8a, 0xe2, 0x05, 0x80, 0x73, 0xd9, 0x21, 0x06, 0x84, 0x9b, 0x66, 0x36, 0xd6, 0x3e, 0x00, 0x00, 0x09,
+ 0xbb, 0x51, 0x91, 0x06, 0x4b, 0x93, 0x22, 0xbe, 0xb8, 0x8a, 0x91, 0xa0, 0x4a, 0x43, 0x1b, 0xa8, 0xdd, 0x67,
+ 0xb6, 0xaf, 0x4a, 0xe1, 0xfd, 0x72, 0x16, 0x46, 0xfa, 0x02, 0xf5, 0xcb, 0x93, 0xbd, 0xa4, 0x00, 0xf8, 0x76,
+ 0xf6, 0x4d, 0x3f, 0xab, 0x9d, 0x0a, 0xcf, 0x2f, 0xb6, 0x46, 0x25, 0xa7, 0x50, 0xfe, 0xe5, 0xd6, 0x03, 0xb1,
+ 0x9d, 0x46, 0x67, 0x6b, 0xc1, 0x41, 0xe6, 0x2e, 0x76, 0x0d, 0x9b, 0xc6, 0xb1, 0xe2, 0x43, 0x18, 0x7f, 0x86,
+ 0x99, 0xec, 0x38, 0x5c, 0x1d, 0x87, 0x6f, 0x68, 0x5c, 0xfd, 0x2f, 0xe9, 0x73, 0x62, 0x0b, 0x7e, 0xc2, 0x81,
+ 0xfa, 0xc8, 0x04, 0x8c, 0x2a, 0x86, 0x7f, 0xb2, 0xe6, 0x07, 0xa3, 0xc5, 0xf8, 0x4c, 0xd8, 0xda, 0x44, 0x90,
+ 0x9d, 0x3e, 0x82, 0x27, 0xd6, 0x1d, 0x7a, 0x98, 0x52, 0xeb, 0x0f, 0xf8, 0x0a, 0xb8, 0x9c, 0xd0, 0x49, 0x72,
+ 0xf1, 0x2f, 0x17, 0x9f, 0x85, 0x4c, 0x22, 0xbc, 0x48, 0x36, 0x76, 0x25, 0x39, 0x87, 0x29, 0x1f, 0xfe, 0x27,
+ 0x76, 0x27, 0xe1, 0xf8, 0x36, 0x66, 0x7f, 0x24, 0xca, 0x46, 0x20, 0x83, 0x69, 0xd9, 0x24, 0xb5, 0xd2, 0xcb,
+ 0x1c, 0xcd, 0x3e, 0x68, 0xc4, 0xd9, 0xbd, 0xae, 0x84, 0x31, 0x1f, 0x7e, 0xb1, 0xe1, 0x84, 0xc0, 0x80, 0x59,
+ 0x61, 0xa2, 0x01, 0xa1, 0x97, 0xaf, 0x4a, 0xf8, 0x2a, 0x74, 0x29, 0xdd, 0x75, 0x8d, 0xec, 0xab, 0x89, 0xc9,
+ 0x7f, 0x14, 0x5b, 0xf6, 0xd5, 0x64, 0x5a, 0x02, 0xa1, 0x05, 0x9f, 0x76, 0x89, 0xd4, 0x6c, 0x6b, 0xff, 0x98,
+ 0x16, 0xd7, 0xcb, 0x01, 0xa2, 0x69, 0x12, 0xd2, 0x33, 0x95, 0x94, 0x4e, 0x99, 0x64, 0xec, 0xab, 0x71, 0x59,
+ 0x62, 0x4c, 0x5b, 0x19, 0x5e, 0x1b, 0x4e, 0x64, 0xd6, 0xcc, 0x5f, 0x94, 0xe2, 0x55, 0x6d, 0xd2, 0xd6, 0xec,
+ 0x7b, 0xbd, 0x67, 0xcf, 0x59, 0xc7, 0x71, 0x2d, 0x71, 0x6d, 0x14, 0x02, 0xd1, 0x2c, 0x85, 0x26, 0x2c, 0x60,
+ 0x4c, 0xcc, 0xcc, 0xf8, 0xbf, 0x2f, 0xa8, 0xad, 0x63, 0x2e, 0x37, 0xaa, 0x3d, 0x12, 0xa1, 0xc0, 0xa4, 0x76,
+ 0xb7, 0x15, 0x0b, 0x1a, 0xf3, 0xb9, 0x81, 0x9f, 0x13, 0x9a, 0x7c, 0xc3, 0x66, 0x0a, 0x6b, 0xe6, 0x17, 0x55,
+ 0x47, 0x5e, 0x11, 0x06, 0x2c, 0x22, 0xb9, 0xb9, 0xf4, 0xab, 0x85, 0xa6, 0xae, 0xcd, 0xff, 0x96, 0x56, 0x37,
+ 0x9d, 0xde, 0xfc, 0x64, 0x59, 0xfe, 0xcd, 0xaf, 0x6c, 0x65, 0x37, 0x5c, 0x4e, 0x1e, 0x56, 0xd3, 0xc4, 0x5b,
+ 0x3a, 0x39, 0xe7, 0xdf, 0x03, 0xee, 0x19, 0x3f, 0x13, 0x65, 0x23, 0x14, 0xec, 0x1f, 0xe8, 0x3b, 0x7c, 0x10,
+ 0x30, 0xf0, 0xf5, 0x1c, 0xd7, 0x02, 0x3b, 0x65, 0x50, 0x8f, 0xc6, 0x38, 0x24, 0x5a, 0x46, 0xef, 0x92, 0xa3,
+ 0x29, 0x19, 0xdb, 0x91, 0x1c, 0x1d, 0x28, 0xb0, 0x07, 0xbe, 0xb0, 0x33, 0x67, 0x22, 0xb6, 0x29, 0xba, 0x0e,
+ 0xce, 0x97, 0x66, 0x18, 0x36, 0xd3, 0xb6, 0x9d, 0xa7, 0x74, 0x7f, 0x8f, 0xf0, 0xad, 0x1f, 0x45, 0x42, 0xda,
+ 0x32, 0x6a, 0xbc, 0x89, 0xe7, 0xf1, 0x2b, 0x37, 0x68, 0x96, 0x74, 0x2e, 0x59, 0x22, 0x1a, 0x95, 0x7c, 0x93,
+ 0x88, 0xba, 0x00, 0xea, 0xfc, 0xb3, 0x05, 0x08, 0xba, 0x64, 0xc1, 0x6f, 0xf2, 0xe9, 0x01, 0xd3, 0xa2, 0x79,
+ 0x63, 0x5b, 0x80, 0xac, 0x62, 0x88, 0xb2, 0xe0, 0x6b, 0x0f, 0xda, 0xb9, 0x39, 0x43, 0x3e, 0x56, 0x9e, 0xfc,
+ 0xd4, 0xb7, 0x4f, 0x8e, 0x3c, 0x16, 0x9d, 0x41, 0xbc, 0x57, 0x41, 0x57, 0x9c, 0x92, 0x73, 0xb9, 0x78, 0x09,
+ 0xbf, 0x9d, 0x34, 0x76, 0xba, 0x0c, 0x5a, 0xe0, 0xc8, 0x63, 0x8a, 0x60, 0x3e, 0x76, 0x34, 0x78, 0xdc, 0x01
};
// context = seumateu_jomyeong
@@ -2348,46 +2835,215 @@ static const uint8_t CONTEXT_ARRAY[] = {
0x00, 0x00
};
-#endif // __PV_LANGUAGE_KOREAN__
+#endif // __PV_LANGUAGE_KOREAN__
+
+#if defined(__PV_LANGUAGE_DUTCH__)
+
+// wake-word = hallo computer
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0xf9, 0x03, 0x31, 0xe5, 0x3e, 0x12, 0xd3, 0xc6, 0xb8, 0xa1, 0xe3, 0x5a, 0x5b, 0x3c, 0x24, 0x38, 0xc9, 0x1c,
+ 0xb9, 0xb0, 0xea, 0x3d, 0xb7, 0x25, 0xaa, 0x8f, 0x54, 0x8f, 0xf0, 0xa3, 0x5d, 0xaf, 0xf1, 0x8d, 0x8c, 0x28,
+ 0xa0, 0xba, 0xa9, 0x35, 0x76, 0x7a, 0x5e, 0xe3, 0xb8, 0xb0, 0xc2, 0x5f, 0x1b, 0x0b, 0x33, 0xa1, 0x7e, 0x08,
+ 0x39, 0x89, 0x91, 0xe2, 0xef, 0xfb, 0xce, 0x58, 0xfc, 0xa3, 0xf1, 0x1d, 0x1d, 0x3b, 0x20, 0x02, 0xd3, 0x12,
+ 0x5d, 0xf5, 0xa6, 0x13, 0x0d, 0x3d, 0x26, 0x3b, 0xbb, 0xab, 0x8c, 0x21, 0x53, 0xad, 0x41, 0xc2, 0x81, 0xfd,
+ 0xe4, 0x04, 0x66, 0xa0, 0xe5, 0x21, 0x1f, 0x85, 0x16, 0x25, 0x61, 0x0a, 0xff, 0xe0, 0x57, 0x5e, 0x5f, 0xfd,
+ 0x71, 0x40, 0xa6, 0x26, 0xe2, 0x86, 0x2e, 0xa4, 0xf6, 0x80, 0x55, 0xc7, 0xa7, 0x6f, 0x62, 0x13, 0x74, 0x1b,
+ 0x81, 0x41, 0xb3, 0xc6, 0x0a, 0xdc, 0xc2, 0x6c, 0xc6, 0x6a, 0x63, 0xb4, 0xb0, 0xaf, 0x17, 0x38, 0x6c, 0xf1,
+ 0xd5, 0xac, 0xb2, 0xf5, 0xbc, 0x01, 0x98, 0xa1, 0x43, 0x02, 0xf8, 0x68, 0x7e, 0x41, 0x8b, 0xfc, 0xa3, 0x01,
+ 0x0b, 0x93, 0x55, 0xac, 0x52, 0x7c, 0x9b, 0x77, 0x06, 0x69, 0x76, 0xb5, 0x5a, 0x24, 0x93, 0xdf, 0x67, 0x8a,
+ 0xa2, 0x2e, 0x76, 0xef, 0x50, 0x99, 0x67, 0x96, 0x44, 0x9d, 0xbc, 0x9f, 0x84, 0x83, 0x7f, 0x4a, 0xf0, 0xe0,
+ 0xc4, 0x00, 0x7b, 0xcf, 0x17, 0x0e, 0x87, 0xf8, 0xac, 0xb5, 0x11, 0xdb, 0xfc, 0x9f, 0xb5, 0x5f, 0x65, 0x47,
+ 0x50, 0x0c, 0x6e, 0x74, 0x4b, 0xf8, 0x03, 0xec, 0x7e, 0x2a, 0x82, 0xd6, 0x92, 0xbc, 0x86, 0x62, 0xd9, 0xf5,
+ 0xc6, 0x2b, 0xab, 0x9f, 0xd2, 0xe2, 0x32, 0x74, 0x1d, 0xb6, 0xed, 0x40, 0x3d, 0xa0, 0xd5, 0x70, 0xc4, 0x58,
+ 0xcd, 0x78, 0xbd, 0xc5, 0x55, 0x56, 0x08, 0x44, 0x20, 0x88, 0xd9, 0x4d, 0x24, 0xbc, 0x60, 0x7a, 0xf2, 0x67,
+ 0xaa, 0xa9, 0x3b, 0xe3, 0x49, 0xbd, 0x3a, 0xed, 0xcf, 0xdd, 0xf6, 0x23, 0x87, 0x11, 0x0d, 0xc4, 0xc1, 0x19,
+ 0x41, 0x9d, 0xd5, 0xb0, 0xc9, 0xa7, 0xd5, 0x0f, 0x56, 0x6e, 0xb7, 0x66, 0x16, 0x0a, 0x1d, 0x38, 0xd0, 0x36,
+ 0xbb, 0xbc, 0xcb, 0xfd, 0x7b, 0xab, 0x8e, 0x71, 0x9e, 0xac, 0x7f, 0x3b, 0x08, 0x26, 0xa2, 0xce, 0xf9, 0x90,
+ 0x61, 0xef, 0x6a, 0x93, 0x15, 0x4e, 0x34, 0xb6, 0x8d, 0x92, 0x79, 0x7d, 0xa8, 0xfa, 0x51, 0x6b, 0x8d, 0xbe,
+ 0xd5, 0x8d, 0x33, 0x3c, 0xe0, 0x17, 0xb6, 0x46, 0xbf, 0x31, 0x8c, 0x9b, 0x39, 0x05, 0x19, 0xc7, 0xf6, 0x7f,
+ 0xd6, 0xf8, 0x0b, 0x89, 0x66, 0xf7, 0x28, 0x2c, 0x3a, 0x0c, 0x06, 0x02, 0x45, 0x91, 0x5a, 0x56, 0xd4, 0x98,
+ 0x81, 0x73, 0x14, 0xa3, 0x39, 0x9b, 0xdb, 0xba, 0xc4, 0x96, 0x68, 0xc3, 0x50, 0x00, 0xbf, 0x37, 0x94, 0x46,
+ 0xd6, 0x07, 0x20, 0x3e, 0xa8, 0x85, 0xac, 0xd9, 0x41, 0x5a, 0x96, 0xee, 0x6d, 0x56, 0xe1, 0xac, 0x87, 0x97,
+ 0x82, 0xc5, 0xf4, 0xee, 0x9e, 0x25, 0x31, 0x92, 0xa5, 0x93, 0x21, 0x64, 0x8f, 0xe9, 0x58, 0x12, 0xfc, 0xe8,
+ 0xdb, 0x15, 0xd6, 0x2b, 0x9a, 0xc7, 0x59, 0xb7, 0xd8, 0x36, 0x99, 0x79, 0x99, 0xd7, 0x72, 0x8c, 0x74, 0x25,
+ 0xcf, 0xce, 0xd4, 0xee, 0x5e, 0xf0, 0x5c, 0x2f, 0x5a, 0x9b, 0x70, 0xd7, 0xac, 0x5d, 0x71, 0xb7, 0xb5, 0x7f,
+ 0xf5, 0x7b, 0x45, 0x94, 0x49, 0x86, 0xcc, 0xb7, 0xa7, 0x66, 0xf2, 0x4b, 0x6f, 0x93, 0xbf, 0x7e, 0xfd, 0x71,
+ 0x47, 0xc9, 0x46, 0x00, 0x97, 0x45, 0x2f, 0x9d, 0x87, 0x71, 0xfb, 0xcd, 0x45, 0x53, 0x57, 0x46, 0xcc, 0xb8,
+ 0x1e, 0xfc, 0x9c, 0xe6, 0x18, 0x93, 0xea, 0x2e, 0x55, 0x0a, 0x0d, 0x7b, 0xe3, 0x21, 0x3e, 0x04, 0x15, 0x6e,
+ 0x0f, 0xe0, 0xab, 0xe5, 0x0d, 0x07, 0xb8, 0x19, 0x12, 0xd1, 0x46, 0x4d, 0x6c, 0x0d, 0xb3, 0x46, 0x28, 0xbf,
+ 0xf1, 0x9c, 0x6a, 0x2b, 0xa0, 0x2a, 0xc0, 0xad, 0x5f, 0x8a, 0x0a, 0xfd, 0x55, 0x48, 0xda, 0x69, 0xae, 0xb0,
+ 0x38, 0x8f, 0x4f, 0xfb, 0x74, 0xfe, 0x74, 0xf7, 0xb3, 0x57, 0xaa, 0x48, 0x62, 0x53, 0x2b, 0x28, 0xb5, 0x1b,
+ 0xa1, 0xe2, 0x07, 0x26, 0xf1, 0x9f, 0x75, 0xe3, 0x04, 0xe3, 0xef, 0x9f, 0x40, 0x7b, 0x18, 0xe2, 0xb4, 0x2e,
+ 0x08, 0x20, 0x6f, 0x10, 0x97, 0xb5, 0x34, 0x95, 0xdd, 0x53, 0xbf, 0xbe, 0x0a, 0x1b, 0xd3, 0x52, 0x20, 0x5a,
+ 0x85, 0x6a, 0xbd, 0x72, 0xb9, 0x53, 0xd3, 0x08
+};
+
+// context = simple_context_nl
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x6c, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x84, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x20, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x65, 0x65, 0x66, 0x20, 0x6d, 0x65, 0x20, 0x65, 0x65, 0x6e, 0x20, 0x24,
+ 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73,
+ 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f, 0x73, 0x22,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x22, 0x00,
+ 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00,
+ 0x17, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2c, 0x00,
+ 0x00, 0x00, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x00, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x00, 0x64,
+ 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x00, 0x65, 0x65, 0x6e, 0x00, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f,
+ 0x73, 0x00, 0x67, 0x65, 0x65, 0x66, 0x00, 0x6d, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x20, 0x00,
+ 0x00, 0x00, 0x03, 0x14, 0x05, 0x04, 0x27, 0x04, 0x23, 0x1d, 0x04, 0x26, 0x15, 0x05, 0x23, 0x14, 0x15, 0x16,
+ 0x25, 0x1b, 0x08, 0x10, 0x09, 0x14, 0x21, 0x0f, 0x04, 0x12, 0x15, 0x29, 0x08, 0x09, 0x0f, 0x25, 0x05, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
+ 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
+ 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68,
+ 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_DUTCH__
+
+#if defined(__PV_LANGUAGE_POLISH__)
+
+// wake-word = cześć komputer
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x70, 0x6a, 0x9e, 0x88, 0xb8, 0x82, 0x7c, 0x87, 0xa7, 0x6e, 0x67, 0x28, 0x38, 0x37, 0x8e, 0xbb, 0x21, 0x69,
+ 0x6e, 0xb1, 0xef, 0xde, 0xf3, 0xbd, 0x1b, 0xd1, 0x9f, 0xbf, 0x9d, 0x8a, 0x8f, 0x8a, 0x16, 0x95, 0x35, 0x33,
+ 0xc6, 0xc4, 0x2a, 0x4a, 0x27, 0x2e, 0xd0, 0x53, 0x0a, 0x8c, 0xf3, 0x91, 0x16, 0x64, 0xb6, 0xff, 0x73, 0x57,
+ 0x3d, 0x4d, 0x82, 0x84, 0x6d, 0x28, 0x6f, 0x9e, 0x51, 0x9b, 0xb3, 0x73, 0x26, 0xea, 0x43, 0x5c, 0xbd, 0xc5,
+ 0xa5, 0xbb, 0x47, 0xe8, 0x6f, 0xcb, 0xb1, 0x9e, 0x92, 0x7c, 0x8b, 0x9b, 0x76, 0x0d, 0xd9, 0x12, 0x25, 0x66,
+ 0xd7, 0xdd, 0x20, 0x6b, 0xcf, 0x4a, 0x62, 0x9b, 0xc1, 0xcc, 0x24, 0xf7, 0x70, 0x61, 0xa8, 0xce, 0xdc, 0x77,
+ 0x14, 0x71, 0xbc, 0xd4, 0x1b, 0x52, 0xf6, 0x04, 0x73, 0xd6, 0x71, 0x1c, 0xed, 0x11, 0x6e, 0x98, 0xf2, 0x3b,
+ 0xa1, 0x5e, 0x00, 0x92, 0x99, 0x27, 0xed, 0xe9, 0xd8, 0xf0, 0xe4, 0x89, 0x65, 0x27, 0x1b, 0x31, 0x66, 0xca,
+ 0x2e, 0x39, 0x36, 0xc6, 0xe8, 0x89, 0x06, 0x0f, 0xac, 0xb6, 0x5c, 0x9a, 0xdc, 0x70, 0x1e, 0x06, 0x6c, 0x06,
+ 0x51, 0x35, 0xcd, 0x76, 0x7e, 0x3d, 0xc5, 0x5b, 0x03, 0x49, 0xa8, 0xf6, 0xd5, 0x39, 0xcf, 0x01, 0x19, 0xde,
+ 0x86, 0x05, 0x42, 0x9e, 0x85, 0xa6, 0x6a, 0xa6, 0x08, 0x12, 0x30, 0xa5, 0x6c, 0xb9, 0x99, 0xa9, 0x18, 0xdb,
+ 0xc6, 0xb1, 0x51, 0x65, 0xc1, 0xaf, 0xe8, 0xaf, 0x1e, 0x45, 0x4f, 0x39, 0x60, 0x13, 0xc5, 0xea, 0x79, 0x39,
+ 0x4f, 0x2d, 0xa3, 0xfd, 0x63, 0x3a, 0x64, 0xe0, 0xa0, 0xb7, 0xc3, 0xa1, 0xc4, 0x98, 0xed, 0x43, 0xc4, 0xc8,
+ 0x2b, 0x2d, 0x0d, 0x6d, 0xd1, 0xd3, 0xbe, 0x91, 0x86, 0x53, 0xdf, 0x1a, 0x75, 0x04, 0xeb, 0x79, 0xb7, 0x0a,
+ 0x06, 0x05, 0x6e, 0x81, 0xd4, 0xac, 0xa5, 0x43, 0xcb, 0x11, 0x26, 0x3f, 0x90, 0x9f, 0x6a, 0x49, 0x17, 0x41,
+ 0xef, 0x35, 0x3a, 0x35, 0xf1, 0xaa, 0xe3, 0xc1, 0x82, 0xb6, 0xdb, 0xab, 0xd9, 0x1e, 0xc4, 0xbb, 0xbf, 0xd2,
+ 0xb6, 0x28, 0xb6, 0xcf, 0x35, 0x03, 0x20, 0xfd, 0xca, 0x5c, 0xe3, 0xa0, 0x28, 0xce, 0xa4, 0x8e, 0xcc, 0xb8,
+ 0x1a, 0x91, 0x87, 0x4e, 0x0e, 0xf8, 0x2f, 0x5b, 0x30, 0x8b, 0x79, 0x05, 0x9f, 0x4a, 0x9a, 0xc9, 0xfe, 0xa0,
+ 0x2e, 0xac, 0xa3, 0x52, 0xa3, 0x2c, 0x5f, 0xe6, 0xf5, 0xe4, 0x12, 0xcc, 0xed, 0x35, 0x2e, 0x28, 0x01, 0x56,
+ 0x84, 0x25, 0x96, 0x11, 0x68, 0x8c, 0x75, 0x5c, 0xb4, 0x83, 0x24, 0x23, 0x5f, 0x79, 0x69, 0xd7, 0x3b, 0x80,
+ 0x4c, 0xa5, 0x8b, 0x0b, 0x07, 0x26, 0x38, 0x73, 0x76, 0x17, 0x35, 0x5c, 0x0b, 0x67, 0x64, 0xcc, 0xec, 0xb1,
+ 0x8a, 0x63, 0x64, 0x9e, 0x66, 0xca, 0x3a, 0x17, 0x02, 0xae, 0xb4, 0x57, 0x24, 0x05, 0x83, 0xc7, 0xe2, 0x88,
+ 0xda, 0x36, 0x06, 0x13, 0xe6, 0xc1, 0x29, 0x53, 0xf3, 0xdc, 0x3d, 0x23, 0xa5, 0xc1, 0x41, 0x74, 0x57, 0xe2,
+ 0x4f, 0x9d, 0x01, 0x6d, 0x7d, 0x8c, 0x2d, 0x88, 0x09, 0x5e, 0x7d, 0x3e, 0x5d, 0x38, 0x17, 0xaf, 0x4e, 0x01,
+ 0x6c, 0x2d, 0x7b, 0x50, 0x17, 0x9a, 0x5e, 0xa8, 0x4a, 0x96, 0xa7, 0x84, 0x2a, 0x1c, 0x68, 0xa3, 0x3f, 0x83,
+ 0x1b, 0xb9, 0x2a, 0x02, 0x9f, 0x00, 0x5d, 0x1a, 0x0b, 0x14, 0x72, 0xcf, 0xe0, 0xf3, 0xe2, 0xdc, 0x98, 0xd3,
+ 0x44, 0x3a, 0x54, 0x07, 0xc1, 0x6e, 0x13, 0xdc, 0xad, 0x36, 0x03, 0x9a, 0x97, 0x28, 0x9c, 0x76, 0x55, 0xf0,
+ 0xc4, 0x41, 0xea, 0x6e, 0x05, 0x1b, 0xf5, 0x14, 0x92, 0xde, 0x31, 0x80, 0xec, 0x46, 0x44, 0x58, 0x5a, 0x9b,
+ 0x2f, 0x75, 0xcf, 0x32, 0xd7, 0x59, 0x62, 0x5b, 0x5a, 0x72, 0x1b, 0xa2, 0x5b, 0x5a, 0x6c, 0x3a, 0xe3, 0xe0,
+ 0x85, 0x58, 0x75, 0xb1, 0x3f, 0xb4, 0xde, 0xf9, 0xd7, 0x12, 0x69, 0xed, 0x4f, 0xcb, 0x31, 0x86, 0xa3, 0x5a,
+ 0x4d, 0xfe, 0x89, 0xd2, 0x93, 0x38, 0x68, 0x8c, 0x39, 0x33, 0x7d, 0x34, 0xe5, 0xb8, 0x2e, 0x08, 0x3a, 0x46,
+ 0xd9, 0x97, 0x66, 0xbc, 0x68, 0x49, 0x58, 0x03, 0xda, 0xaf, 0xf0, 0x38, 0x57, 0xe7, 0x8f, 0xc0, 0x9b, 0x6c,
+ 0x7b, 0xc3, 0x34, 0x48, 0x4d, 0x30, 0xdf, 0x53, 0x42, 0x74, 0xe1, 0x2c, 0xca, 0xe7, 0xc2, 0xb0, 0x57, 0xb6,
+ 0xd7, 0x76, 0x4c, 0x24, 0x7d, 0x28, 0xfc, 0xae, 0xd4, 0x1b, 0xff, 0xf1, 0x1a, 0xed, 0x9f, 0x6b, 0x04, 0xbf
+};
+
+// context = simple_context_pl
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x70, 0x6c, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79,
+ 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x61, 0x6a, 0x20, 0x6d, 0x69, 0x20, 0x24, 0x76, 0x72,
+ 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
+ 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x74, 0x72, 0x75, 0x73, 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x61, 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x22, 0x00,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00,
+ 0x14, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x62, 0x61,
+ 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x00, 0x64, 0x61, 0x6a, 0x00, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x00,
+ 0x6d, 0x69, 0x00, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79, 0x00, 0x74, 0x72, 0x75, 0x73,
+ 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00,
+ 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02, 0x01, 0x0d, 0x01, 0x0d, 0x1c, 0x16, 0x20, 0x03, 0x01,
+ 0x09, 0x0c, 0x01, 0x0b, 0x08, 0x0d, 0x01, 0x0c, 0x08, 0x10, 0x0e, 0x0f, 0x01, 0x1f, 0x21, 0x1c, 0x0d, 0x20,
+ 0x11, 0x0f, 0x15, 0x10, 0x0a, 0x01, 0x07, 0x0a, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70,
+ 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_POLISH__
#if defined(__PV_LANGUAGE_PORTUGUESE__)
// wake-word = olá computador
static const uint8_t KEYWORD_ARRAY[] = {
- 0xe5, 0x2b, 0xd9, 0x42, 0x17, 0x72, 0xbb, 0xf0, 0x38, 0x86, 0x9a, 0xd2, 0xfd, 0x6d, 0x37, 0x35, 0x21, 0xe8,
- 0x38, 0xcd, 0xf2, 0xd4, 0x95, 0x62, 0x4f, 0x44, 0x0e, 0xcc, 0x42, 0x95, 0xd5, 0x89, 0x04, 0x32, 0x59, 0x25,
- 0x09, 0x42, 0x87, 0x11, 0x6e, 0x45, 0xbf, 0x05, 0xf3, 0x41, 0x49, 0x24, 0xf6, 0xb5, 0x1f, 0x23, 0xd2, 0x4b,
- 0xad, 0x3f, 0xb3, 0x4a, 0xd7, 0x02, 0xb5, 0x35, 0x08, 0xb2, 0x64, 0x80, 0x0f, 0x6a, 0x8f, 0xa0, 0xa4, 0x99,
- 0x75, 0xcf, 0xcd, 0xcd, 0xda, 0x2d, 0x44, 0x40, 0x59, 0x36, 0x7b, 0x31, 0xc2, 0xee, 0xab, 0x61, 0x34, 0x1a,
- 0x5b, 0xbb, 0x12, 0xa1, 0x30, 0xcd, 0x8f, 0xb5, 0xb9, 0x8f, 0x16, 0x71, 0xa7, 0x24, 0x15, 0x70, 0x7e, 0xb5,
- 0x76, 0x55, 0xfd, 0x63, 0xf0, 0x48, 0x16, 0xe7, 0x9c, 0x73, 0xcd, 0xe6, 0xab, 0xf2, 0x6f, 0x06, 0xc5, 0x9c,
- 0x4a, 0x68, 0x75, 0x7b, 0xe5, 0x45, 0x47, 0xd2, 0x1a, 0x0a, 0x41, 0x09, 0xd7, 0x37, 0x3a, 0xd4, 0x17, 0x02,
- 0xe6, 0xe2, 0xa5, 0x0f, 0x3c, 0x57, 0x7d, 0xa8, 0xb7, 0x8d, 0xd0, 0x0e, 0x29, 0xda, 0x90, 0xda, 0x56, 0x1f,
- 0x7d, 0xb3, 0xa4, 0x7d, 0x72, 0x88, 0xe0, 0x54, 0xad, 0x58, 0xf8, 0xc0, 0xbd, 0xef, 0xb4, 0xc9, 0x9b, 0x38,
- 0x57, 0x2c, 0xdf, 0x4e, 0x09, 0x25, 0xb6, 0x5f, 0x00, 0x93, 0x8a, 0x58, 0xc3, 0xcf, 0x82, 0x7c, 0x18, 0xf1,
- 0x47, 0x68, 0xc9, 0xc4, 0xcd, 0x7a, 0xed, 0x7d, 0x4f, 0x32, 0x7c, 0x59, 0x37, 0xac, 0x54, 0x18, 0x72, 0x57,
- 0x4d, 0x1b, 0x8f, 0xdb, 0x5a, 0xfa, 0xda, 0xa1, 0x04, 0x3e, 0xea, 0x59, 0x95, 0xc1, 0x65, 0xee, 0xc3, 0xf3,
- 0x96, 0x80, 0x68, 0x0f, 0x6b, 0x94, 0x51, 0x2e, 0xfe, 0x55, 0x94, 0x1f, 0x1f, 0x5b, 0x71, 0x21, 0xba, 0xa1,
- 0x41, 0x21, 0xdb, 0x32, 0x26, 0xb6, 0x43, 0xe6, 0x96, 0x2c, 0xd7, 0x00, 0x35, 0x37, 0xfc, 0x44, 0x02, 0xb2,
- 0xa9, 0x5d, 0x82, 0x0b, 0xb4, 0xcd, 0xc1, 0x3f, 0x9d, 0x95, 0x25, 0x5c, 0x04, 0x3f, 0x6f, 0x47, 0x21, 0x21,
- 0xe8, 0xf8, 0x29, 0x34, 0x3d, 0x91, 0xbc, 0x20, 0x18, 0x21, 0x6d, 0x93, 0xac, 0x20, 0xe3, 0xc4, 0x25, 0xeb,
- 0x09, 0x97, 0xa9, 0x71, 0xa3, 0x89, 0xc7, 0xfc, 0x38, 0x30, 0x15, 0x47, 0x18, 0x30, 0x5f, 0xd2, 0x87, 0x89,
- 0x0a, 0x61, 0x84, 0x04, 0x23, 0x38, 0x26, 0xb0, 0x93, 0xa8, 0x74, 0x1e, 0x73, 0x38, 0xcb, 0x31, 0x88, 0xe4,
- 0x6d, 0x67, 0x46, 0x5e, 0x17, 0x04, 0x74, 0x8f, 0xa8, 0xf9, 0x8a, 0x5b, 0x9b, 0x36, 0x64, 0x80, 0xc5, 0xb2,
- 0x7f, 0xb3, 0xfa, 0xc9, 0xdb, 0x67, 0xc9, 0xa5, 0xdc, 0xf2, 0xc6, 0x86, 0xb9, 0x83, 0xb3, 0xb0, 0x18, 0x6e,
- 0xb9, 0xe8, 0x95, 0x49, 0x8c, 0x1f, 0x67, 0xc7, 0xb4, 0x95, 0x44, 0x65, 0xd7, 0xde, 0xf0, 0x4f, 0xce, 0xe2,
- 0x76, 0xf2, 0xc6, 0x7c, 0xc9, 0x3b, 0x29, 0x04, 0x73, 0x70, 0x4b, 0x91, 0x8e, 0x12, 0x61, 0x54, 0xf8, 0xe8,
- 0x29, 0x2f, 0xd1, 0xac, 0xc1, 0xe4, 0xa1, 0x17, 0x34, 0x8d, 0x48, 0xdf, 0xa3, 0xb6, 0xfb, 0xf5, 0x98, 0xba,
- 0xa1, 0x17, 0x74, 0xbe, 0x29, 0x50, 0xc2, 0xe3, 0xc9, 0x6f, 0xfe, 0xf0, 0xc1, 0x7d, 0x4d, 0x10, 0x66, 0x6c,
- 0x4d, 0x83, 0x99, 0x5c, 0x8d, 0xa9, 0x8c, 0xeb, 0xbd, 0xf4, 0x19, 0x33, 0xc9, 0xfb, 0xb1, 0x74, 0xc2, 0xa9,
- 0x75, 0x8f, 0x45, 0x0a, 0x4a, 0x39, 0xed, 0xaa, 0xac, 0x39, 0xc9, 0xef, 0x57, 0xe1, 0x8e, 0xf4, 0xe0, 0x01,
- 0xde, 0x84, 0x7d, 0x54, 0x39, 0x43, 0x8e, 0x27, 0x5e, 0x56, 0x4a, 0xab, 0x46, 0xc9, 0xbc, 0x3a, 0x06, 0xf7,
- 0x65, 0x74, 0x29, 0x2c, 0x4c, 0xac, 0xc7, 0xad, 0x66, 0x56, 0xbb, 0xa8, 0xcc, 0x2b, 0xaa, 0x87, 0x48, 0x93,
- 0x7f, 0x3d, 0xdd, 0x9b, 0x38, 0xe4, 0xb0, 0x22, 0x43, 0xa8, 0x59, 0x31, 0x63, 0xb0, 0xb1, 0x01, 0xe0, 0xa4,
- 0x20, 0x14, 0xe9, 0x1f, 0x59, 0x5f, 0x4a, 0x87, 0xfa, 0x81, 0x8f, 0x82, 0xd5, 0x5d, 0x96, 0xf5, 0xe7, 0x9d,
- 0x38, 0x49, 0x80, 0x65, 0x51, 0x09, 0x59, 0x0e, 0x71, 0x5e, 0x77, 0xce, 0xd7, 0xa7, 0x8a, 0x19, 0x94, 0x5f,
- 0xdc, 0x73, 0x9f, 0x31, 0xed, 0xf2, 0x29, 0x7c, 0xc6, 0xf2, 0xb4, 0x59, 0xf5, 0x16, 0x80, 0xef, 0x3d, 0x14,
- 0xd6, 0xa9, 0x03, 0x62, 0xee, 0x91, 0x4b, 0x84, 0x0d, 0xe0
+ 0x4b, 0x18, 0x62, 0x21, 0xfb, 0xc5, 0x95, 0x04, 0xad, 0xd7, 0xc2, 0x2b, 0x76, 0x8e, 0x69, 0x6f, 0x15, 0x34,
+ 0x46, 0x41, 0xbf, 0x7f, 0x94, 0xf9, 0x26, 0xf3, 0x23, 0xf4, 0xb5, 0x93, 0x53, 0xe6, 0x22, 0x1d, 0x8c, 0x40,
+ 0x07, 0xb2, 0x1f, 0xcd, 0xad, 0xe3, 0xa9, 0xc1, 0x09, 0x8d, 0x4e, 0x65, 0xd0, 0x21, 0x6f, 0x30, 0x7b, 0xd8,
+ 0xaa, 0xe8, 0xce, 0xdf, 0xcc, 0x11, 0xe5, 0x62, 0xf0, 0xb1, 0x01, 0x94, 0xd7, 0x78, 0xe5, 0x5f, 0x31, 0x62,
+ 0xe2, 0x89, 0xbf, 0x1d, 0x41, 0x82, 0xdb, 0xc5, 0x9c, 0x3c, 0x0a, 0x15, 0x90, 0x64, 0xb4, 0x3c, 0x0b, 0xa4,
+ 0x42, 0xc4, 0x43, 0x66, 0x06, 0x8f, 0x9d, 0xc7, 0xb3, 0x4f, 0xb2, 0x2b, 0x1e, 0x64, 0xe0, 0xd7, 0xc6, 0x00,
+ 0x94, 0x96, 0xa4, 0x3b, 0xdf, 0x52, 0xfe, 0x3b, 0xb1, 0x87, 0x38, 0x29, 0x96, 0x20, 0x0d, 0xd9, 0x29, 0x8f,
+ 0xe2, 0x15, 0x0d, 0x78, 0xbf, 0xbe, 0x5c, 0x00, 0x44, 0x92, 0x03, 0xcf, 0x02, 0x67, 0xb1, 0xe5, 0x49, 0x81,
+ 0x26, 0x04, 0x47, 0x43, 0xc2, 0xd2, 0x5d, 0xd7, 0xd2, 0x48, 0x9e, 0xcb, 0x26, 0x11, 0xfc, 0x5c, 0x2b, 0x26,
+ 0x57, 0x4a, 0x9a, 0xa4, 0xe9, 0x8c, 0xa2, 0x93, 0x02, 0x2a, 0x5b, 0x07, 0x0b, 0x10, 0xce, 0x5e, 0x6d, 0x07,
+ 0xb1, 0xc3, 0x4e, 0x2f, 0xad, 0xc4, 0x34, 0x2b, 0xb0, 0xe3, 0x50, 0x14, 0xb6, 0x0e, 0x08, 0x79, 0x00, 0x06,
+ 0xed, 0xa7, 0x98, 0x2c, 0xc4, 0x85, 0x08, 0x99, 0x21, 0x10, 0x7c, 0xe6, 0x0a, 0x92, 0xe4, 0x35, 0xa7, 0x45,
+ 0xb5, 0x56, 0x55, 0x67, 0x58, 0x68, 0xb1, 0xc9, 0x9f, 0xb1, 0x72, 0x5d, 0xcb, 0xcc, 0x76, 0x26, 0xf8, 0x52,
+ 0xc9, 0x16, 0xa8, 0x45, 0x69, 0xfb, 0xe6, 0xef, 0xbb, 0x34, 0x01, 0x59, 0x08, 0xbf, 0xf5, 0xcf, 0xf7, 0x83,
+ 0x3f, 0x1e, 0x13, 0x4f, 0x20, 0x2f, 0x40, 0x89, 0x65, 0x81, 0x5c, 0x87, 0x39, 0xb4, 0x10, 0x07, 0xb0, 0x87,
+ 0xc8, 0x55, 0x85, 0x8c, 0xbc, 0x41, 0xdd, 0x18, 0x76, 0xec, 0x70, 0x4e, 0x61, 0xaf, 0x0e, 0x28, 0x55, 0x66,
+ 0x18, 0x4e, 0x8c, 0x4d, 0x00, 0x82, 0x62, 0xb8, 0x22, 0x66, 0x69, 0xa8, 0x4b, 0xfa, 0x4e, 0x92, 0x9c, 0x76,
+ 0xfc, 0x83, 0x48, 0x0d, 0x26, 0x0d, 0xf7, 0xf3, 0xde, 0x49, 0x4e, 0xb4, 0xf9, 0x9d, 0xfb, 0xab, 0x62, 0xe2,
+ 0x2b, 0xa1, 0x25, 0xeb, 0x1e, 0x24, 0x24, 0x5c, 0xec, 0x64, 0x6d, 0xe5, 0xe6, 0xc6, 0xa1, 0xbe, 0x64, 0x71,
+ 0x7b, 0xa8, 0x5d, 0x01, 0xb1, 0x30, 0x22, 0x86, 0x34, 0xc5, 0x12, 0x37, 0xa3, 0x7c, 0x1d, 0x0a, 0x7c, 0xb8,
+ 0xea, 0x23, 0xe8, 0xfc, 0x4b, 0xa2, 0xed, 0x70, 0x3b, 0x14, 0xfb, 0x95, 0xb2, 0xec, 0x57, 0x12, 0x9d, 0xb9,
+ 0x34, 0x41, 0xa0, 0x48, 0x01, 0x38, 0xc7, 0x74, 0xd9, 0x42, 0x69, 0x25, 0xe9, 0xb6, 0x35, 0x49, 0x9c, 0xf5,
+ 0x89, 0x96, 0xd2, 0x94, 0x27, 0xbd, 0x36, 0x32, 0x57, 0x03, 0x12, 0x67, 0x22, 0x8e, 0xe3, 0xc7, 0x89, 0x07,
+ 0x5e, 0xfd, 0x19, 0xe9, 0x07, 0x28, 0x7b, 0xbd, 0x09, 0x7d, 0x32, 0xbc, 0x22, 0xce, 0x50, 0x96, 0x9d, 0x0f,
+ 0x4f, 0xd2, 0x5a, 0xe9, 0x92, 0x77, 0xbb, 0xc8, 0xd0, 0x04, 0x22, 0x3e, 0x8b, 0x95, 0x95, 0x40, 0xc8, 0x7e,
+ 0xc2, 0x2b, 0x91, 0x50, 0x47, 0x21, 0x49, 0xe9, 0x78, 0xcb, 0xef, 0xc7, 0xdd, 0x34, 0x10, 0xcb, 0x27, 0xac,
+ 0x66, 0xdb, 0x80, 0x44, 0xfa, 0xc2, 0x45, 0xd0, 0x1f, 0x7b, 0xc3, 0xe8, 0x2c, 0x97, 0x71, 0xac, 0x52, 0x1c,
+ 0x78, 0x73, 0x2f, 0xa7, 0x99, 0xc5, 0xd4, 0xa0, 0x42, 0xb5, 0x71, 0x1a, 0x50, 0x2f, 0x1d, 0xbe, 0x6e, 0xc0,
+ 0x5e, 0x8e, 0x5d, 0xc8, 0xd1, 0x92, 0x87, 0xa6, 0xe5, 0x4f, 0xdf, 0x06, 0xf8, 0xc3, 0x1d, 0x42, 0xd6, 0xd8,
+ 0x71, 0x54, 0x9d, 0x48, 0xb7, 0x76, 0x81, 0x35, 0x67, 0x4b, 0x13, 0x76, 0xcb, 0x62, 0x34, 0xe7, 0x30, 0x8a,
+ 0xe9, 0x40, 0x5a, 0x0f, 0xf7, 0xf8, 0xb5, 0x13, 0x8e, 0x85, 0x87, 0x54, 0xf5, 0xdd, 0x87, 0x87, 0x07, 0xd8,
+ 0xc4, 0xa5, 0xa2, 0x29, 0xb5, 0x0d, 0xb4, 0x5c, 0xd3, 0x43, 0xd6, 0xbb, 0x0b, 0x1c, 0xb5, 0xa2, 0x57, 0x65,
+ 0xa4, 0xe6, 0x30, 0x43, 0xb2, 0x31, 0x4c, 0x5c, 0xdf, 0xb4, 0x4e, 0x24, 0xe3, 0x19, 0x83, 0x03, 0x1b, 0xca,
+ 0x0b, 0xa8, 0x56, 0xc1, 0xc5, 0xc7, 0xde, 0xc2, 0x34, 0x3d
};
// context = luz_inteligente
@@ -2663,49 +3319,49 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_RUSSIAN__)
-// wake-word = privet kompyuter
+// wake-word = привет компьютер
static const uint8_t KEYWORD_ARRAY[] = {
- 0x37, 0x85, 0x26, 0x81, 0xea, 0x15, 0xb1, 0x70, 0x5e, 0x97, 0xbb, 0x61, 0x4d, 0xdd, 0x40, 0x32, 0xab, 0x59,
- 0x49, 0xc5, 0xe9, 0x0c, 0xef, 0xf1, 0xe5, 0x2a, 0x52, 0x27, 0x17, 0xcb, 0xb7, 0x1d, 0x56, 0x0c, 0xe2, 0x68,
- 0xf0, 0x6c, 0x5d, 0x52, 0x8e, 0x0e, 0xc6, 0x13, 0xa3, 0xab, 0xc2, 0xf9, 0x80, 0x8b, 0xb3, 0x32, 0xd2, 0x81,
- 0x93, 0xf2, 0x4f, 0xa7, 0x4f, 0x5d, 0x17, 0xd1, 0xcc, 0xf2, 0xa9, 0x1e, 0xdf, 0x98, 0x6e, 0xaf, 0x4c, 0xf3,
- 0x18, 0x10, 0xc6, 0x86, 0xc8, 0x28, 0xd2, 0x95, 0x12, 0xb6, 0x16, 0xf1, 0xe0, 0x9c, 0xff, 0xaf, 0x6c, 0xdf,
- 0x6d, 0x90, 0xd9, 0xc4, 0xec, 0xab, 0xa8, 0x68, 0x1b, 0x18, 0xa1, 0x0e, 0x58, 0x81, 0x3f, 0x8e, 0x8d, 0x71,
- 0xca, 0x2d, 0x8e, 0xef, 0x66, 0x75, 0xde, 0xb4, 0x34, 0x6d, 0x16, 0x90, 0x7b, 0xfb, 0x4d, 0x10, 0xa6, 0x89,
- 0xe8, 0x99, 0x99, 0x12, 0x10, 0xa8, 0x42, 0xb7, 0x23, 0xad, 0x3e, 0xa6, 0x5f, 0xb3, 0x6d, 0xc7, 0x0a, 0xf1,
- 0x8d, 0x2b, 0x59, 0x5b, 0xcb, 0xaf, 0x19, 0xbf, 0x7e, 0x7c, 0xd8, 0x4f, 0xad, 0x36, 0x95, 0xb2, 0x07, 0x4c,
- 0x87, 0xb5, 0x53, 0x64, 0x95, 0x11, 0x3d, 0xad, 0x22, 0x33, 0xf3, 0x89, 0x71, 0xb6, 0x9f, 0x9c, 0x68, 0xe8,
- 0xf4, 0x1a, 0x9f, 0xfe, 0x4e, 0x46, 0xf7, 0xc7, 0x39, 0x32, 0x6c, 0x94, 0x6e, 0xfd, 0x18, 0x92, 0x93, 0xcf,
- 0xdb, 0xdf, 0xbf, 0xcc, 0x55, 0x18, 0x64, 0x0a, 0x12, 0xf8, 0x35, 0x38, 0xbf, 0xa7, 0xd2, 0x08, 0x6c, 0x98,
- 0xc6, 0x51, 0x0f, 0xd5, 0xbc, 0x14, 0xf6, 0xac, 0x27, 0xd2, 0xef, 0xc8, 0xfa, 0x7c, 0x09, 0x4d, 0x61, 0xfa,
- 0xd2, 0xc0, 0xaa, 0x7d, 0xa4, 0x07, 0x4a, 0xa0, 0x9f, 0xe4, 0xfa, 0x5a, 0x15, 0x0d, 0x17, 0xd6, 0x72, 0x1d,
- 0x7a, 0x4b, 0x47, 0x1e, 0x8a, 0xaa, 0xfc, 0x81, 0x71, 0x4f, 0xdf, 0x84, 0x39, 0x0d, 0x22, 0x46, 0x67, 0x4f,
- 0x49, 0x68, 0x92, 0xfe, 0x39, 0x8d, 0xb2, 0x00, 0xf1, 0x7b, 0xae, 0x17, 0x41, 0x5f, 0x4f, 0x24, 0xba, 0x66,
- 0x74, 0x94, 0x40, 0x61, 0xa3, 0x94, 0x1c, 0x5a, 0xa5, 0xb9, 0x27, 0xa9, 0x8e, 0x3f, 0xc0, 0x25, 0xc6, 0xb3,
- 0x06, 0x60, 0x07, 0x16, 0x32, 0xb6, 0xe2, 0x1a, 0x83, 0x6a, 0x76, 0xd4, 0x03, 0xd9, 0x91, 0x1c, 0x89, 0x6e,
- 0xa5, 0xa4, 0x51, 0xf2, 0x0f, 0xfd, 0x0d, 0x69, 0xb9, 0x42, 0x92, 0x80, 0x97, 0x1f, 0x78, 0xfe, 0x18, 0xb0,
- 0x50, 0xbf, 0xd6, 0xdc, 0x1f, 0xc0, 0x62, 0x08, 0x3c, 0x30, 0x5d, 0xf7, 0x77, 0x53, 0x4f, 0xb7, 0xc3, 0xb5,
- 0xac, 0xa0, 0x6d, 0x2f, 0xf3, 0x2b, 0xc9, 0x30, 0xcc, 0x0e, 0xbd, 0xfe, 0xd1, 0x00, 0xb7, 0x80, 0x22, 0x11,
- 0x5b, 0x1e, 0x69, 0x05, 0xa1, 0xba, 0xc3, 0xd5, 0x03, 0xc6, 0x02, 0xd6, 0xd4, 0xee, 0x92, 0x1a, 0xfb, 0x3c,
- 0xfa, 0xd1, 0x85, 0xc5, 0x51, 0x8f, 0x4e, 0xc2, 0x19, 0x78, 0xbc, 0x99, 0x63, 0xee, 0x54, 0xee, 0x97, 0x09,
- 0x2b, 0x40, 0x12, 0x60, 0x8a, 0x32, 0x73, 0xa2, 0xf9, 0x2a, 0x5c, 0xb9, 0x7f, 0x4a, 0x37, 0x8c, 0x4e, 0x8b,
- 0xeb, 0x7a, 0x62, 0x12, 0x36, 0x4c, 0x4f, 0xba, 0xbb, 0xd8, 0x80, 0x01, 0x97, 0x18, 0x36, 0x98, 0x2b, 0xcf,
- 0xc3, 0xae, 0xb7, 0x61, 0x01, 0x07, 0x1a, 0x62, 0xe4, 0x80, 0x54, 0xf3, 0x10, 0x55, 0x7c, 0x76, 0x16, 0x47,
- 0x9f, 0xd1, 0x79, 0xe0, 0x6e, 0x85, 0xaa, 0x47, 0xab, 0xe6, 0x5c, 0xaf, 0x35, 0xb7, 0xf1, 0xe9, 0x0c, 0xb0,
- 0xea, 0xd7, 0x4c, 0x7f, 0x59, 0x64, 0x3f, 0xe5, 0xc4, 0x60, 0x65, 0xbd, 0xf9, 0x7a, 0xd5, 0x60, 0x00, 0x91,
- 0xab, 0x4e, 0x88, 0x9b, 0x83, 0xc5, 0x53, 0x66, 0xcc, 0x46, 0x49, 0xf2, 0xca, 0xf0, 0x85, 0x84, 0x4c, 0xcf,
- 0xbe, 0x08, 0xc0, 0xfc, 0xf4, 0x16, 0x94, 0x5c, 0x89, 0x55, 0xc7, 0x50, 0x31, 0x16, 0x43, 0x64, 0xcf, 0x59,
- 0x7d, 0x8b, 0x3d, 0x0d, 0x28, 0x89, 0x6b, 0x2c, 0xf2, 0x46, 0x76, 0x47, 0x0c, 0xbb, 0xfe, 0xfb, 0x88, 0x6e,
- 0xf6, 0x6a, 0x1a, 0x09, 0x42, 0x01, 0xa1, 0x3c, 0x65, 0xe0, 0xad, 0xe3, 0xbd, 0x9e, 0xa8, 0x06, 0x7b, 0x96,
- 0x98, 0xed, 0xc9, 0x91, 0xa4, 0x76, 0x9a, 0x02, 0x60, 0x5b, 0x9c, 0xc6, 0xd8, 0xab, 0xd9, 0x30, 0xc0, 0xcc,
- 0x4e, 0x76, 0xc7, 0x6c, 0x43, 0x11, 0x44, 0x94, 0xe4, 0xa3, 0x07, 0x46, 0x72, 0xe2, 0x37, 0xf9, 0x72, 0x70,
- 0x9b, 0x0a, 0x2b, 0xe2, 0xa6, 0x7e, 0xe4, 0x13, 0x07, 0x16, 0x4e, 0x8e, 0x1a, 0x94, 0xd6, 0x13, 0x9d, 0x53,
- 0xb6, 0xca, 0x50, 0x25, 0x20, 0xbc, 0x4f, 0x60, 0xa7, 0x38, 0x08, 0x8a, 0x40, 0xa6, 0xb8, 0x57, 0xa9, 0x68,
- 0x21, 0xb6, 0x48, 0xbe, 0x07, 0xab, 0x4f, 0xb9, 0xde, 0xc6, 0x4c, 0x8b, 0x71, 0xa7, 0xc1, 0xd1, 0x06, 0x3c,
- 0x3a, 0xe2, 0xa9, 0x68, 0x7f, 0x4f, 0x25, 0xa4, 0x2a, 0x07, 0xfa, 0x0c, 0xbf, 0x2e, 0xbe, 0x2f, 0xb2, 0x74,
- 0x57, 0xa6, 0x75, 0x34, 0x81, 0x91, 0xd1, 0x7a, 0x1c, 0x23, 0xe0, 0x55, 0xc1, 0xbf, 0x14, 0x1f, 0x57, 0x17,
- 0x44, 0x2a, 0x46, 0x3e, 0x44, 0xbc, 0xca, 0x95, 0x63, 0xfb, 0x6e, 0x87, 0xcb, 0xee, 0x24, 0x4c, 0x3a, 0xbc,
- 0x82, 0xd8, 0xc2, 0x4c
+ 0x9f, 0xc5, 0x7c, 0x5d, 0x85, 0x85, 0x5a, 0xb1, 0x37, 0x3c, 0xa4, 0xaa, 0x68, 0x10, 0x92, 0x2f, 0x72, 0x1a,
+ 0xab, 0x1f, 0x48, 0xd0, 0x5d, 0x0c, 0x8d, 0x4d, 0xf7, 0x6d, 0x33, 0xb7, 0x01, 0x33, 0x1a, 0x91, 0xa0, 0x8b,
+ 0x26, 0x38, 0x1c, 0x0b, 0x35, 0xa3, 0xcf, 0xe1, 0x46, 0x18, 0xf1, 0xce, 0xbf, 0x18, 0x08, 0xb5, 0x08, 0x28,
+ 0x24, 0xc7, 0x9d, 0xe3, 0xec, 0x2c, 0xdf, 0xae, 0x20, 0xd8, 0xaf, 0x2a, 0x44, 0x5c, 0x8a, 0x64, 0x10, 0x1d,
+ 0x4b, 0xd7, 0x03, 0x00, 0x8b, 0x6c, 0x1d, 0x54, 0xa1, 0xbc, 0xec, 0xba, 0xb7, 0x6a, 0x78, 0x11, 0xf6, 0xe5,
+ 0xb4, 0xb7, 0xcd, 0x36, 0xee, 0x85, 0x6d, 0x11, 0x37, 0x9f, 0xea, 0x73, 0xa0, 0xcd, 0x35, 0x31, 0xb8, 0x98,
+ 0xe7, 0x8e, 0xa5, 0x0e, 0x53, 0x4f, 0x6b, 0x98, 0xfd, 0x06, 0x1a, 0xf2, 0x3b, 0x1a, 0x22, 0x5c, 0x9f, 0xcd,
+ 0xa9, 0x96, 0x8f, 0x45, 0x87, 0x3b, 0x20, 0x1d, 0x70, 0x2d, 0xa3, 0x4c, 0x56, 0xad, 0x99, 0x41, 0xa5, 0x97,
+ 0xf4, 0x8f, 0xe8, 0x61, 0xa2, 0xe2, 0xb9, 0xa0, 0xd0, 0x00, 0xfd, 0xe8, 0xe8, 0x37, 0x38, 0x69, 0x82, 0x2f,
+ 0xee, 0x56, 0x07, 0x93, 0x4e, 0xfa, 0x7f, 0xf4, 0x2e, 0x02, 0xe1, 0x75, 0xf4, 0x4c, 0x3b, 0x68, 0xce, 0xb1,
+ 0x8c, 0x5a, 0xf1, 0x41, 0xca, 0x12, 0x50, 0xad, 0x6e, 0x49, 0x0f, 0x80, 0xb6, 0xf4, 0xe1, 0x4f, 0x00, 0x42,
+ 0x00, 0x46, 0x96, 0x82, 0x39, 0x4a, 0x9d, 0xa0, 0x14, 0x02, 0xac, 0x03, 0x7e, 0xb8, 0xd8, 0x31, 0xd4, 0x7e,
+ 0xfd, 0x84, 0x34, 0x8c, 0x69, 0x72, 0x78, 0x9b, 0x14, 0xae, 0xe0, 0xa0, 0x41, 0x43, 0xbc, 0x1c, 0xeb, 0x15,
+ 0xaf, 0xf3, 0x32, 0x37, 0xe1, 0x8b, 0x87, 0xdb, 0x08, 0xb7, 0x7c, 0xa1, 0xf5, 0x63, 0x1e, 0x05, 0x94, 0x1e,
+ 0xf2, 0xb8, 0x7b, 0x84, 0x44, 0x76, 0x19, 0x35, 0xdc, 0x3d, 0x97, 0x39, 0x20, 0x51, 0x45, 0x3a, 0x95, 0x91,
+ 0x2f, 0x02, 0x74, 0x57, 0x12, 0xef, 0xca, 0x11, 0xe4, 0xe2, 0x15, 0xbb, 0xb2, 0xd4, 0x4a, 0x4f, 0x2d, 0xa6,
+ 0x10, 0x50, 0x81, 0xa1, 0x1c, 0xd9, 0x07, 0x08, 0x38, 0xb4, 0xe5, 0xf4, 0xd1, 0x29, 0x75, 0xb1, 0x50, 0x94,
+ 0xe7, 0x15, 0x6d, 0x71, 0xff, 0x7c, 0xe5, 0xc6, 0xd5, 0xeb, 0xb1, 0x43, 0x44, 0xb9, 0x34, 0xb7, 0x21, 0x9f,
+ 0x9a, 0xc1, 0xbc, 0x1d, 0x1e, 0xb0, 0x12, 0x25, 0x0e, 0x22, 0x5c, 0x7a, 0xe1, 0x5c, 0x9f, 0x07, 0x2d, 0xaf,
+ 0x93, 0x07, 0x37, 0x53, 0x83, 0xf6, 0xb6, 0xb3, 0x9a, 0xce, 0xca, 0x1c, 0x40, 0x47, 0xf9, 0x29, 0x11, 0x07,
+ 0xaa, 0xd0, 0x91, 0x08, 0xd5, 0x31, 0xa1, 0x53, 0x71, 0x75, 0x74, 0x54, 0xa6, 0xfc, 0xe9, 0xc1, 0xca, 0x84,
+ 0x7c, 0x28, 0xb9, 0xb9, 0xa2, 0x4d, 0x34, 0xfb, 0xb1, 0x0b, 0xdd, 0x36, 0x71, 0xc5, 0x51, 0xaa, 0xa9, 0x8c,
+ 0xd8, 0xbf, 0x98, 0xe2, 0xea, 0x95, 0x79, 0x27, 0xcc, 0x91, 0xf8, 0x24, 0xb9, 0x04, 0x56, 0x05, 0x76, 0x78,
+ 0xf6, 0x9a, 0x31, 0x20, 0xed, 0x31, 0xc2, 0x58, 0x30, 0xc5, 0x6d, 0xec, 0x79, 0xe5, 0x6b, 0xc2, 0xd2, 0x16,
+ 0x1a, 0x47, 0x92, 0xdb, 0xe7, 0x74, 0x6a, 0xf0, 0x7c, 0x53, 0x73, 0x5f, 0x9b, 0x54, 0x62, 0x31, 0x6a, 0x25,
+ 0x1e, 0x4d, 0x5d, 0x97, 0xf5, 0xbc, 0xbd, 0x50, 0x9d, 0x5e, 0x81, 0x2a, 0xc4, 0xfd, 0x31, 0xd9, 0x23, 0x87,
+ 0x18, 0xc0, 0xa1, 0xa2, 0x0a, 0xe5, 0x1b, 0xf9, 0xce, 0xb5, 0x1a, 0x3d, 0xcd, 0xe8, 0xc6, 0xde, 0x23, 0x1d,
+ 0x7a, 0x08, 0x6e, 0x87, 0xaa, 0x1d, 0x3b, 0x25, 0x5d, 0x83, 0xbe, 0x2b, 0x59, 0x57, 0x89, 0xcd, 0xac, 0xa4,
+ 0x4c, 0xf4, 0x67, 0x3e, 0x0a, 0xf7, 0x1b, 0x28, 0x4f, 0x06, 0x3e, 0xe5, 0xb3, 0x48, 0x5a, 0xd7, 0x4f, 0x9f,
+ 0x90, 0x5b, 0x53, 0x1e, 0x75, 0xe3, 0x78, 0x0d, 0x25, 0xb8, 0xfe, 0x54, 0x15, 0xc5, 0xad, 0x72, 0xca, 0xb7,
+ 0x54, 0x39, 0xe5, 0x1b, 0x43, 0x9c, 0x72, 0x60, 0x96, 0xff, 0x8d, 0x7c, 0xb8, 0xdf, 0xe9, 0x34, 0x54, 0x3f,
+ 0x92, 0x68, 0x0e, 0xe1, 0xea, 0x1c, 0x4f, 0x11, 0x4b, 0xc0, 0x2b, 0xc7, 0x62, 0x75, 0xe4, 0xc2, 0xc5, 0x65,
+ 0xf2, 0xd2, 0xa4, 0x41, 0x93, 0xfb, 0x92, 0x14, 0x26, 0x9d, 0x0a, 0x71, 0xbe, 0x16, 0x19, 0x71, 0xd5, 0xda,
+ 0xf9, 0x27, 0x83, 0x06, 0x12, 0xeb, 0xeb, 0x9a, 0x18, 0x22, 0xc8, 0x88, 0x49, 0x9a, 0x3e, 0x51, 0xca, 0x1d,
+ 0xa2, 0x52, 0x85, 0xb9, 0xdc, 0x92, 0x8c, 0xf2, 0xbe, 0x53, 0x5f, 0x3b, 0x31, 0x39, 0x84, 0x71, 0x9a, 0x72,
+ 0xb6, 0xcf, 0xbf, 0x77, 0x04, 0xaa, 0x10, 0xc4, 0xa0, 0x31, 0xb9, 0x92, 0xd6, 0x97, 0x7c, 0xb8, 0x09, 0x5d,
+ 0xd5, 0x03, 0xad, 0x8a, 0x1b, 0x58, 0x61, 0x04, 0xbc, 0xdf, 0x6f, 0x70, 0x8f, 0xf0, 0xac, 0xe5, 0x7e, 0x22,
+ 0xb9, 0xf2, 0x21, 0x06, 0xd0, 0x48, 0x26, 0xcd, 0x01, 0x2b, 0x5b, 0xa7, 0x2c, 0x3a, 0xc9, 0x7f, 0x6c, 0xdd,
+ 0x05, 0x1a, 0x91, 0x5e, 0xa7, 0x3e, 0x53, 0x3d, 0x31, 0x86, 0xad, 0xaf, 0x4e, 0xd6, 0xfc, 0x22, 0x1d, 0xb1,
+ 0x05, 0x7a, 0x58, 0x05, 0x33, 0xdc, 0x3a, 0x58, 0x78, 0xcc, 0x4a, 0xbb, 0x9c, 0xb8, 0x35, 0x3d, 0xbf, 0x27,
+ 0x75, 0xfe, 0x3f, 0x5b
};
// context = simple_context_ru
@@ -2752,461 +3408,38 @@ static const uint8_t CONTEXT_ARRAY[] = {
#endif // __PV_LANGUAGE_RUSSIAN__
-#if defined(__PV_LANGUAGE_DUTCH__)
-
-// wake-word = hallo computer
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xbc, 0xb9, 0x24, 0xa6, 0xc0, 0x74, 0x10, 0x7f, 0xe4, 0x49, 0x9f, 0xe0, 0x69, 0x77, 0x3d, 0xd3, 0x7e, 0x20,
- 0x32, 0x30, 0x04, 0xa0, 0xe2, 0xdd, 0x5f, 0x2d, 0x08, 0x39, 0x70, 0x6e, 0xb4, 0xac, 0x48, 0xc2, 0x84, 0x95,
- 0xc2, 0xee, 0xab, 0x0b, 0xa4, 0x5c, 0x2d, 0x96, 0x53, 0x03, 0x00, 0xf3, 0x37, 0xb2, 0xd5, 0x8a, 0x2e, 0x47,
- 0xb4, 0x0b, 0x73, 0x8c, 0x80, 0x06, 0x95, 0xf6, 0xa3, 0xf2, 0x16, 0xde, 0x92, 0xcc, 0x45, 0x69, 0xd6, 0x8f,
- 0xc1, 0xd6, 0x4a, 0xa8, 0xaa, 0xb8, 0x80, 0x8f, 0xc2, 0xc5, 0x8a, 0x50, 0xfb, 0xa3, 0x70, 0xf2, 0x3e, 0xcf,
- 0x7a, 0xb4, 0x19, 0x20, 0xbd, 0xf7, 0xb6, 0xc6, 0x7c, 0xe1, 0xbb, 0xcd, 0x25, 0x63, 0x3b, 0x73, 0x65, 0x31,
- 0x92, 0x75, 0xf6, 0x30, 0xd2, 0x14, 0x9d, 0xc7, 0x58, 0x29, 0x4c, 0xdf, 0x71, 0x5b, 0x63, 0x3e, 0x22, 0x4e,
- 0x6b, 0x53, 0x18, 0x71, 0x9f, 0x79, 0xb5, 0x20, 0xa9, 0xba, 0x45, 0x00, 0xd0, 0xa0, 0xfd, 0x2a, 0x31, 0xa6,
- 0x84, 0x20, 0x18, 0xe9, 0x3d, 0x6b, 0x2e, 0x5c, 0xcd, 0xf8, 0x06, 0xed, 0x19, 0x86, 0x8f, 0x30, 0xd4, 0xf8,
- 0x78, 0xd4, 0x71, 0x6a, 0x05, 0x4b, 0xf2, 0x7c, 0xf5, 0x01, 0x12, 0x06, 0x71, 0x9f, 0xda, 0x25, 0x03, 0xb9,
- 0x7f, 0x23, 0xfb, 0x9c, 0x43, 0x31, 0x6f, 0x79, 0xac, 0xc2, 0xdf, 0xf5, 0x0e, 0xc0, 0xed, 0x1c, 0xa7, 0x49,
- 0xbc, 0x62, 0x0f, 0x55, 0x26, 0x5e, 0x83, 0x86, 0xc8, 0xd6, 0xf7, 0xde, 0x22, 0x81, 0xe4, 0x9d, 0xd5, 0xde,
- 0x57, 0xbb, 0x02, 0x3f, 0x4c, 0x6e, 0xe4, 0x3f, 0x19, 0x5f, 0x3a, 0x00, 0x56, 0x85, 0x4f, 0x43, 0xa6, 0x28,
- 0x16, 0x9d, 0x06, 0xeb, 0xb3, 0x44, 0x99, 0xa0, 0x85, 0x31, 0xd8, 0x9d, 0x04, 0x6a, 0x54, 0x13, 0x07, 0x78,
- 0x60, 0x96, 0x49, 0x45, 0x27, 0xc7, 0x39, 0x86, 0x81, 0x12, 0xf2, 0xa6, 0x9a, 0x85, 0x5a, 0x32, 0xf5, 0x2e,
- 0xe8, 0xdd, 0x48, 0x89, 0x0b, 0x33, 0xf6, 0x07, 0xb3, 0xa8, 0x01, 0xf0, 0xbd, 0x8c, 0x1a, 0x8c, 0x91, 0x80,
- 0xeb, 0x46, 0xc1, 0xcd, 0x07, 0x64, 0x74, 0xc6, 0x88, 0xa4, 0xcb, 0xe5, 0xe2, 0x7c, 0x94, 0xa2, 0x9f, 0xfe,
- 0xe4, 0x22, 0xef, 0x2f, 0x0f, 0x40, 0xd8, 0x54, 0xca, 0xe7, 0xdb, 0xcf, 0xcd, 0x1d, 0x65, 0xbf, 0xd4, 0x69,
- 0xcf, 0x49, 0x12, 0x41, 0x29, 0x4e, 0x2e, 0xce, 0x44, 0xeb, 0xb8, 0x65, 0x4d, 0x6f, 0xdc, 0x4b, 0xd8, 0x22,
- 0x01, 0xb3, 0x52, 0xbe, 0xe8, 0xef, 0xa0, 0x8b, 0xf2, 0x49, 0x74, 0x17, 0x00, 0x63, 0x15, 0x23, 0xdb, 0xf5,
- 0xd4, 0xc0, 0x6f, 0x9f, 0x12, 0xeb, 0x8e, 0xf2, 0x64, 0x69, 0x2b, 0xe4, 0xe7, 0x0d, 0x08, 0xad, 0xc9, 0x3b,
- 0x0d, 0xbb, 0x1e, 0x4b, 0x52, 0xb6, 0x5c, 0xa0, 0x9b, 0x4b, 0x2e, 0x69, 0x3d, 0xab, 0x42, 0x87, 0x23, 0xfe,
- 0x3b, 0x8a, 0x9a, 0xf5, 0x17, 0x82, 0xb4, 0x23, 0x24, 0x00, 0x00, 0x44, 0xba, 0xd2, 0xb9, 0x53, 0x79, 0x36,
- 0xf0, 0x72, 0xb5, 0x05, 0x74, 0x1d, 0xfa, 0x37, 0x14, 0x00, 0xd9, 0x29, 0x7b, 0x51, 0x72, 0x44, 0xd9, 0xcc,
- 0x58, 0xde, 0xaa, 0x81, 0x92, 0x9c, 0x50, 0xd4, 0x13, 0x39, 0x7b, 0x2d, 0x0a, 0xbb, 0xc0, 0x21, 0x5a, 0xce,
- 0x0b, 0xe9, 0x67, 0x3e, 0xf4, 0x41, 0xd0, 0x0f, 0x46, 0x99, 0x22, 0x62, 0x37, 0xc3, 0xa1, 0xbf, 0x8c, 0x28,
- 0xa6, 0xc5, 0x86, 0xc3, 0x1d, 0x2f, 0xd2, 0xaf, 0x60, 0x94, 0x28, 0x5e, 0xc3, 0x6f, 0xf0, 0xe0, 0x1a, 0x55,
- 0xb4, 0x04, 0x82, 0xa3, 0xf8, 0xbd, 0x20, 0x58, 0xdb, 0x91, 0x6b, 0x09, 0xc5, 0x28, 0x39, 0xe3, 0x83, 0x2e,
- 0xcf, 0xe7, 0x74, 0xc8, 0x1d, 0x55, 0x69, 0x5e, 0x81, 0x43, 0xe8, 0x69, 0xc3, 0x22, 0xe4, 0x8c, 0x7a, 0xd7,
- 0x92, 0x22, 0xf4, 0x9a, 0x4d, 0x99, 0xbd, 0x21, 0x70, 0xda, 0xec, 0x70, 0x4d, 0x3b, 0xca, 0x13, 0x92, 0xe1,
- 0xfd, 0xf3, 0xdb, 0x1d, 0x43, 0x7f, 0x30, 0xc7, 0xe7, 0x92, 0x7d, 0xbd, 0xa9, 0x19, 0x57, 0x43, 0xe3, 0x79,
- 0xcd, 0xb5, 0xe0, 0xc3, 0x27, 0x44, 0xff, 0xff, 0x91, 0x44, 0xef, 0x77, 0x0a, 0x89, 0x4f, 0xd2, 0xad, 0xfc,
- 0x5e, 0xeb, 0xb3, 0xe6, 0x12, 0x57, 0xdd, 0xd6, 0xe6, 0x51, 0xd2, 0x60, 0x8a, 0x44, 0x89, 0xdf, 0x64, 0xda,
- 0x11, 0x88, 0x95, 0x7c, 0x9d, 0x0d, 0x4f, 0x25, 0x77, 0x2e, 0xae, 0x8e, 0xa8, 0xf0, 0xa1, 0x54, 0xe4, 0x88,
- 0x86, 0x74, 0x75, 0x1f, 0x90, 0xd6, 0x0b, 0xfd
-};
-
-// context = simple_context_nl
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x6c, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x84, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x20, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x65, 0x65, 0x66, 0x20, 0x6d, 0x65, 0x20, 0x65, 0x65, 0x6e, 0x20, 0x24,
- 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73,
- 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f, 0x73, 0x22,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x22, 0x00,
- 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00,
- 0x17, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2c, 0x00,
- 0x00, 0x00, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x00, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x00, 0x64,
- 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x00, 0x65, 0x65, 0x6e, 0x00, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f,
- 0x73, 0x00, 0x67, 0x65, 0x65, 0x66, 0x00, 0x6d, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00,
- 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
- 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x20, 0x00,
- 0x00, 0x00, 0x03, 0x14, 0x05, 0x04, 0x27, 0x04, 0x23, 0x1d, 0x04, 0x26, 0x15, 0x05, 0x23, 0x14, 0x15, 0x16,
- 0x25, 0x1b, 0x08, 0x10, 0x09, 0x14, 0x21, 0x0f, 0x04, 0x12, 0x15, 0x29, 0x08, 0x09, 0x0f, 0x25, 0x05, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
- 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
- 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68,
- 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_DUTCH__
-
-#if defined(__PV_LANGUAGE_HINDI__)
-
-// wake-word = namaste putra
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xfc, 0x11, 0xf1, 0xd0, 0x6c, 0x2a, 0xd0, 0x4f, 0xf5, 0x04, 0xa7, 0xe2, 0x01, 0x65, 0xe4, 0xdd, 0x03, 0x86,
- 0x54, 0xb1, 0x7b, 0x49, 0x3a, 0x79, 0x4d, 0xe7, 0x1c, 0x64, 0x0e, 0x0b, 0xa7, 0xb7, 0xe4, 0x8b, 0x7f, 0x04,
- 0x97, 0xa7, 0x63, 0x79, 0xaa, 0x85, 0x1a, 0x08, 0x71, 0x80, 0x58, 0x43, 0x57, 0x25, 0xe6, 0x7c, 0x96, 0x59,
- 0xb7, 0x66, 0xd6, 0x11, 0x77, 0x90, 0x90, 0xd9, 0xf8, 0x24, 0xfa, 0x78, 0xeb, 0xdb, 0xba, 0xdc, 0xe5, 0x99,
- 0xd5, 0xca, 0x95, 0x07, 0xfa, 0xd3, 0xe0, 0xe8, 0x83, 0x82, 0x62, 0xb0, 0x6c, 0x62, 0x35, 0xec, 0x9a, 0x3b,
- 0x62, 0x04, 0x30, 0xc0, 0x02, 0x72, 0x54, 0xb8, 0xed, 0x14, 0x1a, 0x58, 0xd0, 0xf9, 0x5a, 0x57, 0x07, 0x31,
- 0x15, 0xe6, 0xc1, 0x7c, 0x62, 0xa2, 0xa8, 0x7d, 0xcc, 0x1b, 0xf0, 0x25, 0xd8, 0x39, 0x38, 0x54, 0xbc, 0xfd,
- 0x2a, 0x68, 0xac, 0x7e, 0x46, 0x57, 0xc5, 0x7f, 0x7f, 0x29, 0x2c, 0x4b, 0x99, 0x7a, 0x6d, 0xa7, 0x07, 0xdc,
- 0xeb, 0x6b, 0x87, 0x90, 0x7f, 0x17, 0xab, 0x2a, 0x9e, 0x5c, 0x73, 0x07, 0xfe, 0xc8, 0x48, 0xa8, 0xc0, 0x07,
- 0x58, 0x10, 0xd8, 0x60, 0xcc, 0xa4, 0x4a, 0x2a, 0x5d, 0x0d, 0x6a, 0xcd, 0xe1, 0xc9, 0x65, 0x48, 0xce, 0x13,
- 0x27, 0x7d, 0xed, 0x4f, 0x8f, 0x1a, 0x9e, 0x21, 0x83, 0xb7, 0x39, 0x0c, 0x5f, 0xcf, 0xb5, 0x75, 0xc6, 0x1d,
- 0x61, 0x18, 0x4a, 0xe2, 0x3e, 0x6d, 0xa0, 0x56, 0xe8, 0x19, 0xe2, 0xad, 0xcf, 0x4b, 0x80, 0x25, 0x71, 0x76,
- 0xd1, 0x58, 0x62, 0x0b, 0x35, 0x6f, 0x6b, 0xaf, 0xfd, 0x26, 0x62, 0xde, 0xfd, 0x5e, 0x3a, 0xac, 0x08, 0x9d,
- 0xde, 0x24, 0x83, 0x89, 0xef, 0x79, 0xb8, 0xdb, 0x5d, 0x72, 0x4f, 0x50, 0x0b, 0x34, 0xe3, 0xe2, 0x8e, 0x34,
- 0xe3, 0x5e, 0x11, 0xbd, 0x09, 0x04, 0x21, 0x89, 0xf6, 0xc9, 0x0c, 0x38, 0xae, 0xee, 0xa7, 0x00, 0x5e, 0xf3,
- 0x89, 0x57, 0x5b, 0xe6, 0x08, 0x5d, 0x15, 0x0b, 0x4d, 0x00, 0x6d, 0x82, 0x04, 0xa6, 0xd4, 0x9a, 0x82, 0x35,
- 0xff, 0xc4, 0x68, 0xff, 0xcf, 0x28, 0x8a, 0xb0, 0x0e, 0x92, 0x05, 0xad, 0x06, 0x36, 0x95, 0x50, 0xd0, 0xdc,
- 0x94, 0x8c, 0xc6, 0xc2, 0x88, 0x96, 0x96, 0x8a, 0x46, 0x58, 0x72, 0xb0, 0x91, 0x51, 0x9b, 0x3d, 0x04, 0x5c,
- 0x96, 0x73, 0x6f, 0x01, 0x2f, 0xcd, 0x50, 0xa2, 0x64, 0x48, 0xa5, 0xd9, 0x48, 0x58, 0x06, 0x94, 0xf3, 0xf7,
- 0xc0, 0xb7, 0x5e, 0x53, 0xe7, 0x7c, 0x00, 0x1d, 0x24, 0x1f, 0x03, 0x93, 0xbf, 0x1d, 0xc1, 0xf0, 0x18, 0xd9,
- 0x8c, 0x6e, 0xb4, 0x93, 0xa2, 0x4f, 0x31, 0xfa, 0x58, 0x2d, 0xe9, 0x0b, 0xf7, 0x61, 0xa8, 0x10, 0x99, 0xea,
- 0x85, 0x0b, 0x9d, 0xb1, 0xce, 0xd0, 0x7f, 0x78, 0x22, 0xdf, 0xb5, 0x03, 0x9b, 0xd8, 0xa1, 0x6c, 0xad, 0xdd,
- 0xf6, 0x06, 0x75, 0x2d, 0x20, 0x9a, 0x92, 0x6a, 0xc6, 0x57, 0x17, 0x78, 0x43, 0x26, 0xea, 0x19, 0xfd, 0x16,
- 0xdf, 0xb4, 0x4e, 0xf6, 0x86, 0x0a, 0x9f, 0xf8, 0x78, 0x3d, 0x49, 0x43, 0xc8, 0xdf, 0xd7, 0xd1, 0x42, 0xb6,
- 0x49, 0x5c, 0x6a, 0x07, 0x05, 0xf5, 0x7b, 0x18, 0xb9, 0x5e, 0xda, 0xe9, 0xcf, 0x45, 0x02, 0xfa, 0x2b, 0x68,
- 0x49, 0x21, 0x10, 0xd3, 0x70, 0x11, 0x64, 0xd4, 0xda, 0xcc, 0x83, 0xdc, 0xa3, 0x71, 0xbb, 0xf2, 0x48, 0x91,
- 0xac, 0xd4, 0x50, 0xf2, 0x63, 0x88, 0x66, 0x04, 0xc8, 0xcf, 0x13, 0xf4, 0x39, 0x80, 0x0b, 0xa6, 0xf5, 0xd9,
- 0x0a, 0x8c, 0xb7, 0x9c, 0xcc, 0xc8, 0x13, 0xb4, 0x9a, 0x74, 0x93, 0xeb, 0x2b, 0x94, 0xad, 0x94, 0xc9, 0xcf,
- 0xab, 0xad, 0x78, 0xad, 0x44, 0xf1, 0x85, 0x6f, 0xe7, 0x5b, 0x7e, 0x83, 0x74, 0xb6, 0xdb, 0xaf, 0x79, 0xe5,
- 0xb3, 0xab, 0x4c, 0x78, 0xbd, 0xb6, 0x1c, 0x7c, 0xfe, 0x3e, 0x8b, 0x31, 0xe4, 0x28, 0x3f, 0x16, 0xbb, 0xf3,
- 0xe2, 0x90, 0x15, 0xfe, 0x79, 0x2d, 0x56, 0xc5, 0xc0, 0xbf, 0x43, 0x33, 0x05, 0xe3, 0x94, 0x31, 0x9f, 0x2e,
- 0x1a, 0x40, 0xa7, 0x80, 0xb1, 0xbe, 0x69, 0x60, 0xea, 0xc3, 0x59, 0xc3, 0x52, 0x46, 0x8c, 0xc7, 0x9e, 0xa6,
- 0x59, 0x3d, 0x13, 0x33, 0x6f, 0xda, 0xbf, 0x30, 0xf9, 0xb5, 0x3c, 0xb5, 0xb9, 0x9a, 0x59, 0x53, 0xe6, 0x7e,
- 0x6d, 0x7f, 0xd5, 0xb4, 0xeb, 0xe3, 0x47, 0x5c, 0x4d, 0xfe, 0x04, 0xac, 0xc2, 0xa3, 0x4d, 0xd7, 0x75, 0xb9,
- 0x95, 0x79, 0x90, 0xf1, 0x55, 0xb0, 0xc3, 0x4d, 0xed, 0x44, 0x22, 0x33, 0x0f, 0x5c, 0x75, 0xf8, 0x91, 0x29,
- 0x83, 0x46, 0x68, 0x84, 0x82, 0x87, 0x59, 0x3e, 0x86, 0x27, 0xf3, 0x7d, 0xe5, 0x4c, 0x9e, 0x43, 0xc4, 0x9d,
- 0xc0, 0x9e, 0xc5, 0x20, 0xc4, 0x7c, 0x33, 0x4b, 0x1c, 0x53, 0xbc, 0x68, 0x83, 0xea, 0x33, 0xac, 0xb9, 0x78,
- 0x32, 0xb3, 0x45, 0x41, 0x63, 0x5e, 0x7e, 0x16, 0x75, 0x0b, 0xb2, 0x22, 0x4d, 0x92
-};
-
-// context = simple_context_hi
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x68, 0x69, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0,
- 0xa4, 0xbe, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70,
- 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4,
- 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x20, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95, 0x20,
- 0x24, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x20, 0xe0, 0xa4, 0xa6,
- 0xe0, 0xa5, 0x8b, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0,
- 0xa4, 0xb8, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0,
- 0xa4, 0xac, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5,
- 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87,
- 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
- 0x3b, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95,
- 0x00, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xa6, 0xe0,
- 0xa5, 0x8b, 0x00, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0, 0xa4, 0xbe, 0xe0, 0xa4, 0xb8,
- 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x00, 0xe0,
- 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0xe0, 0xa4, 0xb8,
- 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0, 0xa4, 0xac,
- 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
- 0x20, 0x00, 0x00, 0x00, 0x0e, 0x17, 0x17, 0x0e, 0x19, 0x05, 0x0a, 0x1d, 0x1e, 0x15, 0x05, 0x24, 0x05, 0x1a,
- 0x2a, 0x16, 0x0e, 0x21, 0x04, 0x24, 0x07, 0x04, 0x21, 0x14, 0x24, 0x28, 0x21, 0x03, 0x06, 0x0e, 0x21, 0x14,
- 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
- 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_HINDI__
-
-#if defined(__PV_LANGUAGE_ARABIC__)
-
-// wake-word = coffee
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xd5, 0x50, 0x75, 0xd2, 0x3e, 0x9a, 0x61, 0xe9, 0xf5, 0xd8, 0xba, 0xd9, 0x44, 0x1b, 0xf9, 0x81, 0xc8, 0xe3,
- 0x17, 0x2a, 0x3f, 0xdc, 0xd2, 0x0c, 0x3c, 0x13, 0x4d, 0x91, 0xbd, 0xc3, 0x7d, 0x86, 0x88, 0xa4, 0x80, 0xab,
- 0x44, 0x0f, 0x3e, 0xa6, 0xc5, 0x06, 0x1e, 0xd8, 0x10, 0x3a, 0xc1, 0x30, 0x86, 0xba, 0xaf, 0xa7, 0xb9, 0x01,
- 0xfa, 0x8b, 0x69, 0x3a, 0xe4, 0xa8, 0xc7, 0x9a, 0xc8, 0xf4, 0x54, 0xf9, 0x4b, 0x5b, 0xed, 0x6e, 0xdf, 0xda,
- 0xfc, 0x48, 0x92, 0xda, 0xb6, 0x8d, 0x4b, 0xfd, 0x19, 0x18, 0x22, 0x0c, 0x20, 0xa5, 0x59, 0xaf, 0x12, 0x9c,
- 0x1a, 0x96, 0xb2, 0xf6, 0x2a, 0x62, 0x81, 0x53, 0x46, 0x6c, 0x73, 0x85, 0x37, 0x9e, 0xf4, 0xce, 0x35, 0xcb,
- 0xec, 0x39, 0x54, 0x4d, 0x04, 0x5f, 0xed, 0x83, 0xd1, 0xba, 0xf7, 0x3a, 0x74, 0x21, 0xb9, 0x21, 0xdc, 0xc1,
- 0x24, 0x7c, 0x90, 0xf7, 0x00, 0x4f, 0x0b, 0x68, 0x7f, 0x23, 0xea, 0x14, 0x75, 0xb1, 0x32, 0xb7, 0xcc, 0xfb,
- 0x10, 0xc1, 0xd1, 0xf2, 0x33, 0x8e, 0xd3, 0x58, 0x38, 0xad, 0x77, 0xe7, 0xc4, 0x4f, 0x68, 0x9c, 0x58, 0x82,
- 0x01, 0x8b, 0x96, 0x4c, 0xfd, 0x54, 0xbc, 0xae, 0xe4, 0x24, 0xa9, 0x50, 0xe9, 0xc3, 0xb4, 0x40, 0x53, 0x0f,
- 0x4d, 0xa5, 0x67, 0x3e, 0xfa, 0x13, 0xf2, 0x82, 0xa4, 0x01, 0x11, 0xa9, 0x8d, 0xa0, 0xa6, 0x05, 0x47, 0x46,
- 0x56, 0x40, 0x0b, 0x96, 0x08, 0x6c, 0x57, 0xf0, 0xd5, 0x0e, 0xdc, 0x13, 0x67, 0xae, 0xfb, 0xbf, 0xea, 0x01,
- 0x36, 0x61, 0x74, 0x0b, 0x75, 0x80, 0x3f, 0x48, 0xbe, 0x96, 0x62, 0x9a, 0xc6, 0xde, 0x36, 0x3a, 0xe4, 0x13,
- 0x41, 0xb2, 0xbf, 0xdd, 0x87, 0x13, 0x2d, 0x8d, 0x7f, 0xad, 0x9a, 0x2e, 0xef, 0x18, 0x33, 0x06, 0xca, 0xdf,
- 0x23, 0x30, 0x43, 0x4f, 0x89, 0x53, 0x19, 0x55, 0xce, 0x32, 0x0a, 0xef, 0x0c, 0x50, 0xab, 0xa8, 0x9a, 0x8c,
- 0x8f, 0xee, 0x72, 0x92, 0x9d, 0x37, 0xca, 0xdb, 0x23, 0x8f, 0x6e, 0x67, 0x74, 0xba, 0x2c, 0x67, 0x98, 0xe2,
- 0x26, 0x55, 0xf9, 0xb9, 0xf2, 0x77, 0xf2, 0xfb, 0x4d, 0xbd, 0x5b, 0xf1, 0x97, 0xe3, 0x79, 0x0d, 0xbc, 0x88,
- 0xbf, 0xca, 0xfd, 0xdf, 0x08, 0xe4, 0xa1, 0x12, 0x3c, 0xa4, 0xc0, 0x84, 0x55, 0xb2, 0xcc, 0x0a, 0xb5, 0xfb,
- 0xde, 0x9d, 0xd5, 0x44, 0x80, 0x6a, 0x8c, 0x4e, 0xc9, 0x38, 0x2c, 0x88, 0x2f, 0x4f, 0xa0, 0xab, 0x24, 0x5b,
- 0xa1, 0x1c, 0x0a, 0x41, 0x59, 0xc9, 0x17, 0x45, 0xa4, 0x54, 0x77, 0xcd, 0xef, 0x39, 0x29, 0x55, 0xb1, 0x23,
- 0x05, 0xda, 0x1b, 0x0d, 0xcd, 0x3e, 0x2a, 0xbf, 0x2f, 0xb6, 0x44, 0x8a, 0x50, 0x08, 0xd6, 0x76, 0x67, 0x49,
- 0xbf, 0xfc, 0xff, 0xdd, 0x8c, 0xc8, 0x20, 0x1c, 0x87, 0x2b, 0x06, 0x9e, 0x62, 0x56, 0xf5, 0x01, 0x43, 0x4e,
- 0x46, 0x53, 0x2c, 0x31, 0x2a, 0x63, 0x57, 0xc6, 0x7f, 0x3b, 0xf5, 0x12, 0x59, 0x1b, 0xe7, 0x4b, 0x1e, 0x18,
- 0xe5, 0xb5, 0x0f, 0xcc, 0x47, 0x79, 0x85, 0x50, 0xb6, 0x0e, 0xab, 0xd7, 0xc0, 0x3d, 0xb1, 0x83, 0x8f, 0xed,
- 0x7f, 0xe5, 0xd9, 0x56, 0xc0, 0x3a, 0xd2, 0x4b, 0x34, 0x6e, 0x0f, 0x5a, 0x69, 0xab, 0x8b, 0x8a, 0xcd, 0xa8,
- 0x4d, 0x75, 0x4d, 0x04, 0x56, 0x01, 0x89, 0x74, 0xe6, 0x9e, 0x30, 0xbc, 0xa1, 0x65, 0x10, 0x34, 0x8e, 0x88,
- 0x16, 0x89, 0xd4, 0x54, 0xf9, 0x16, 0x8b, 0xb5, 0x45, 0xea, 0xc1, 0x2f, 0xd7, 0x1b, 0x0f, 0xe9, 0x98, 0x3b,
- 0xc3, 0xf5, 0x37, 0xb8, 0x7f, 0x2e, 0x1b, 0x25, 0x5e, 0x24, 0x35, 0xab, 0x02, 0x72, 0x7c, 0xba, 0xf7, 0xdf,
- 0x8b, 0xab, 0x45, 0xce, 0x75, 0x57, 0xfc, 0x9e, 0x04, 0x03, 0x51, 0x76, 0x1d, 0x68, 0x4b, 0x59, 0x18, 0x93,
- 0x49, 0xb8, 0x41, 0x00, 0xa6, 0x5b, 0x43, 0x79, 0x07, 0xfe, 0x9b, 0x52, 0x96, 0xca, 0x7c, 0x0b, 0x5d, 0x4b,
- 0x2b, 0x9c, 0xea, 0xe0, 0x6e, 0x2b, 0xde, 0x0a, 0x34, 0x96, 0x3f, 0xeb, 0x06, 0xa4, 0x18, 0x70, 0x74, 0x23,
- 0x49, 0xed, 0x7c, 0x72, 0x30, 0x8d, 0xa4, 0x23, 0xe1, 0xec, 0x52, 0x05, 0xd5, 0x4c, 0xe3, 0xaa, 0x0f, 0x77,
- 0x91, 0xe6, 0x37, 0x74, 0xd0, 0x78, 0xc8, 0x3c, 0xd0, 0x2b, 0x86, 0xd3, 0x6a, 0x9f, 0x95, 0xe5, 0xf2, 0x47,
- 0x1f, 0xdc, 0xbc, 0x00, 0xb6, 0x9e, 0x3d, 0x75, 0x1f, 0x38, 0x31, 0x8f, 0x0f, 0xdc, 0x5d, 0x81, 0x4d, 0x70,
- 0x1a, 0x6e, 0x5e, 0x17, 0xb5, 0x8c, 0x2d, 0xe1, 0x38, 0x3b, 0x19, 0x1e, 0xbb, 0xe4, 0xb8, 0x84, 0x47, 0x54,
- 0xc8, 0x87, 0x47, 0x8a, 0x33, 0xef, 0x33, 0x84, 0x0c, 0x8f, 0x11, 0x89, 0x33, 0xc1, 0x3c, 0x06, 0xe0, 0xdf,
- 0x04, 0xbe, 0x82, 0x5c, 0xb3, 0x1a, 0x4f, 0x06, 0x9d, 0x38, 0x90, 0x9b, 0xd2, 0x04, 0x79, 0x1b, 0x00, 0xed,
- 0xf8, 0x64, 0x3c, 0xd3, 0x3b, 0x51, 0x3e, 0x96, 0x2b, 0x59, 0xef, 0x5b, 0xeb, 0x28, 0xf7, 0x3b, 0x4a, 0x57,
- 0xa2, 0xba, 0xee, 0x1f, 0xbb, 0xd0, 0xf8, 0x88, 0xea, 0xf2, 0xa6, 0xd6, 0xbf, 0xea, 0x0f, 0xf0, 0xe1, 0xcf,
- 0x5c, 0xd1, 0xae, 0x24, 0x99, 0x9b, 0x43, 0xa1, 0x1b, 0x6e, 0xa9, 0xc9, 0xe2, 0x0d, 0xef, 0xa2, 0x58, 0xe8,
- 0x97, 0xe9, 0xa0, 0x24, 0x28, 0x28, 0xaf, 0x5a, 0x60, 0xf6, 0x1f, 0x83, 0x73, 0x75, 0xe8, 0x93, 0x96, 0xcc,
- 0xd8, 0xc8, 0xa4, 0x69, 0x82, 0xb9, 0xe4, 0x12, 0xa9, 0x4d, 0x87, 0xaf, 0x11, 0xe0, 0x55, 0x31, 0x20, 0xf9,
- 0x72, 0x93, 0x2d, 0xbd, 0xbe, 0xf1, 0x52, 0xa2, 0x8e, 0x2e, 0x40, 0x42, 0x07, 0xd7, 0x47, 0x6c, 0x52, 0xef,
- 0x57, 0x4c, 0xfd, 0xf0, 0x2f, 0x36, 0xb0, 0xa4, 0xf3, 0x10, 0xce, 0x70, 0x39, 0x66, 0xa1, 0x56, 0x60, 0x35,
- 0xf2, 0xe3, 0x0f, 0xae, 0x31, 0xed, 0xb8, 0x73, 0xd6, 0x75, 0x03, 0x78, 0xdd, 0xbf, 0x3b, 0xbe, 0x01, 0x76,
- 0x81, 0x4b, 0x0e, 0x48, 0x5b, 0x08, 0xd6, 0x58, 0x9f, 0x0f, 0xff, 0xf9, 0x51, 0x98, 0xad, 0x46, 0x8d, 0x1e,
- 0xa7, 0xaf, 0x79, 0x86, 0x1e, 0x12, 0xc7, 0x42, 0xab, 0x8b, 0xdc, 0x72, 0xcf, 0x5d, 0xfc, 0xe4, 0x8d, 0x14,
- 0x62, 0x52, 0xed, 0xb2, 0x5e, 0x5a, 0xc3, 0x3f, 0x29, 0x31, 0x36, 0x3e, 0x3e, 0xc1, 0xb1, 0x08, 0xc7, 0x18,
- 0x71, 0x12, 0xf4, 0x1b, 0xa4, 0xd5, 0x1c, 0xa7, 0x7d, 0x16, 0xb2, 0x07, 0x54, 0xcd, 0xd0, 0x76, 0x0b, 0xb4,
- 0x3c, 0x24, 0x30, 0xb4, 0xf6, 0xc4, 0x75, 0x1d, 0x91, 0xa9, 0x00, 0x23, 0xbf, 0x28, 0x1c, 0x7a, 0x63, 0x81,
- 0x75, 0x40, 0x0a, 0x4c, 0x8b, 0xc1, 0x13, 0xf5, 0x43, 0xe2, 0x98, 0x4c, 0x53, 0xc4, 0x12, 0xe5, 0x49, 0x77,
- 0x92, 0x36, 0x3c, 0x95, 0xd7, 0xf3, 0x5f, 0x5b, 0x6e, 0x74, 0x82, 0xed, 0x55, 0x44, 0x2a, 0xbc, 0xad, 0x6f,
- 0x9f, 0xa5, 0xab, 0x8a, 0xd3, 0xb8, 0xce, 0x5d, 0xd6, 0x74, 0x2e, 0x37, 0xb6, 0x49, 0x5a, 0xab, 0xf4, 0x9b,
- 0x1f, 0xbd, 0x06, 0x83, 0x4a, 0x31, 0x22, 0xd0, 0x09, 0xc9, 0x89, 0x7c, 0xda, 0xcc, 0x8c, 0xa3, 0xde, 0xd7,
- 0xa1, 0xc0, 0xe9, 0xef, 0x8c, 0x6d, 0x42, 0x1a, 0xe8, 0x7b, 0x67, 0x46, 0x81, 0x60, 0x3b, 0x68, 0x92, 0xa6,
- 0x04, 0xc2, 0xab, 0xe0, 0x87, 0xe4, 0x6b, 0x18, 0x9a, 0x01, 0x9a, 0x99, 0x2e, 0xf0, 0x95, 0x3e, 0x09, 0x38,
- 0x94, 0xbe, 0x59, 0xd5, 0xdb, 0x98, 0x31, 0xc5, 0xb7, 0x97, 0x4f, 0xe9, 0x27, 0x53, 0xc9, 0x8a, 0xb1, 0x19,
- 0x56, 0x6d, 0x26, 0x49, 0x74, 0x24, 0xa5, 0x02, 0xc8, 0x15, 0x93, 0x81, 0xf7, 0x94, 0xee, 0x23, 0x10, 0x8c,
- 0xd3, 0xd8, 0x97, 0xe5, 0xaf, 0x70, 0xb4, 0x01, 0x7d, 0x4f, 0x4a, 0x49, 0x3c, 0x42, 0xea, 0x05, 0x71, 0xec,
- 0xfc, 0xa8, 0x67, 0x55, 0xc9, 0x49, 0x10, 0xac, 0xeb, 0x95, 0x7b, 0x3f, 0x89, 0x72, 0x60, 0x1e, 0xa9, 0xa0,
- 0xd3, 0x08, 0x83, 0x58, 0x23, 0xf6, 0xf2, 0xa5, 0xf6, 0x84, 0x02, 0x06, 0xc4, 0xde, 0x0d, 0x16, 0xd9, 0xdd,
- 0x2b, 0x53, 0x56, 0x2a, 0x29, 0x78, 0x80, 0x83, 0x57, 0x84, 0x0f, 0xc4, 0x33, 0xa8, 0x5c, 0xd4, 0xf9, 0x8c,
- 0x34, 0x18, 0xbc, 0xc5, 0x0d, 0xad, 0x82, 0x66, 0x1d, 0x23, 0x57, 0xc7, 0xde, 0x5e, 0x23, 0x06, 0xcf, 0x8e,
- 0xe8, 0xd9, 0xf1, 0x62, 0x6e, 0x66, 0xe8, 0xa1, 0x60, 0xb5, 0x32, 0x90, 0x06, 0x4f, 0x41, 0xca, 0xb3, 0xa9,
- 0x3f, 0xc1, 0xf9, 0x1f, 0xa0, 0xd6, 0xfd, 0x53, 0x07, 0x51, 0xf7, 0x1a, 0xc7, 0xd9, 0x5a, 0x69, 0xc6, 0x48,
- 0x12, 0x18, 0x98, 0xd6, 0x10, 0xa8, 0xec, 0xa4, 0x6f, 0xdf, 0xfb, 0x6c, 0xc1, 0x19, 0xd7, 0xb9, 0x1b, 0xc5,
- 0xcc, 0xb1, 0x64, 0xbc, 0xea, 0x78, 0x5e, 0xc8, 0x96, 0xd6, 0x62, 0xa9, 0x99, 0x18, 0x1f, 0xbe, 0xe9, 0xf0,
- 0x1e, 0x5a, 0x67, 0x6d, 0xd4, 0xee, 0x49, 0xcf, 0x1e, 0x8c, 0x0c, 0xd8, 0xbc, 0x80, 0xd3, 0x83, 0xcd, 0x7b,
- 0xe7, 0xb6, 0x0f, 0x63, 0x68, 0x0a, 0x25, 0xc7, 0x94, 0xc1, 0xe7, 0x87, 0x65, 0x1b, 0xd2, 0x2d, 0xdb, 0xe4,
- 0x27, 0x19, 0x25, 0x0d, 0x54, 0x1b, 0x08, 0xca, 0x6f, 0xe2, 0x29, 0xb9, 0x68, 0x56, 0x59, 0x97, 0x62, 0x78,
- 0x6d, 0xe8, 0xc5, 0xa4, 0x67, 0x23, 0xb0, 0x24, 0xe6, 0x7a, 0xc0, 0xc4, 0x15, 0xa1, 0xa1, 0x33, 0xd6, 0x1b,
- 0x70, 0x38, 0xff, 0xd4, 0xa3, 0x34, 0x60, 0x06, 0x7e, 0x53, 0xe3, 0x23, 0x53, 0x4c, 0x2f, 0xf9, 0x3d, 0x00,
- 0x67, 0x06, 0x9b, 0xe9, 0x73, 0xde, 0xe3, 0x9c, 0x87, 0xa9, 0x9f, 0xb3, 0x84, 0x68, 0x62, 0xaf, 0x76, 0x59,
- 0x4b, 0x82, 0xd2, 0x76, 0x06, 0x1f, 0x5d, 0x15, 0x45, 0xd9, 0x0c, 0x6e, 0xaa, 0xa6, 0x2e, 0x1d, 0x65, 0xdc,
- 0x29, 0x10, 0x3e, 0x6d, 0x9f, 0xe1, 0x80, 0x18, 0x16, 0x71, 0x6b, 0xec, 0x06, 0xdc, 0xd4, 0x5b, 0xc6, 0x10,
- 0xff, 0xfb, 0x28, 0x7a, 0x34, 0xdb, 0xd2, 0xcb, 0x13, 0x47, 0x3c, 0x08, 0xba, 0x71, 0x9c, 0x81, 0x15, 0x63,
- 0xf5, 0x84, 0xef, 0xc3, 0x8b, 0xcb, 0x38, 0x7b, 0x30, 0x9c, 0xb7, 0x28, 0x0c, 0x06, 0xb3, 0x0e, 0xe4, 0xa9,
- 0x43, 0xbb, 0x87, 0xee, 0xee, 0x1d, 0xa7, 0xc9, 0xde, 0x2a, 0x69, 0x06, 0x2c, 0xa1, 0x73, 0xf6, 0xfa, 0x22,
- 0xa7, 0xd0, 0x91, 0x14, 0x75, 0x0f, 0xa6, 0xf7, 0xf6, 0x36, 0x9e, 0x73, 0x6a, 0xf2, 0x28, 0xde, 0x5f, 0x0c,
- 0x70, 0x89, 0xc4, 0x05, 0xc7, 0x35, 0x3e, 0xec, 0x03, 0x04, 0xf7, 0xa9, 0x41, 0xab, 0x88, 0xdf, 0x2c, 0x6c,
- 0x13, 0x2b, 0x4c, 0x63, 0xf0, 0x90, 0x9d, 0x70, 0xb1, 0xfd, 0x65, 0xa6, 0x1d, 0x00, 0x7d, 0x90, 0x21, 0x86,
- 0x18, 0xf1, 0x12, 0xe7, 0x13, 0x2a, 0x3d, 0xa2, 0xa1, 0x6d, 0xbf, 0x7a, 0xcb, 0x7b, 0x2b, 0xac, 0x94, 0xa5,
- 0xa5, 0xf0, 0x62, 0x9d, 0x56, 0x19, 0xe5, 0xcd, 0x56, 0x18, 0xde, 0xbf, 0x0a, 0xe1, 0x36, 0x9f, 0xef, 0xea,
- 0x07, 0xe3, 0x3c, 0x05, 0x6e, 0xa8, 0xde, 0xd8, 0xd1, 0x9f, 0x8d, 0xab, 0x7f, 0x09, 0x65, 0x27, 0x01, 0xc8,
- 0xc9, 0xfb, 0x0b, 0x93, 0x3f, 0x41, 0x7e, 0x01, 0x07, 0xfb, 0x23, 0xb3, 0x76, 0x10, 0x43, 0xe9, 0x02, 0x6f,
- 0x4f, 0x8d, 0xfa, 0x4c, 0x10, 0x6b, 0x85, 0x75, 0x7e, 0xba, 0x89, 0x56, 0x28, 0x3f, 0x27, 0xd2, 0xba, 0x70,
- 0xef, 0xbe, 0x83, 0xf5
-};
-
-// context = simple_context_ar
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x61, 0x72, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x22, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x20, 0x24, 0x76, 0x72,
- 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
- 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x22, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa7, 0xd9, 0x84, 0xd9, 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88,
- 0xd9, 0x84, 0xd8, 0xa9, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xaa, 0xd9,
- 0x81, 0xd8, 0xa7, 0xd8, 0xad, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x0b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x33, 0x00,
- 0x00, 0x00, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x00, 0xd8, 0xa7, 0xd9, 0x84, 0xd9,
- 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88, 0xd9, 0x84, 0xd8, 0xa9, 0x00, 0xd8, 0xaa, 0xd9, 0x81, 0xd8, 0xa7,
- 0xd8, 0xad, 0x00, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x00, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1e, 0x00,
- 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
- 0x18, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x46, 0x00,
- 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00,
- 0x7c, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa6, 0x00,
- 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
- 0xc4, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xd6, 0x00,
- 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xea, 0x00, 0x00, 0x00,
- 0xf1, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x03, 0x01, 0x00, 0x00, 0x07, 0x01,
- 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x16, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00,
- 0x21, 0x01, 0x00, 0x00, 0x27, 0x01, 0x00, 0x00, 0x2b, 0x01, 0x00, 0x00, 0x30, 0x01, 0x00, 0x00, 0x36, 0x01,
- 0x00, 0x00, 0x02, 0x10, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x02, 0x1a, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x20, 0x09,
- 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10,
- 0x16, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20,
- 0x24, 0x03, 0x09, 0x10, 0x08, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03,
- 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24,
- 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a,
- 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a,
- 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03,
- 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11,
- 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x10, 0x08,
- 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x0c, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a,
- 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a, 0x0c, 0x0e, 0x21, 0x0e, 0x0e, 0x21, 0x0e, 0x10, 0x0e, 0x21, 0x0e, 0x03,
- 0x0e, 0x21, 0x0e, 0x1a, 0x0e, 0x21, 0x0e, 0x1a, 0x0c, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x0e, 0x1a, 0x24, 0x10,
- 0x0e, 0x10, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x18, 0x10, 0x0a, 0x10,
- 0x11, 0x10, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x11, 0x18, 0x10, 0x0a, 0x11, 0x10,
- 0x18, 0x03, 0x0a, 0x11, 0x18, 0x03, 0x0a, 0x11, 0x03, 0x0c, 0x18, 0x03, 0x0a, 0x11, 0x1a, 0x0c, 0x18, 0x1a,
- 0x0a, 0x10, 0x11, 0x18, 0x1a, 0x0a, 0x10, 0x11, 0x10, 0x18, 0x1a, 0x0a, 0x11, 0x18, 0x1a, 0x0a, 0x11, 0x10,
- 0x18, 0x1a, 0x0a, 0x11, 0x1a, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69,
- 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x18, 0x00,
- 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_ARABIC__
-
-#if defined(__PV_LANGUAGE_POLISH__)
-
-// wake-word = cześć komputer
-static const uint8_t KEYWORD_ARRAY[] = {
- 0x23, 0x5a, 0xda, 0x76, 0xf9, 0xc1, 0x39, 0x71, 0x29, 0xed, 0x13, 0xca, 0xaf, 0xb5, 0x99, 0x14, 0xd1, 0x6f,
- 0xba, 0xd3, 0xf4, 0xf6, 0x75, 0x6c, 0x27, 0x0f, 0x45, 0x36, 0xfb, 0x79, 0x54, 0xbc, 0xea, 0xd8, 0xae, 0x7e,
- 0x59, 0xf2, 0x18, 0x16, 0x3a, 0x62, 0x56, 0x06, 0x23, 0xc2, 0x7a, 0x68, 0xb1, 0xf3, 0x30, 0x1b, 0xc0, 0xf7,
- 0xe9, 0xcc, 0xa9, 0xf3, 0x16, 0x62, 0x00, 0x62, 0xe1, 0xf1, 0xe5, 0xa0, 0x1b, 0x93, 0x1b, 0x26, 0x24, 0xc9,
- 0x51, 0xe8, 0xd0, 0x93, 0x44, 0x0a, 0x3b, 0xb2, 0x8e, 0x61, 0xfc, 0xbd, 0xf7, 0xe2, 0x80, 0xdc, 0x73, 0xee,
- 0x1d, 0x7a, 0xf5, 0x5c, 0x3c, 0x39, 0xd2, 0x81, 0xb7, 0xd7, 0x31, 0x67, 0x51, 0x91, 0x20, 0x09, 0x00, 0x30,
- 0xab, 0x47, 0xf9, 0xaf, 0x99, 0x67, 0xeb, 0x1a, 0x0d, 0x2a, 0x26, 0x11, 0x68, 0x11, 0x16, 0x61, 0x8d, 0x6b,
- 0x7a, 0x31, 0x6d, 0x41, 0x49, 0xd9, 0x5d, 0x35, 0xc8, 0xcb, 0xa0, 0x6d, 0xbd, 0x2b, 0xbd, 0x17, 0x2b, 0x26,
- 0xa9, 0x79, 0x61, 0xb2, 0x7f, 0xec, 0x0f, 0x08, 0x47, 0x9c, 0x04, 0x1c, 0xd3, 0x1e, 0x62, 0xf5, 0x20, 0x05,
- 0x81, 0x5b, 0xc9, 0x9f, 0xfb, 0x46, 0x8c, 0x11, 0x90, 0x78, 0x4c, 0x3e, 0x41, 0x71, 0x27, 0xa0, 0x0e, 0x43,
- 0x10, 0x70, 0x79, 0x4d, 0x97, 0xfc, 0x5e, 0x73, 0x69, 0x92, 0x3b, 0x9f, 0x6b, 0x9e, 0x1c, 0x20, 0xcc, 0xd6,
- 0xc9, 0x19, 0xcf, 0x68, 0xc4, 0xc6, 0x84, 0xce, 0x16, 0x7b, 0xab, 0x47, 0xdb, 0x22, 0xaa, 0x05, 0x54, 0x6b,
- 0xab, 0x0d, 0xc0, 0x1c, 0x8b, 0x82, 0x51, 0xdc, 0xec, 0xe9, 0x15, 0x13, 0x33, 0x4e, 0x51, 0x5f, 0xca, 0xe6,
- 0x6d, 0x0a, 0x18, 0x94, 0xd7, 0x59, 0xc7, 0x52, 0xda, 0xdf, 0x03, 0x73, 0x76, 0xc1, 0x86, 0x44, 0x1d, 0xbd,
- 0x2d, 0xaa, 0x2a, 0x2b, 0x4e, 0x6f, 0xec, 0x20, 0xe1, 0x55, 0x9f, 0xbf, 0xe6, 0x1d, 0x4e, 0xd5, 0xa7, 0xac,
- 0x85, 0x4f, 0x46, 0xa6, 0x52, 0x82, 0x81, 0xb0, 0x18, 0x06, 0xe4, 0xcd, 0xce, 0x97, 0x1f, 0x40, 0xf7, 0xdb,
- 0x0c, 0x7e, 0x86, 0x2b, 0x21, 0x8b, 0x5a, 0xd5, 0x9c, 0xdb, 0xb4, 0x57, 0xb1, 0x35, 0x47, 0xe8, 0xbd, 0xc1,
- 0xd3, 0xd9, 0xc5, 0xc5, 0x78, 0x9e, 0xa1, 0x5b, 0xfc, 0xbe, 0xa7, 0xf3, 0x51, 0x7b, 0xe8, 0xac, 0xcc, 0x94,
- 0xbe, 0x32, 0x75, 0x83, 0xfc, 0x58, 0xb2, 0x2e, 0x20, 0x0e, 0x2c, 0xe2, 0x9f, 0xa2, 0x83, 0xbf, 0xfd, 0x15,
- 0x06, 0x31, 0x7b, 0x5e, 0xd8, 0x7c, 0x46, 0x53, 0x8a, 0xa3, 0xb9, 0x29, 0x27, 0xa4, 0x38, 0x49, 0x6b, 0x56,
- 0x83, 0x35, 0x4f, 0x23, 0xc7, 0x5f, 0x12, 0x2b, 0x36, 0x23, 0xe0, 0xa8, 0x2c, 0x38, 0xc6, 0x61, 0x25, 0xbe,
- 0x85, 0x37, 0x73, 0x6d, 0xbf, 0x35, 0x8b, 0x0f, 0x4d, 0x3b, 0x2e, 0xcb, 0x30, 0x72, 0xb1, 0x8d, 0x4a, 0xa6,
- 0x6d, 0x23, 0x50, 0x64, 0xd0, 0x45, 0xf7, 0x57, 0x0b, 0x20, 0x77, 0x44, 0x78, 0x6b, 0xff, 0xca, 0xda, 0x3f,
- 0xd9, 0x88, 0xb6, 0x78, 0x91, 0xd7, 0x70, 0xd8, 0xc3, 0x84, 0x6b, 0xf9, 0x01, 0x68, 0xa1, 0xd2, 0x39, 0x37,
- 0xb0, 0x5f, 0x09, 0x3b, 0x74, 0x6a, 0x64, 0x39, 0xb9, 0x4a, 0x8e, 0x28, 0x6b, 0x4d, 0xeb, 0x79, 0xfd, 0xc9,
- 0x83, 0xa0, 0x6d, 0x9f, 0x5e, 0x24, 0x7b, 0x58, 0xd3, 0x7e, 0xd9, 0x36, 0xed, 0xfd, 0x2c, 0xbc, 0x1a, 0x6f,
- 0x25, 0x6a, 0xfe, 0xfe, 0x8f, 0x6b, 0xee, 0x5d, 0x26, 0xdc, 0xf9, 0xb2, 0x38, 0x6c, 0xae, 0x62, 0x5a, 0xa0,
- 0x11, 0xe0, 0x2b, 0x18, 0xda, 0x78, 0x90, 0xc6, 0x27, 0x2d, 0x05, 0x85, 0xbb, 0x48, 0x7b, 0x5d, 0xf3, 0x5b,
- 0x55, 0xc2, 0x33, 0x80, 0xa2, 0x08, 0x7c, 0xec, 0x04, 0x13, 0xa7, 0x3f, 0x84, 0x1a, 0x20, 0x5f, 0x5f, 0x64,
- 0x80, 0xd3, 0xe4, 0x4f, 0x1d, 0x4c, 0x40, 0x17, 0xb0, 0x54, 0xc9, 0xba, 0xef, 0xe4, 0xc6, 0x1f, 0x2d, 0xc1,
- 0xa1, 0x89, 0xc6, 0x18, 0x04, 0xf1, 0x05, 0x7e, 0x01, 0x1f, 0x93, 0x35, 0x74, 0x9d, 0x36, 0x7b, 0x06, 0x54,
- 0xbe, 0x43, 0xb2, 0x30, 0xe5, 0xd9, 0x6f, 0xc5, 0x31, 0x94, 0x7e, 0x99, 0x4b, 0x26, 0xcd, 0xdf, 0x4a, 0xe0,
- 0x0e, 0x6f, 0x20, 0x75, 0x30, 0xcd, 0xa6, 0xdc, 0x86, 0x0e, 0x86, 0x9c, 0x7a, 0xed, 0x5c, 0x51, 0xa1, 0xcf,
- 0xdd, 0xe8, 0x52, 0x05, 0x62, 0x38, 0x19, 0xd3, 0x7b, 0x7c, 0x7b, 0xd2, 0x57, 0xad, 0x8a, 0xb3, 0x55, 0x61
-};
-
-// context = simple_context_pl
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x70, 0x6c, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79,
- 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x61, 0x6a, 0x20, 0x6d, 0x69, 0x20, 0x24, 0x76, 0x72,
- 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
- 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x74, 0x72, 0x75, 0x73, 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x61, 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x22, 0x00,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00,
- 0x14, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x62, 0x61,
- 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x00, 0x64, 0x61, 0x6a, 0x00, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x00,
- 0x6d, 0x69, 0x00, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79, 0x00, 0x74, 0x72, 0x75, 0x73,
- 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00,
- 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02, 0x01, 0x0d, 0x01, 0x0d, 0x1c, 0x16, 0x20, 0x03, 0x01,
- 0x09, 0x0c, 0x01, 0x0b, 0x08, 0x0d, 0x01, 0x0c, 0x08, 0x10, 0x0e, 0x0f, 0x01, 0x1f, 0x21, 0x1c, 0x0d, 0x20,
- 0x11, 0x0f, 0x15, 0x10, 0x0a, 0x01, 0x07, 0x0a, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
- 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70,
- 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
- 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_POLISH__
-
#if defined(__PV_LANGUAGE_SWEDISH__)
// wake-word = hej dator
static const uint8_t KEYWORD_ARRAY[] = {
- 0x84, 0xa9, 0x3a, 0x6e, 0x71, 0x4e, 0x5f, 0x2a, 0xa6, 0x90, 0x42, 0xa3, 0x20, 0xa6, 0xc7, 0x6a, 0x2e, 0xe8,
- 0x9b, 0xf1, 0xc3, 0x26, 0x3b, 0x5d, 0x4b, 0xec, 0xcd, 0xc8, 0x7b, 0xab, 0x82, 0xb8, 0x3e, 0xab, 0x71, 0x39,
- 0xcb, 0x65, 0x23, 0x88, 0x2e, 0xd8, 0x2f, 0x66, 0x46, 0xad, 0x09, 0x9b, 0xc0, 0x0f, 0x4e, 0x10, 0x4f, 0xf4,
- 0xb5, 0xb0, 0x53, 0xbd, 0xab, 0x02, 0xca, 0x70, 0x1c, 0xcb, 0xad, 0x8f, 0x65, 0x58, 0xa2, 0x7d, 0x5e, 0x53,
- 0xaa, 0x24, 0x6b, 0x57, 0xcf, 0x63, 0xf9, 0xfe, 0x29, 0x46, 0x68, 0x9a, 0x0c, 0x2a, 0x7b, 0xcb, 0xe8, 0x47,
- 0x12, 0x9a, 0x2b, 0x07, 0x25, 0xc5, 0x48, 0xca, 0x01, 0x19, 0x6e, 0x67, 0xe4, 0xc6, 0x62, 0xc3, 0xed, 0x7c,
- 0xbe, 0x3c, 0xe9, 0x10, 0x5c, 0x22, 0xf0, 0x5b, 0xb9, 0x91, 0x5b, 0x23, 0x07, 0x61, 0x8d, 0xdc, 0xf5, 0x04,
- 0xbc, 0x29, 0x2a, 0xab, 0xa8, 0x80, 0x73, 0xf6, 0xfb, 0x27, 0x95, 0x68, 0x42, 0x5a, 0x49, 0xa8, 0xc1, 0x62,
- 0xba, 0x5f, 0xdf, 0xa1, 0x6e, 0x26, 0xc1, 0xb2, 0xe1, 0xf4, 0xe8, 0xf7, 0x41, 0x2c, 0x1d, 0x66, 0x7d, 0xa6,
- 0x8b, 0x3a, 0x35, 0x50, 0xb9, 0xef, 0xa4, 0x80, 0xcc, 0xfc, 0xb7, 0xb9, 0x0b, 0x77, 0x2c, 0xb5, 0x7d, 0xb2,
- 0x66, 0x3f, 0x02, 0x3f, 0x9d, 0x48, 0x5c, 0x2b, 0xc1, 0xa5, 0x7b, 0xf0, 0xd3, 0xd9, 0x9b, 0x67, 0xbb, 0xcb,
- 0xbf, 0x04, 0x09, 0x95, 0x0a, 0x45, 0x6e, 0xc8, 0x53, 0x61, 0x30, 0xf6, 0xbe, 0x9e, 0xf4, 0xe0, 0x9a, 0x91,
- 0x1f, 0x6f, 0xee, 0x23, 0xc2, 0xd7, 0x10, 0x0a, 0x27, 0x17, 0xc2, 0xbf, 0x66, 0x6b, 0x2b, 0x63, 0x17, 0x04,
- 0xf9, 0xe4, 0x2d, 0xec, 0x57, 0x12, 0xcd, 0x68, 0x20, 0x24, 0x1c, 0x85, 0x19, 0xd0, 0x30, 0x31, 0x32, 0x3f,
- 0xc9, 0xbc, 0xc4, 0xb0, 0xcc, 0x61, 0xdd, 0x33, 0x24, 0xfb, 0x22, 0x3f, 0x9c, 0xcc, 0xc0, 0xb7, 0x25, 0xb0,
- 0xda, 0x99, 0x18, 0x1b, 0xb4, 0x8a, 0xea, 0x36, 0x63, 0x6c, 0xcd, 0x10, 0x94, 0x52, 0x5c, 0x3f, 0x7c, 0x0c,
- 0xfd, 0x60, 0x8d, 0xc2, 0x17, 0x75, 0x4a, 0x92, 0x3f, 0x4f, 0x5d, 0x4c, 0x49, 0x93, 0x5f, 0x23, 0x13, 0x86,
- 0xd8, 0xfb, 0xb8, 0xd0, 0x6e, 0x9c, 0xe0, 0x9c, 0x16, 0x81, 0x21, 0x38, 0x1d, 0xc8, 0xd4, 0xfd, 0x83, 0xf2,
- 0x35, 0x19, 0xf0, 0x93, 0xc2, 0xb0, 0xb3, 0xba, 0x3e, 0x2d, 0x96, 0x43, 0xeb, 0xfc, 0x3b, 0xa6, 0x71, 0x1f,
- 0x05, 0x2c, 0x0f, 0xd2, 0xf7, 0xee, 0xc9, 0xc2, 0x9a, 0x8f, 0x0b, 0x7a, 0x0a, 0xb9, 0xc7, 0xb7, 0x20, 0x31,
- 0xe2, 0x43, 0xe0, 0x6c, 0x21, 0x43, 0xf4, 0xc8, 0xad, 0x04, 0xbb, 0xc2, 0x32, 0x35, 0x33, 0x7b, 0xf3, 0x4a,
- 0x39, 0xc1, 0x3c, 0x8d, 0x2f, 0xac, 0xd4, 0x75, 0x65, 0xb4, 0xe4, 0x48, 0xef, 0xda, 0x27, 0xb9, 0x87, 0xde,
- 0xd2, 0xe7, 0x4d, 0x77, 0x6c, 0xf5, 0x2e, 0xa0, 0x3c, 0xb6, 0x67, 0x70, 0x45, 0x3d, 0x0b, 0xca, 0x2a, 0x1a,
- 0x50, 0x00, 0xce, 0x0a, 0x3c, 0x9d, 0xde, 0x74, 0x92, 0xff, 0xc7, 0x54, 0x67, 0x86, 0xca, 0xa8, 0xfa, 0x13,
- 0x2b, 0x99, 0x5e, 0xdd, 0xe4, 0x39, 0xe9, 0x52, 0x3a, 0x59, 0x65, 0x1f, 0x83, 0xbb, 0x08, 0x22, 0x6e, 0x80,
- 0x7d, 0xd1, 0x93, 0x46, 0x77, 0xa8, 0x1c, 0xa5, 0xb8, 0x7d, 0xa1, 0x7d, 0xab, 0xfb, 0xbb, 0xb4, 0x7e, 0xcb,
- 0x10, 0x40, 0x8b, 0x5d, 0xc0, 0xe1, 0x8d, 0xd2, 0x0f, 0xe6, 0xf4, 0x79, 0xfd, 0x94, 0x34, 0xfd, 0xd2, 0xd5,
- 0x2d, 0xe7, 0x7c, 0x61, 0x0a, 0xc1, 0x86, 0x6e, 0x7c, 0x94
+ 0xa7, 0x12, 0xc6, 0x64, 0xcb, 0xdb, 0xd1, 0x92, 0x24, 0x02, 0x32, 0x84, 0x1f, 0x48, 0xf7, 0x2d, 0x9c, 0x34,
+ 0x4a, 0x5e, 0x41, 0x04, 0x9e, 0x92, 0x63, 0xde, 0xe6, 0x2a, 0x86, 0x40, 0xac, 0x1f, 0x9d, 0xfe, 0x26, 0x08,
+ 0x46, 0x6c, 0xed, 0x4e, 0x24, 0xc6, 0xa5, 0xe0, 0xdf, 0xc9, 0xd6, 0x47, 0xdc, 0x55, 0x3b, 0xb7, 0x0c, 0xa6,
+ 0x20, 0xcc, 0x0e, 0x51, 0x16, 0x46, 0x44, 0xf0, 0x94, 0xd6, 0xa5, 0xb4, 0xc5, 0xa3, 0x2f, 0x3c, 0xfe, 0x0f,
+ 0xe7, 0xb8, 0x41, 0x83, 0xf6, 0x41, 0xad, 0xdf, 0x06, 0x05, 0x96, 0xcb, 0x63, 0xce, 0x53, 0x8c, 0x39, 0xac,
+ 0x0c, 0x27, 0x5a, 0x57, 0x42, 0xc3, 0x66, 0x05, 0x19, 0x3c, 0xbe, 0xf8, 0x38, 0x2f, 0x87, 0xd9, 0xba, 0x81,
+ 0x27, 0x17, 0x1c, 0x95, 0x42, 0xf0, 0x31, 0xaa, 0x19, 0xe6, 0x96, 0x1d, 0x07, 0x8f, 0x0c, 0x60, 0x7f, 0xa2,
+ 0xfa, 0x6d, 0x8e, 0xdb, 0xde, 0xed, 0x7f, 0x47, 0x0d, 0x95, 0x1f, 0x55, 0x24, 0xb0, 0xbf, 0x5c, 0x3a, 0x04,
+ 0x3f, 0x13, 0xf2, 0x9a, 0x72, 0xca, 0x19, 0xe1, 0x92, 0x23, 0x2d, 0x9a, 0x73, 0x02, 0x53, 0x37, 0xe6, 0xca,
+ 0xd4, 0x29, 0x00, 0xb5, 0x2e, 0xdb, 0xef, 0x54, 0x9b, 0x41, 0x31, 0x9f, 0x0e, 0x6a, 0x7b, 0x04, 0x95, 0x77,
+ 0xef, 0x37, 0x55, 0x67, 0xe4, 0x3c, 0xc7, 0x8a, 0x8f, 0x7f, 0x9d, 0xc1, 0x10, 0xa0, 0x2d, 0xa7, 0x07, 0xd2,
+ 0x72, 0xc7, 0x93, 0xcd, 0x7b, 0x05, 0x1c, 0x11, 0x83, 0x50, 0x0f, 0xab, 0x5f, 0x39, 0xc0, 0x54, 0x94, 0x59,
+ 0x70, 0xc3, 0x68, 0x2e, 0xd5, 0xd2, 0x8e, 0xd0, 0x01, 0xb3, 0x57, 0x0e, 0xfd, 0xc1, 0x1b, 0x2b, 0x0b, 0x54,
+ 0x73, 0xd2, 0x92, 0x4f, 0x65, 0xfa, 0xf6, 0x87, 0xb5, 0x83, 0x0d, 0x4c, 0x37, 0xf1, 0xa3, 0x5e, 0xb3, 0x66,
+ 0xd1, 0x65, 0xf0, 0xb6, 0x08, 0x60, 0xcb, 0xb7, 0xad, 0x31, 0xf1, 0xc3, 0xf2, 0xb4, 0x3f, 0x4f, 0xd5, 0x6f,
+ 0x7f, 0xc1, 0x6d, 0x50, 0xa5, 0x30, 0xae, 0x39, 0xeb, 0x9b, 0x48, 0x23, 0x46, 0x4a, 0x4c, 0x07, 0x92, 0x1d,
+ 0xce, 0x16, 0xad, 0xd4, 0xee, 0xc3, 0xb4, 0x01, 0x2c, 0x16, 0xc1, 0x84, 0xc7, 0xc2, 0x55, 0x99, 0x49, 0x31,
+ 0x68, 0xfc, 0x44, 0xbf, 0x2c, 0x2f, 0x50, 0x9b, 0xc6, 0x28, 0xf3, 0xcf, 0x16, 0xf8, 0xf2, 0xb1, 0x1e, 0xad,
+ 0x73, 0xfe, 0xd4, 0xc0, 0x17, 0xfa, 0x52, 0x9e, 0xbd, 0x01, 0xfa, 0x3c, 0xa2, 0xd7, 0x9c, 0x47, 0xb5, 0x31,
+ 0x79, 0x95, 0x29, 0x8b, 0x99, 0x51, 0x1d, 0xbf, 0x73, 0xb9, 0x1b, 0x26, 0x2a, 0xc2, 0x4a, 0x27, 0x9c, 0xb6,
+ 0x36, 0x9b, 0xe0, 0xa0, 0xde, 0xb4, 0xf6, 0x63, 0x91, 0xe8, 0xd1, 0xe2, 0xb8, 0x84, 0x89, 0x26, 0x89, 0xb1,
+ 0xe5, 0x6b, 0x6a, 0xc5, 0xdf, 0xe6, 0xae, 0xb2, 0x9b, 0x2b, 0x20, 0x80, 0x7c, 0xeb, 0x78, 0xf0, 0xd4, 0xd3,
+ 0x10, 0x8f, 0xde, 0xba, 0xca, 0x17, 0xf1, 0x17, 0x10, 0x0d, 0xcd, 0xde, 0x43, 0x1c, 0x80, 0x3f, 0x18, 0xe0,
+ 0x1c, 0x17, 0xc0, 0x46, 0xc1, 0x2d, 0x80, 0x13, 0xd9, 0x62, 0xb8, 0x83, 0x22, 0xd9, 0x2a, 0xa6, 0x22, 0x75,
+ 0xd9, 0x8a, 0xbb, 0xaa, 0x6a, 0xb6, 0x23, 0x2e, 0xb3, 0x48, 0xa0, 0x37, 0xf2, 0x38, 0xe9, 0x57, 0x12, 0x0d,
+ 0x48, 0xee, 0x63, 0x9d, 0x8c, 0x32, 0xe0, 0x55, 0x20, 0x68, 0xb5, 0xbc, 0x13, 0xc1, 0x5b, 0x20, 0x68, 0x16,
+ 0x2b, 0x27, 0xb2, 0xe1, 0xeb, 0x28, 0xa4, 0xa0, 0x8c, 0x3c, 0x8f, 0x51, 0x66, 0xc9, 0x10, 0xdf, 0x56, 0x99,
+ 0x17, 0xea, 0x70, 0x17, 0x13, 0x56, 0x6e, 0x15, 0x23, 0x73
};
// context = simple_context_sv
@@ -3259,178 +3492,178 @@ static const uint8_t CONTEXT_ARRAY[] = {
// wake-word = xin chào máy tính
static const uint8_t KEYWORD_ARRAY[] = {
- 0xa2, 0x01, 0x8a, 0xf2, 0xc4, 0xc9, 0x80, 0xb4, 0x5a, 0x2f, 0xb6, 0x8e, 0xc4, 0x89, 0x78, 0x81, 0xff, 0x0b,
- 0xee, 0xc5, 0x15, 0xfa, 0xdc, 0xf4, 0x42, 0xa4, 0xa4, 0x97, 0xb3, 0x4e, 0xd4, 0xee, 0x53, 0x20, 0x41, 0xaf,
- 0x6a, 0xfa, 0x8e, 0xcb, 0x55, 0xb5, 0x66, 0xd6, 0xa1, 0xb7, 0x85, 0xbf, 0x1a, 0x33, 0x1c, 0xd0, 0x15, 0x37,
- 0x61, 0xf2, 0x5f, 0xd5, 0x16, 0x68, 0x4c, 0x68, 0xa6, 0xb0, 0x73, 0xdc, 0x74, 0x51, 0x62, 0xcd, 0xa6, 0x98,
- 0x0f, 0x03, 0xa9, 0xa5, 0x9e, 0xbe, 0x0c, 0xfb, 0xb2, 0x8d, 0xd0, 0xd2, 0xe1, 0x4f, 0xc6, 0xb3, 0xf6, 0x26,
- 0xa9, 0x86, 0x89, 0x8d, 0x8c, 0x9e, 0x66, 0x52, 0x71, 0xba, 0xbb, 0xec, 0x2d, 0x8f, 0x55, 0xfc, 0x04, 0x66,
- 0xe5, 0xc7, 0x2c, 0x80, 0x75, 0x8d, 0xf6, 0xda, 0x06, 0x7d, 0x8a, 0x16, 0x97, 0x62, 0x75, 0x1f, 0xe0, 0x2e,
- 0xef, 0x29, 0x3c, 0x32, 0xf5, 0x4f, 0x97, 0xa8, 0xe0, 0x42, 0xa4, 0x87, 0x45, 0x74, 0x98, 0x02, 0xda, 0x72,
- 0x82, 0x46, 0x28, 0x8f, 0xd8, 0x15, 0x65, 0x41, 0xcd, 0x06, 0xe4, 0x67, 0x9f, 0x3c, 0xe3, 0x4b, 0xf6, 0x17,
- 0x3d, 0xac, 0xc3, 0xfb, 0x1b, 0x91, 0x5f, 0x8d, 0x42, 0x79, 0x85, 0x59, 0xef, 0x58, 0xbe, 0xc2, 0x6b, 0xcb,
- 0xff, 0xcf, 0x06, 0x1b, 0x85, 0x10, 0xd5, 0x48, 0x5b, 0x3a, 0x9f, 0x03, 0x7e, 0xdc, 0x89, 0xb0, 0x95, 0xea,
- 0x34, 0xa9, 0x8f, 0x25, 0x9f, 0x6b, 0xc8, 0x37, 0x50, 0x2b, 0x8f, 0x61, 0x17, 0x8e, 0xfa, 0x63, 0x61, 0x5f,
- 0x61, 0x0b, 0xa0, 0x6c, 0xbf, 0xe4, 0xca, 0xf3, 0x48, 0xaf, 0xb0, 0x16, 0xb1, 0xbd, 0x39, 0x79, 0x20, 0x7f,
- 0x1a, 0xcf, 0xc4, 0x92, 0xd2, 0xb9, 0xcb, 0x39, 0x83, 0x17, 0x06, 0x53, 0xfd, 0x51, 0xba, 0x34, 0x42, 0xe1,
- 0x2c, 0xa6, 0x43, 0x31, 0x6b, 0x8c, 0xbc, 0x66, 0x9c, 0xde, 0x43, 0xe4, 0xf3, 0x5d, 0xfd, 0x43, 0x35, 0x69,
- 0xa1, 0x01, 0x1f, 0xf0, 0x55, 0xbf, 0xda, 0x30, 0x64, 0xdf, 0xbb, 0x67, 0xd5, 0xac, 0x42, 0x95, 0xb3, 0xa2,
- 0xeb, 0xc6, 0x86, 0xa0, 0x09, 0x7f, 0xf7, 0x7a, 0x6b, 0x7a, 0x01, 0x85, 0x5b, 0x74, 0x11, 0x03, 0xac, 0xb6,
- 0xac, 0xaa, 0x8c, 0x9b, 0x6a, 0xd6, 0x29, 0x79, 0xed, 0x38, 0x2f, 0x58, 0x35, 0xc0, 0xa8, 0x76, 0xb7, 0x05,
- 0xb9, 0x36, 0x44, 0x55, 0xca, 0x89, 0xe2, 0x5e, 0x9f, 0xe0, 0x75, 0xde, 0xe9, 0xe1, 0xeb, 0x2e, 0x80, 0x5e,
- 0x72, 0xd4, 0x9e, 0x9b, 0x5b, 0x00, 0x12, 0xcc, 0x47, 0x1c, 0x67, 0xd3, 0x18, 0xa3, 0x98, 0xe9, 0xec, 0x79,
- 0x1b, 0x63, 0x18, 0x71, 0x3e, 0x4e, 0x17, 0x8d, 0x15, 0x99, 0xec, 0xb3, 0xe8, 0x79, 0x5e, 0xbd, 0x3d, 0xa8,
- 0xa2, 0xb0, 0xc1, 0xf0, 0xf3, 0x80, 0xf9, 0xb4, 0x61, 0x4d, 0x88, 0xa1, 0x75, 0x8f, 0x67, 0x4b, 0x1b, 0x13,
- 0xc3, 0x3c, 0x2d, 0x17, 0xfe, 0xe0, 0x2c, 0x76, 0xe5, 0xea, 0x08, 0xfb, 0x6f, 0x84, 0xff, 0x53, 0x39, 0x7d,
- 0xbd, 0xa4, 0x10, 0x4c, 0x23, 0x62, 0xed, 0xbf, 0x99, 0x41, 0x58, 0x48, 0x60, 0xc7, 0x8e, 0x27, 0x5d, 0x3e,
- 0x72, 0xc9, 0x5a, 0xed, 0xdb, 0xfe, 0x4f, 0x37, 0xcb, 0x16, 0x85, 0xf3, 0x3c, 0xfb, 0x56, 0xb7, 0x78, 0x96,
- 0xc4, 0xd9, 0x68, 0x28, 0x50, 0x47, 0x65, 0xde, 0x74, 0x24, 0xcd, 0xac, 0x91, 0x81, 0x5a, 0x85, 0xfb, 0x1a,
- 0x79, 0x47, 0xf8, 0x9b, 0x88, 0x1b, 0x71, 0x80, 0xb4, 0x57, 0x07, 0x12, 0xf6, 0xc3, 0xda, 0x4b, 0x9a, 0x16,
- 0x00, 0xaa, 0x96, 0x73, 0x92, 0x41, 0x77, 0xe5, 0xf2, 0xe8, 0xf6, 0xfa, 0xb7, 0x65, 0xf3, 0x72, 0xab, 0x01,
- 0xea, 0xde, 0x78, 0xb1, 0x71, 0x9a, 0x5c, 0x2c, 0x91, 0x52, 0xd1, 0x2f, 0xbb, 0x87, 0x5b, 0xa0, 0xe4, 0x64,
- 0x3a, 0x57, 0x82, 0x4f, 0xb4, 0xd6, 0x4b, 0xb6, 0x8b, 0xbb, 0xc3, 0xef, 0xcc, 0xb5, 0xfd, 0xfd, 0x8d, 0xef,
- 0xd6, 0x95, 0x1b, 0x7f, 0x92, 0xe3, 0x4c, 0x96, 0x59, 0x65, 0xc8, 0xaf, 0xdd, 0xf5, 0x6c, 0xf6, 0xba, 0xa3,
- 0x4f, 0x2d, 0x06, 0x29, 0x12, 0x19, 0xf7, 0x6f, 0xa8, 0xaf, 0x03, 0xca, 0x28, 0x8e, 0x12, 0x2e, 0x92, 0x91,
- 0xd4, 0x8b, 0x4e, 0x59, 0x5a, 0x58, 0x10, 0x6b, 0x9e, 0xc7, 0xc6, 0x98, 0x7b, 0x96, 0x9c, 0x0d, 0xfb, 0x96,
- 0x00, 0x83, 0xa3, 0x64, 0x14, 0x89, 0x7a, 0xbc, 0x7e, 0xe2, 0xe7, 0x9b, 0xec, 0x5b, 0x5d, 0x56, 0x04, 0x8b,
- 0xc9, 0xea, 0xc8, 0x6a, 0x43, 0xc0, 0xfe, 0xd4, 0x22, 0xe0, 0x82, 0x15, 0xeb, 0x75, 0x44, 0x31, 0xe6, 0x28,
- 0xe4, 0x6f, 0x45, 0x53, 0x62, 0xec, 0xbd, 0x74, 0x43, 0x4e, 0x3b, 0xfb, 0xf0, 0x4e, 0x3d, 0xa1, 0x5b, 0x8a,
- 0x53, 0x77, 0xd4, 0x03, 0xc4, 0x1d, 0x71, 0x0b, 0x59, 0x63, 0x5a, 0x0c, 0x43, 0x57, 0x69, 0xed, 0x9a, 0xee,
- 0x32, 0x75, 0x95, 0xd2, 0x66, 0x03, 0x42, 0x98, 0x99, 0xc5, 0x09, 0x99, 0x07, 0x26, 0xbf, 0x90, 0xe9, 0x23,
- 0x7c, 0x2b, 0x93, 0x8c, 0xc6, 0x85, 0xe9, 0x84, 0x55, 0x51, 0xb8, 0x99, 0xd2, 0xd6, 0xcf, 0x7d, 0x42, 0xf5,
- 0x8f, 0xc2, 0xdf, 0x5a, 0x98, 0xba, 0x72, 0xa6, 0x1c, 0x8a, 0x03, 0x56, 0x9d, 0xed, 0x29, 0x4f, 0x46, 0x55,
- 0x59, 0xd5, 0x76, 0xe5, 0xbd, 0x26, 0xe4, 0x5d, 0xea, 0x89, 0x3e, 0x3a, 0x1c, 0xde, 0x3d, 0x1d, 0x1f, 0xba,
- 0x24, 0x3e, 0x30, 0x8a, 0xe2, 0x7c, 0x5b, 0xa2, 0xe0, 0x2d, 0x36, 0x11, 0x0a, 0x0f, 0xc6, 0xf7, 0x2e, 0x1f,
- 0xd1, 0x46, 0xc7, 0x26, 0xec, 0x5c, 0x53, 0x08, 0xe8, 0x2b, 0x8a, 0x6f, 0x45, 0xc4, 0x70, 0x09, 0xb6, 0xfb,
- 0x15, 0x78, 0x8e, 0x22, 0x77, 0x00, 0x75, 0xf0, 0x86, 0xb0, 0x58, 0x69, 0xf0, 0xf2, 0xb4, 0x89, 0x6d, 0x92,
- 0x39, 0xfb, 0x35, 0xb9, 0x2d, 0x8b, 0x0a, 0xe6, 0x43, 0x65, 0xc7, 0x6b, 0xbf, 0xc2, 0xcb, 0xca, 0xbc, 0x6c,
- 0x44, 0x3c, 0x81, 0x6d, 0x89, 0xde, 0xff, 0xba, 0xc5, 0x5c, 0xbc, 0xe3, 0x0b, 0x93, 0xcb, 0xda, 0xf5, 0x23,
- 0x59, 0x11, 0xc7, 0x88, 0x68, 0x47, 0xa3, 0x75, 0xb5, 0x7a, 0x9e, 0xa0, 0xd4, 0x57, 0x22, 0x05, 0x49, 0x73,
- 0x9c, 0xff, 0x1e, 0xf2, 0x45, 0xdc, 0xd9, 0xa8, 0x20, 0x86, 0xd1, 0x0d, 0xd1, 0xf8, 0x1a, 0x9b, 0x72, 0xf3,
- 0x9f, 0x8d, 0xf1, 0x15, 0x07, 0x77, 0x2f, 0x05, 0x03, 0xd0, 0xc9, 0xf6, 0x58, 0x32, 0x7c, 0x4b, 0x60, 0x2c,
- 0x28, 0x1c, 0xf6, 0x90, 0xd2, 0xfd, 0x50, 0xc7, 0x82, 0xc2, 0x0f, 0x0a, 0xe5, 0x39, 0x54, 0xdc, 0x31, 0x80,
- 0x88, 0xaf, 0x3e, 0x0e, 0xb9, 0x10, 0xc6, 0x9a, 0xae, 0x7e, 0xe8, 0xb0, 0x88, 0x99, 0x5d, 0x8c, 0xc2, 0x42,
- 0xe9, 0x74, 0xda, 0xcd, 0xee, 0x25, 0xff, 0x48, 0x63, 0xb2, 0xa5, 0x3b, 0x0b, 0xd8, 0xb4, 0x55, 0x40, 0xe2,
- 0xfc, 0x70, 0x3b, 0x4c, 0x66, 0x06, 0xe9, 0xca, 0x69, 0xc5, 0x7c, 0x38, 0x88, 0x44, 0x54, 0x0b, 0x01, 0x69,
- 0x79, 0x5e, 0xcf, 0xe5, 0xf2, 0x73, 0xd4, 0xd4, 0x86, 0xc7, 0x69, 0x36, 0x01, 0x6b, 0x67, 0x8a, 0x29, 0x6e,
- 0xf3, 0xb6, 0x69, 0x08, 0x79, 0x49, 0x7f, 0x31, 0x09, 0x31, 0x1c, 0xbf, 0x49, 0x97, 0x1b, 0x9f, 0x35, 0x58,
- 0x97, 0x0e, 0x66, 0x7e, 0x20, 0x7e, 0x34, 0x2b, 0xb9, 0xbc, 0x94, 0x66, 0xb1, 0xb6, 0xb1, 0xe2, 0x30, 0xd7,
- 0x76, 0xe8, 0x51, 0x1a, 0x03, 0x9d, 0x35, 0x87, 0x6c, 0x4c, 0x90, 0x76, 0xaa, 0x74, 0x77, 0x7f, 0x0a, 0x62,
- 0xc2, 0x3c, 0x20, 0xab, 0x83, 0x19, 0xcf, 0x2b, 0xba, 0x0d, 0x65, 0xf9, 0x03, 0xf9, 0x55, 0xee, 0x39, 0x0f,
- 0x9d, 0xfc, 0x2a, 0x2b, 0x8c, 0x0d, 0x13, 0x3b, 0xe6, 0x8f, 0xa5, 0xfd, 0x43, 0xab, 0x62, 0xa4, 0x00, 0xe3,
- 0xeb, 0x65, 0x93, 0x81, 0xce, 0x11, 0x8b, 0x04, 0xe6, 0x30, 0xd0, 0xd2, 0xa5, 0x83, 0x9c, 0x33, 0x0a, 0x8e,
- 0x3d, 0xb0, 0xeb, 0x4b, 0x3c, 0x92, 0xe4, 0xc1, 0xc6, 0x48, 0xe2, 0xa6, 0x6e, 0x8a, 0x3c, 0xd9, 0xf2, 0xa0,
- 0x05, 0xc4, 0x16, 0x9b, 0x47, 0x7b, 0xab, 0xb7, 0xea, 0x1f, 0x14, 0x34, 0xff, 0x71, 0x33, 0x13, 0xfc, 0x78,
- 0x77, 0x0c, 0xf4, 0x3c, 0xcf, 0xc3, 0x36, 0xbc, 0x51, 0x66, 0x89, 0xf7, 0xa1, 0x6f, 0x35, 0x20, 0xf3, 0x1b,
- 0x14, 0xd9, 0xf8, 0x9a, 0x8c, 0x75, 0x87, 0x9a, 0x21, 0x3f, 0xc0, 0xf8, 0x54, 0xc1, 0x7c, 0x96, 0x0c, 0x79,
- 0xd4, 0x41, 0x79, 0x29, 0x18, 0xf8, 0xcf, 0xab, 0xe8, 0xb9, 0x01, 0xaf, 0x7b, 0xf8, 0x90, 0xa7, 0xb0, 0x34,
- 0x75, 0xad, 0x85, 0xfd, 0x00, 0x26, 0x08, 0x13, 0xb6, 0xed, 0x11, 0x2c, 0x09, 0x10, 0x43, 0x3a, 0x49, 0xe4,
- 0xf6, 0x0e, 0x44, 0xaa, 0x55, 0x7b, 0xe9, 0xff, 0x97, 0x23, 0xb1, 0xbf, 0x7d, 0xc2, 0x17, 0xbe, 0xe4, 0x1a,
- 0x4a, 0xe9, 0x8f, 0xb3, 0xe7, 0xa6, 0xdd, 0xba, 0xde, 0x2d, 0x97, 0x2f, 0x1e, 0x37, 0xf5, 0x87, 0xf2, 0x3d,
- 0x26, 0x98, 0x27, 0x2c, 0xae, 0xb7, 0xd8, 0x04, 0x57, 0x14, 0x2a, 0xa1, 0xce, 0x53, 0x5a, 0x62, 0x16, 0xbe,
- 0x75, 0x94, 0x18, 0x08, 0x6f, 0x2a, 0xc5, 0xdb, 0x3e, 0x1d, 0x09, 0xca, 0xd5, 0x53, 0x0d, 0x0a, 0x25, 0x62,
- 0x47, 0x22, 0xfd, 0x18, 0xc0, 0x0e, 0x5d, 0xdb, 0x60, 0x12, 0x2d, 0xaa, 0x12, 0x83, 0xbd, 0x1e, 0x8c, 0xb2,
- 0x38, 0xd9, 0x93, 0x6f, 0x05, 0x98, 0xbc, 0x81, 0x50, 0x48, 0xf6, 0xe4, 0x8e, 0x5d, 0xcb, 0xbd, 0xcc, 0x52,
- 0x28, 0xc3, 0x8b, 0xc6, 0x0c, 0x0f, 0x7d, 0x57, 0x8e, 0xf3, 0x75, 0xce, 0xed, 0x4c, 0xa5, 0x9f, 0x2c, 0x69,
- 0xe4, 0x8b, 0x07, 0x79, 0x61, 0x9d, 0xb9, 0xa1, 0x2d, 0xf8, 0xa1, 0x59, 0x04, 0x63, 0x24, 0x2c, 0xad, 0xa3,
- 0x8f, 0x7c, 0x43, 0xb6, 0x25, 0x25, 0xc9, 0x26, 0x8c, 0x04, 0x5c, 0xd8, 0x73, 0x8f, 0x54, 0xaa, 0xc8, 0xf1,
- 0xb8, 0x25, 0x5a, 0xa0, 0x6c, 0xf2, 0x22, 0xda, 0x31, 0x26, 0x2f, 0x83, 0xf7, 0xef, 0x1c, 0x30, 0x66, 0xee,
- 0x1d, 0x1c, 0x35, 0x8e, 0x6a, 0x17, 0x70, 0xc3, 0xbc, 0x0b, 0xa8, 0xfa, 0x8c, 0xc8, 0xda, 0x53, 0x8d, 0x42,
- 0xb0, 0xda, 0x87, 0x8a, 0xe4, 0xd8, 0x43, 0xe2, 0xa1, 0x3f, 0x81, 0xe6, 0x57, 0xb1, 0x17, 0x1a, 0xf6, 0xb5,
- 0xe2, 0xeb, 0x1d, 0x6f, 0x3c, 0xef, 0x20, 0xf6, 0x70, 0x9b, 0xcb, 0x69, 0x5c, 0x85, 0xb6, 0xbd, 0x8a, 0xa6,
- 0xf2, 0x57, 0xb1, 0x09, 0x12, 0x6e, 0x8a, 0xcb, 0x99, 0x42, 0xdf, 0x13, 0x05, 0x74, 0x3f, 0x30, 0xc1, 0x8b,
- 0xec, 0x10, 0xb8, 0x83, 0x89, 0xa2, 0x00, 0x62, 0x78, 0xf1, 0xbd, 0xb1, 0xe4, 0xd1, 0x5c, 0x1f, 0x1a, 0x62,
- 0x23, 0xb2, 0xb9, 0x49, 0xd7, 0x04, 0x3d, 0xa8, 0xcd, 0x20, 0xbd, 0x4b, 0xc5, 0x9e, 0x95, 0x89, 0x56, 0x42,
- 0xc6, 0xcf, 0x00, 0x4b, 0x43, 0xa8, 0xaa, 0x62, 0x0a, 0xa3, 0xac, 0xe6, 0x1b, 0x81, 0xae, 0x47, 0x2d, 0x01,
- 0x33, 0x31, 0x09, 0x93, 0x90, 0x48, 0x15, 0xb9, 0x26, 0x08, 0x7f, 0xa0, 0xf2, 0xb2, 0x9e, 0x62, 0xdf, 0x4a,
- 0xc9, 0x5f, 0x84, 0x8c, 0x40, 0xe8, 0x28, 0xa7, 0x0d, 0x28, 0xb0, 0x4b, 0x1c, 0x53, 0xb7, 0x70, 0x13, 0x5f,
- 0x1b, 0xd7, 0xd3, 0x08, 0xce, 0x5e, 0x7c, 0x2a, 0x35, 0x40, 0x8c, 0xed, 0xbf, 0x83, 0x59, 0x27, 0x99, 0x8e,
- 0x1d, 0xd4, 0x38, 0xba, 0x63, 0x8e, 0x31, 0xc1, 0xc8, 0x08, 0xba, 0x12, 0x1f, 0x31, 0x15, 0xcb, 0x5f, 0x4a,
- 0x11, 0xc3, 0x4a, 0x15, 0xcb, 0xe9, 0xc9, 0x29, 0xd9, 0x38, 0x7e, 0xf9, 0xd0, 0x9d, 0xde, 0x97, 0xce, 0x6f,
- 0xfb, 0x3f, 0x35, 0x56, 0x5f, 0xa0, 0xbe, 0xd0, 0x46, 0xb1, 0x48, 0x7f, 0xbe, 0x5b, 0x59, 0xa8, 0x19, 0xb8,
- 0x08, 0x13, 0x46, 0x2e, 0x25, 0x33, 0xd7, 0x5c, 0xc4, 0xb1, 0xe1, 0xa3, 0xe5, 0xf0, 0x99, 0x24, 0x02, 0xfc,
- 0x4f, 0x92, 0x74, 0x9f, 0x45, 0x85, 0x63, 0xf3, 0xb0, 0xad, 0x19, 0x6e, 0x79, 0xae, 0x9c, 0x50, 0x25, 0xb4,
- 0x53, 0xde, 0xd0, 0xd2, 0xfd, 0x0b, 0x0a, 0x06, 0x3c, 0x49, 0x89, 0x78, 0xcf, 0x70, 0xdd, 0x5c, 0xaa, 0x5a,
- 0xed, 0x96, 0xd3, 0x47, 0xa6, 0x3a, 0xd2, 0xd3, 0xbb, 0xf1, 0x63, 0xa7, 0x6f, 0x07, 0xb5, 0x68, 0xf2, 0x39,
- 0x62, 0x24, 0xca, 0x19, 0x74, 0xa1, 0xa7, 0xec, 0x55, 0xd6, 0x15, 0x44, 0xfc, 0xe3, 0xb7, 0x5d, 0x5e, 0xec,
- 0xba, 0x34, 0x39, 0xbd, 0xfe, 0xe0, 0x79, 0xd8, 0x84, 0x66, 0x6b, 0x62, 0xc1, 0x85, 0xf4, 0xad, 0x4e, 0xa4,
- 0x10, 0xb7, 0xa7, 0x10, 0x3b, 0x13, 0x2c, 0x3f, 0x38, 0x0e, 0x15, 0xa8, 0x55, 0x3c, 0xaa, 0x11, 0xe9, 0x03,
- 0x6a, 0x8c, 0xb4, 0x95, 0x82, 0x1c, 0x89, 0x35, 0x4f, 0x5e, 0xff, 0x38, 0x89, 0x95, 0x92, 0x0e, 0xc0, 0x0b,
- 0x92, 0x48, 0x3a, 0x5b, 0x05, 0xd2, 0x95, 0x15, 0x71, 0x3e, 0x60, 0xc8, 0x91, 0x03, 0x06, 0x5f, 0x61, 0xa3,
- 0x6f, 0x15, 0x65, 0xfc, 0xd8, 0x4a, 0x42, 0xd0, 0xcf, 0x7e, 0x1b, 0x16, 0x2c, 0x84, 0x3a, 0x6e, 0xef, 0x4e,
- 0x51, 0x47, 0x67, 0x83, 0x32, 0x00, 0xaa, 0x26, 0xb6, 0x84, 0x6f, 0x62, 0xe0, 0x3e, 0xb7, 0xfa, 0xf8, 0x10,
- 0xf3, 0x61, 0xaa, 0xd4, 0x5f, 0x53, 0xfe, 0xeb, 0x32, 0x38, 0xaf, 0x8a, 0x88, 0x29, 0x9a, 0x2a, 0x7a, 0x49,
- 0x1c, 0x72, 0xfa, 0x32, 0x75, 0x82, 0xee, 0xb2, 0x01, 0xc9, 0x22, 0x4e, 0xa2, 0x03, 0x31, 0xa0, 0x0c, 0xaa,
- 0xd7, 0x22, 0x9f, 0x11, 0x09, 0xd8, 0xf6, 0x5b, 0xa0, 0xd7, 0x98, 0x2b, 0xf6, 0xd1, 0x1e, 0xbb, 0x47, 0xef,
- 0xdc, 0x48, 0xec, 0xff, 0x24, 0x46, 0x77, 0xdc, 0xf3, 0xfc, 0xa5, 0xee, 0x9a, 0x7c, 0x26, 0xd7, 0x27, 0x09,
- 0xf4, 0x67, 0x17, 0xda, 0x37, 0x8c, 0x1f, 0xef, 0xc6, 0xc4, 0x4c, 0x36, 0x8a, 0x25, 0x14, 0xb2, 0xe3, 0xa1,
- 0x2e, 0xd3, 0x0b, 0x70, 0x6a, 0x51, 0x8e, 0x46, 0x27, 0x18, 0x1a, 0x79, 0xbf, 0x5a, 0xd7, 0x18, 0x5d, 0x13,
- 0xea, 0x1d, 0xd7, 0xf4, 0x18, 0x3d, 0xc4, 0x0e, 0x0f, 0xb1, 0x9c, 0xfe, 0x77, 0xb4, 0x23, 0x02, 0x36, 0x8f,
- 0x30, 0x46, 0xf8, 0x16, 0x41, 0xce, 0xb1, 0x04, 0xee, 0x51, 0xa6, 0x23, 0x03, 0x79, 0xcf, 0xff, 0x52, 0xf0,
- 0x0e, 0x67, 0xe8, 0xe5, 0x1d, 0x3e, 0x8a, 0x32, 0x34, 0x79, 0x93, 0x5e, 0xdc, 0xa7, 0x4f, 0x7d, 0x74, 0x48,
- 0x3b, 0xf5, 0x01, 0xd6, 0x8f, 0x74, 0x39, 0x45, 0x96, 0xb7, 0x07, 0x94, 0xc1, 0x17, 0x40, 0xfb, 0xa2, 0xa6,
- 0x31, 0x67, 0x06, 0xfa, 0xbb, 0xbe, 0x15, 0x81, 0xae, 0xa2, 0x7d, 0xf1, 0xe7, 0xb2, 0x1a, 0xa2, 0x98, 0x83,
- 0x3f, 0x8c, 0x17, 0x65, 0xf9, 0x79, 0x6d, 0x17, 0x9a, 0x22, 0x93, 0x2a, 0x42, 0x67, 0x8c, 0xbb, 0x59, 0x5b,
- 0xa3, 0x2e, 0xbe, 0xa1, 0xc2, 0xaf, 0xa5, 0xc8, 0xa4, 0x6e, 0x79, 0x5c, 0x09, 0x2d, 0xd9, 0x12, 0xa6, 0xa7,
- 0xf8, 0x5f, 0x79, 0x33, 0x0b, 0x3e, 0x36, 0xf6, 0xac, 0x11, 0xd3, 0xe8, 0xd2, 0xc3, 0x6b, 0xfb, 0xbe, 0x5e,
- 0xba, 0x4f, 0x5e, 0xf0, 0xbb, 0x5d, 0x65, 0x26, 0x40, 0x74, 0x51, 0xdd, 0x83, 0x19, 0x1b, 0x8f, 0x31, 0x3f,
- 0xab, 0x53, 0xcd, 0xd6, 0xa6, 0x1e, 0x0e, 0x51, 0xae, 0x98, 0x86, 0x04, 0x56, 0x37, 0xa9, 0x8b, 0xe7, 0x54,
- 0x21, 0x73, 0x82, 0x06, 0x89, 0xa2, 0x3c, 0x72, 0x38, 0xba, 0x98, 0xf2, 0x07, 0x9b, 0x65, 0x1e, 0x37, 0x92,
- 0xf8, 0x38, 0xbb, 0xbe, 0x35, 0xed, 0x2b, 0x28, 0x3d, 0xe3, 0xd9, 0x36, 0x08, 0xc9, 0xf4, 0xe6, 0x19, 0xaf,
- 0x6c, 0xbf, 0x80, 0xd4, 0x1b, 0xda, 0x2c, 0x49, 0x62, 0xd5, 0x05, 0xc6, 0x4d, 0x6d, 0xc2, 0xf2, 0x37, 0xa7,
- 0x7a, 0x2b, 0x06, 0x15, 0x6b, 0x8c, 0x6d, 0xef, 0x1e, 0xf9, 0xe1, 0xdc, 0xce, 0xd1, 0x21, 0xa4, 0x19, 0xcc,
- 0xa1, 0x1e, 0x44, 0xa3, 0x9c, 0x7d, 0xe5, 0x52, 0xe5, 0xad, 0xfc, 0xdd, 0x02, 0xfb, 0x13, 0x31, 0xbc, 0x04,
- 0x7b, 0x4c, 0x79, 0xff, 0x01, 0xc4, 0x94, 0xcb, 0x17, 0xc8, 0x4c, 0xe3, 0x55, 0x22, 0xd7, 0xba, 0xc1, 0x1d,
- 0x44, 0xe5, 0x96, 0x17, 0xc4, 0x2d, 0x66, 0xf4, 0x5e, 0x72, 0xc3, 0x84, 0x15, 0xd9, 0x91, 0x79, 0xb7, 0x4b,
- 0x7a, 0x85, 0x8a, 0xa7, 0x80, 0x5c, 0x59, 0xa3, 0x0a, 0x38, 0x4d, 0xa6, 0x36, 0x15, 0x5b, 0xd2, 0x8f, 0x2c,
- 0xd2, 0x6f, 0x07, 0xa8, 0x75, 0xc1, 0x29, 0x22, 0x90, 0x3b, 0x57, 0x34, 0x0e, 0x01, 0x88, 0x45, 0xad, 0xed,
- 0x9a, 0x4f, 0x83, 0x9a, 0xf4, 0x46, 0xcf, 0x48, 0xcf, 0x3c, 0x27, 0x10, 0xf5, 0x8d, 0xfa, 0x66, 0x37, 0x86,
- 0x3b, 0xe0, 0x64, 0x7b, 0xd6, 0x36, 0x32, 0x6b, 0x35, 0x5c, 0xdd, 0x03, 0x62, 0x39, 0xf8, 0x73, 0xe3, 0xd9,
- 0x87, 0x90, 0x2b, 0xe4, 0x0d, 0xca, 0xc1, 0x2d, 0x20, 0xaf, 0x38, 0x11, 0xe7, 0x05, 0x10, 0xb5, 0x43, 0x9b,
- 0x43, 0xd5, 0xc7, 0x15, 0x16, 0xa9, 0x58, 0x4a, 0xaa, 0xd1, 0xb6, 0xdd, 0xe0, 0x50, 0x52, 0xdb, 0xee, 0x38,
- 0x7c, 0xa0, 0x23, 0x61, 0xbb, 0x33, 0x2b, 0x1a, 0x91, 0xa3, 0x86, 0x5e, 0xb6, 0xae, 0xf3, 0xbc, 0xf2, 0x09,
- 0x61, 0xd9, 0x32, 0x8d, 0x1c, 0x06, 0xa2, 0x7f, 0xdd, 0x6b, 0x80, 0x0f, 0x29, 0x71, 0x84, 0x9d, 0x14, 0xe6,
- 0x7a, 0xae, 0x34, 0x90, 0x93, 0x98, 0x97, 0x20, 0xd1, 0xaa, 0xcf, 0xad, 0x6d, 0x78, 0x93, 0x82, 0x65, 0x6d,
- 0x47, 0x77, 0x00, 0x2e, 0x23, 0x49, 0xd1, 0xe1, 0xc2, 0x0c, 0x32, 0xeb, 0x07, 0x35, 0xa6, 0xe9, 0x15, 0xab,
- 0x10, 0xa8, 0x51, 0xc7, 0xc2, 0x50, 0x2d, 0xd5, 0x58, 0x0b, 0x2f, 0xad, 0x02, 0x20, 0x96, 0xb4, 0xb4, 0xfb,
- 0x9c, 0x09, 0xa7, 0x1e, 0xfe, 0x87, 0xa0, 0xfe, 0xe5, 0x64, 0x40, 0xff, 0x5a, 0x3c, 0xed, 0xe0, 0x1c, 0xe3,
- 0xfc, 0xb1, 0x99, 0x66, 0x4f, 0xe3, 0xae, 0x60, 0xef, 0xaf, 0xcc, 0x35, 0x5a, 0x06, 0xe9, 0x7a, 0x0d, 0x94,
- 0x62, 0xe6, 0x37, 0xb1, 0x5b, 0xf7, 0x35, 0x24, 0x96, 0x4f, 0x47, 0xb7, 0x9a, 0xfa, 0x0d, 0x91, 0x30, 0xa9,
- 0x38, 0x65, 0xa6, 0xd9, 0x13, 0x69, 0x2b, 0x2b, 0x51, 0x1a, 0x8e, 0xb5, 0xb4, 0x59, 0xde, 0x24, 0xa9, 0xbb,
- 0xe7, 0xc6, 0x37, 0x48, 0x52, 0x41, 0xe1, 0x0a, 0x01, 0x2b, 0x8a, 0x72, 0xee, 0xc9, 0xc1, 0x49, 0xed, 0xa7,
- 0x2a, 0x14, 0xd3, 0x91, 0x44, 0xef, 0x42, 0x14, 0x7f, 0xeb, 0xf6, 0x5c, 0x63, 0x9a, 0x45, 0x03, 0x2f, 0x88,
- 0x90, 0xcb, 0x95, 0x55, 0x61, 0x33, 0x36, 0x34, 0x97, 0x80, 0x1e, 0xb2, 0x0b, 0x46, 0x37, 0xa9, 0xb5, 0xb2,
- 0xb0, 0xee, 0xda, 0x70, 0x95, 0x26, 0x6e, 0x63, 0x1c, 0x24, 0x69, 0xe7, 0xc3, 0xe1, 0xe0, 0xc1, 0x36, 0x03,
- 0x24, 0x48, 0x99, 0xb4, 0x12, 0x39, 0x85, 0xc9, 0x99, 0xa2, 0x6a, 0x99, 0x22, 0x69, 0xb2, 0xe1, 0x85, 0x6f,
- 0xd9, 0x26, 0x27, 0x09, 0xa0, 0xdc, 0x50, 0x00, 0xba, 0x5b, 0xc0, 0xa8, 0x5c, 0xb4, 0xf9, 0x0e, 0x7f, 0xe4,
- 0x9e, 0xf3, 0xf8, 0xc7, 0x58, 0x9e, 0xad, 0x73, 0x44, 0x16, 0x03, 0x21, 0x57, 0xbb, 0x38, 0xde, 0x63, 0xb1,
- 0xa7, 0x9f, 0xd4, 0x64, 0x04, 0xce, 0x7e, 0xfe, 0x07, 0xcd, 0xac, 0x63, 0xba, 0x57, 0x7a, 0x07, 0x86, 0x5f,
- 0x15, 0x5d, 0x84, 0x28, 0x66, 0xc1, 0x5b, 0x83, 0x2e, 0x77, 0xa8, 0x61, 0x35, 0x2b, 0x2d, 0x50, 0xf2, 0x41,
- 0xa4, 0x94, 0x7f, 0x19, 0xdf, 0xc4, 0xe6, 0x97, 0xc7, 0x4c, 0xd3, 0xd1, 0x6d, 0x4b, 0xab, 0x49, 0xee, 0x6e,
- 0x1f, 0xdf, 0x3f, 0xa8, 0x4b, 0x38, 0xdb, 0xb6, 0xca, 0x5f, 0x75, 0xd5, 0xac, 0x2c, 0x89, 0x2c, 0xf2, 0xa4,
- 0x3c, 0x88, 0x7b, 0x0e, 0x5f, 0xa6, 0x47, 0xbe, 0xca, 0x5a, 0x13, 0x20, 0x5a, 0x67, 0x8f, 0xcd, 0xbd, 0xaf,
- 0x8d, 0x2b, 0x32, 0xb5, 0x43, 0xa4, 0x5c, 0xfe, 0xe8, 0xe8, 0xd1, 0x29, 0x04, 0xb9, 0xbe, 0x73, 0x2e, 0x77,
- 0xa0, 0x1c, 0xac, 0xb2, 0x73, 0x78, 0x90, 0x0d, 0xd6, 0x28, 0x46, 0xe8, 0x74, 0xf8, 0xdd, 0x51, 0x59, 0x25,
- 0xd7, 0x5f, 0x58, 0xe2, 0x0c, 0x28, 0xcc, 0x9a, 0x2b, 0x90, 0xad, 0x0c, 0x43, 0xa1, 0x88, 0x46, 0xe5, 0xf6,
- 0xb6, 0xac, 0xbb, 0x97, 0x52, 0xb1, 0x09, 0x7b, 0x5b, 0x4d, 0x7a, 0xe4, 0xc2, 0xf6, 0x4d, 0xd6, 0x19, 0xb3,
- 0x64, 0xe6, 0x7e, 0xf2, 0xb6, 0x9b, 0xda, 0x60, 0x64, 0x91, 0x7a, 0xb3, 0x0a, 0x32, 0xff, 0x75, 0x62, 0xe7,
- 0x03, 0xfa, 0x2f, 0x34, 0xc8, 0xdc, 0x24, 0x40, 0xe0, 0x93, 0x19, 0x7b, 0x31, 0x23, 0x23, 0x16, 0xcd, 0x3b,
- 0xf2, 0x3d, 0x7e, 0x00, 0xb3, 0xad, 0x5e, 0x19, 0x16, 0x2c, 0xe4, 0xef, 0xc8, 0x8e, 0x6c, 0x83, 0x40, 0x69,
- 0xbf, 0x80, 0x33, 0xdf, 0xbf, 0xaf, 0x48, 0xe5, 0x1f, 0xfd, 0x7c, 0xbf, 0x4c, 0xed, 0xf8, 0x4b, 0xe0, 0x11,
- 0xeb, 0x0e, 0xdc, 0xd4, 0xd6, 0x09, 0x85, 0x59, 0x28, 0x21, 0xe5, 0x8f, 0xda, 0x5f, 0x4a, 0xaa, 0x44, 0x62,
- 0x7e, 0x8c, 0xb4, 0xa6, 0x80, 0xf5, 0xca, 0x9d, 0xe6, 0x59, 0xc6, 0xd8, 0x44, 0x09, 0x6a, 0x24, 0x03, 0x4a,
- 0xee, 0x32, 0x9d, 0xf8, 0x1b, 0x49, 0xb7, 0x90, 0x70, 0x91, 0xb2, 0x0f, 0x8e, 0xe4, 0x2b, 0xc0, 0xbd, 0x2f,
- 0x71, 0x11, 0x4c, 0xd3, 0xb8, 0x39, 0xf1, 0x3a, 0x10, 0xb6, 0x36, 0x89, 0x84, 0x5b, 0xdd, 0x5f, 0xd1, 0xe0,
- 0xbd, 0x4a, 0x02, 0x2a, 0x5c, 0x67, 0xd7, 0xc1, 0x07, 0x4d, 0xe2, 0xc1, 0xab, 0xa9, 0xc3, 0x69, 0x85, 0x8d,
- 0xff, 0x63, 0x7d, 0x36, 0xb6, 0x9f, 0xe2, 0x41, 0x49, 0x36, 0x70, 0xa3, 0x03, 0x95, 0x93, 0x90, 0x77, 0x33,
- 0x0a, 0xed, 0xa8, 0x8b, 0x7e, 0x32, 0x2a, 0x95, 0x2e, 0x11, 0x25, 0xc9, 0x40, 0x9c, 0x6e, 0x61, 0x8f, 0x6f,
- 0x52, 0x2b, 0x7f, 0xc4, 0x07, 0xde, 0x34, 0xb8, 0x43, 0x1c, 0xc5, 0x91, 0xc2, 0xc6, 0xba, 0x47, 0x27, 0x2e,
- 0x3f, 0xda, 0x48, 0xac, 0xca, 0x94, 0x56, 0x0e, 0x88, 0xb1, 0x9c, 0x98, 0xd6, 0xd2, 0x48, 0xbb, 0xa8, 0xdb,
- 0x03, 0xc1, 0x0a, 0xba, 0x3d, 0x77, 0xb3, 0xa4, 0xf0, 0x18, 0x4e, 0x9d, 0x69, 0xaa, 0x85, 0x06, 0xa4, 0xd6,
- 0x58, 0x94, 0xab, 0xf9, 0x11, 0x78, 0x78, 0x70, 0xf8, 0x07, 0xce, 0x8b, 0xc0, 0xd0, 0xac, 0x70, 0xae, 0x52,
- 0xd4, 0xc2, 0x32, 0xd2, 0xac, 0xc1, 0xcd, 0xc4, 0xda, 0xa2, 0x8e, 0x39, 0xc6, 0x68, 0x47, 0x6a, 0xb2, 0xcd,
- 0x2e, 0x63, 0x20, 0xa9, 0x32, 0x66, 0xbd, 0xe6, 0x6c, 0xd1, 0xe0, 0x91, 0xae, 0x3f, 0x89, 0x51, 0xcb, 0x86,
- 0xa4, 0x01, 0x37, 0x2c, 0xba, 0x96, 0xfc, 0x6f, 0x44, 0x3b, 0x58, 0xdd, 0x99, 0x24
+ 0x9e, 0x9b, 0x1e, 0x97, 0x9e, 0x6d, 0x82, 0xbf, 0x64, 0xfc, 0x7d, 0x2c, 0x5f, 0xdb, 0xd5, 0x00, 0xa0, 0x1e,
+ 0x86, 0x1c, 0x79, 0x3e, 0xf5, 0xb3, 0xce, 0x0b, 0xcc, 0x53, 0xce, 0x26, 0x35, 0x94, 0xbb, 0xdc, 0xf3, 0xa9,
+ 0x1c, 0x43, 0x70, 0xc9, 0xd9, 0xc3, 0xe3, 0x6d, 0xdd, 0x7c, 0x60, 0xb1, 0x64, 0x08, 0x41, 0x4f, 0x72, 0x70,
+ 0x29, 0x2b, 0xc2, 0x8e, 0x85, 0x7d, 0xae, 0x17, 0x55, 0x4d, 0x22, 0x56, 0x2b, 0x0c, 0xdf, 0x18, 0xf7, 0xfa,
+ 0x4c, 0x54, 0x6a, 0x03, 0xf8, 0x2c, 0xd4, 0x9e, 0x88, 0xd8, 0x31, 0xb9, 0xa0, 0x09, 0xdb, 0x5a, 0xae, 0xbd,
+ 0xc3, 0x04, 0x59, 0x49, 0x16, 0x1c, 0xaa, 0xda, 0xcd, 0x2a, 0xb3, 0x6f, 0xd2, 0x92, 0xb5, 0x86, 0x05, 0x57,
+ 0xfb, 0xc9, 0x8a, 0x72, 0x82, 0x05, 0xd4, 0xda, 0x58, 0xf0, 0x2e, 0xac, 0xbc, 0xd6, 0x81, 0xfc, 0x67, 0xfb,
+ 0x49, 0xcc, 0x0a, 0xed, 0xbf, 0xe9, 0x28, 0xa7, 0x65, 0xab, 0x73, 0x19, 0xbe, 0x22, 0xe7, 0xac, 0xb9, 0x48,
+ 0xad, 0x0b, 0x3d, 0xb2, 0xf9, 0x5a, 0x9c, 0x67, 0x4e, 0x08, 0x7d, 0x9c, 0x97, 0xab, 0x52, 0xee, 0x13, 0x16,
+ 0xe2, 0x7c, 0x0c, 0xa6, 0xee, 0xea, 0xbc, 0xe4, 0xe3, 0xcb, 0x82, 0x96, 0xa6, 0x74, 0xaa, 0xb3, 0xe2, 0xca,
+ 0xa3, 0xf7, 0x0a, 0xac, 0x13, 0xbd, 0xd6, 0x9f, 0x6c, 0xf3, 0xbc, 0x9a, 0x73, 0xa5, 0xaa, 0x84, 0x16, 0x03,
+ 0x41, 0x64, 0xd0, 0xc3, 0x4b, 0x01, 0x1e, 0x9b, 0x95, 0x0d, 0x95, 0xa7, 0x53, 0x86, 0xbb, 0x77, 0xb3, 0x2e,
+ 0xaa, 0xa6, 0x93, 0x99, 0x4f, 0x75, 0xb5, 0x8d, 0xc5, 0x5d, 0xa6, 0x3b, 0x71, 0x20, 0xe4, 0x2d, 0x0c, 0xfc,
+ 0x57, 0xfc, 0x33, 0x76, 0x0b, 0x5d, 0xdf, 0x61, 0x80, 0x50, 0x22, 0x2e, 0x30, 0xd6, 0x65, 0xd1, 0x8a, 0xe4,
+ 0x54, 0xf2, 0xc8, 0xa1, 0xc0, 0x2d, 0xed, 0x5a, 0xeb, 0x30, 0x9d, 0x8d, 0xf9, 0xde, 0xd2, 0x47, 0x71, 0x73,
+ 0xd4, 0x77, 0x76, 0xad, 0xc4, 0x5c, 0x32, 0x49, 0xbc, 0xcc, 0xa7, 0xcb, 0xde, 0x4f, 0x2d, 0x0c, 0x4d, 0xaa,
+ 0x9b, 0x6c, 0xf1, 0x49, 0xdd, 0x3a, 0xd3, 0x89, 0xaf, 0x6f, 0x14, 0x33, 0xc0, 0x40, 0xce, 0xb7, 0x1d, 0x6c,
+ 0xe1, 0x28, 0x78, 0x12, 0x1b, 0xc0, 0xd9, 0x1e, 0xa1, 0x14, 0x4e, 0xae, 0x1d, 0x8a, 0x79, 0x1f, 0xf4, 0x3e,
+ 0x21, 0x56, 0x5e, 0xb1, 0x90, 0x63, 0x28, 0xc1, 0xcf, 0xb4, 0xf9, 0xf4, 0x50, 0x51, 0xd2, 0xeb, 0xbe, 0x29,
+ 0xe7, 0xeb, 0x15, 0x06, 0xb7, 0x99, 0x01, 0xe5, 0x25, 0xd4, 0x3f, 0x8a, 0x5a, 0x17, 0xc1, 0x4a, 0x87, 0x18,
+ 0x16, 0x3e, 0xaf, 0xe4, 0xc7, 0x75, 0x4b, 0x95, 0x68, 0x9f, 0x50, 0x28, 0xd1, 0x8a, 0x87, 0x5d, 0x0a, 0x7a,
+ 0x0d, 0xfa, 0x95, 0xa7, 0xce, 0x05, 0x85, 0xe6, 0xf3, 0x34, 0x82, 0xac, 0x73, 0xf8, 0xc4, 0x7c, 0x6b, 0x9a,
+ 0x52, 0xcb, 0x99, 0x41, 0xfc, 0x40, 0xac, 0xf8, 0x08, 0x4c, 0x16, 0x4c, 0x4c, 0x8d, 0x15, 0x0b, 0x04, 0xbe,
+ 0x8e, 0x09, 0xa0, 0xe9, 0x30, 0x0e, 0xd5, 0x61, 0xf7, 0x95, 0xcd, 0x88, 0x35, 0x0a, 0x7c, 0x1b, 0x67, 0x8c,
+ 0xe1, 0xb8, 0x2c, 0x91, 0xa1, 0x12, 0x03, 0x3c, 0xef, 0xd2, 0x30, 0x38, 0x75, 0x2a, 0x7c, 0xb2, 0xab, 0xaa,
+ 0x68, 0x7e, 0xff, 0xd4, 0xdb, 0xb9, 0x17, 0xca, 0x6a, 0x96, 0x19, 0xdb, 0x15, 0xd1, 0x46, 0xe2, 0xf8, 0xe6,
+ 0x3f, 0x9a, 0xdf, 0x29, 0xa9, 0x96, 0xbd, 0xb1, 0x9c, 0xa3, 0x2e, 0x42, 0x62, 0x64, 0xd4, 0xc2, 0x84, 0xec,
+ 0x82, 0x0e, 0x3b, 0x2f, 0x03, 0x3e, 0x2f, 0x18, 0x79, 0x17, 0x5a, 0xff, 0x08, 0x74, 0x39, 0xdc, 0x0e, 0x1f,
+ 0x26, 0x20, 0x6b, 0xde, 0x12, 0x62, 0x1a, 0x22, 0xde, 0xab, 0xa4, 0x0c, 0x4f, 0x8c, 0xf8, 0xec, 0x61, 0xae,
+ 0xce, 0x24, 0x25, 0xc4, 0x1f, 0x81, 0x8a, 0xff, 0x8a, 0x12, 0x7a, 0x43, 0x1c, 0x72, 0xa0, 0xf6, 0x37, 0x45,
+ 0x84, 0x5f, 0x27, 0x00, 0xb4, 0xb9, 0xb6, 0xc8, 0x09, 0x14, 0xe9, 0x17, 0x3b, 0xef, 0x85, 0xc6, 0x0e, 0xa1,
+ 0x08, 0x0f, 0x22, 0xbf, 0x17, 0xf5, 0x31, 0x84, 0xa9, 0x45, 0x4e, 0x33, 0x7f, 0x67, 0xfe, 0x79, 0x51, 0x2e,
+ 0x93, 0x4a, 0x15, 0xc0, 0x23, 0x54, 0x42, 0x48, 0xf6, 0xec, 0x5b, 0x0f, 0xc9, 0x7c, 0x35, 0xcd, 0xd4, 0x43,
+ 0x21, 0xe9, 0x96, 0x9e, 0xd9, 0xeb, 0x42, 0x74, 0x7e, 0xe3, 0xcf, 0x92, 0x78, 0x01, 0x04, 0x5c, 0xe9, 0x99,
+ 0x79, 0x66, 0xff, 0x69, 0xbd, 0x30, 0x36, 0x9d, 0x9b, 0x84, 0x90, 0x36, 0x72, 0x23, 0xf9, 0xb7, 0x81, 0x9d,
+ 0xd5, 0xbb, 0xd5, 0xd7, 0x58, 0x47, 0x38, 0xcc, 0x0a, 0xf3, 0xcb, 0x05, 0x32, 0x64, 0xdc, 0x48, 0xf2, 0x09,
+ 0xbd, 0xa5, 0x23, 0x01, 0x8f, 0x37, 0xb4, 0xd4, 0xf5, 0x09, 0xfb, 0xe5, 0x97, 0xca, 0x31, 0x74, 0xd3, 0x89,
+ 0x99, 0xb3, 0xca, 0xdf, 0x90, 0x9a, 0xa4, 0xb5, 0x0a, 0xea, 0x7d, 0x75, 0xa1, 0x0f, 0x44, 0x42, 0xd2, 0x8d,
+ 0x91, 0xbe, 0x7f, 0x27, 0xc4, 0x27, 0xb4, 0x83, 0xba, 0xad, 0x15, 0x52, 0x59, 0xa1, 0x6e, 0x5f, 0xa7, 0xe5,
+ 0x88, 0x4b, 0x4d, 0x67, 0x06, 0x3e, 0x08, 0xcb, 0x57, 0x0e, 0x96, 0x67, 0xf9, 0x4b, 0xc9, 0x0e, 0xf9, 0x6b,
+ 0xc2, 0x01, 0xc3, 0x8f, 0x16, 0xe1, 0x7e, 0x2e, 0x2d, 0x8f, 0x9d, 0x1e, 0x88, 0x3f, 0x05, 0xe1, 0x44, 0x91,
+ 0x64, 0xb2, 0x76, 0xf5, 0x35, 0xe9, 0xb1, 0x02, 0x2d, 0x96, 0xfc, 0x86, 0x29, 0x65, 0xd0, 0x6e, 0x27, 0xba,
+ 0x3d, 0x2d, 0xa6, 0x42, 0xee, 0x9f, 0xd7, 0xc2, 0x42, 0xb3, 0x62, 0xa3, 0x30, 0x24, 0x24, 0x71, 0xdd, 0xe7,
+ 0x6c, 0x6e, 0x7a, 0xfb, 0x20, 0x0e, 0x83, 0x19, 0x9a, 0x1b, 0x73, 0x72, 0x3b, 0xf5, 0x48, 0xba, 0xf4, 0xce,
+ 0x45, 0xae, 0x60, 0x12, 0xdd, 0xbe, 0x27, 0xb9, 0xd3, 0xa8, 0xf3, 0x98, 0xc6, 0x6e, 0x1c, 0x34, 0x59, 0x6e,
+ 0xed, 0xe1, 0xb7, 0xa8, 0xc5, 0xd1, 0x21, 0x23, 0x60, 0xcf, 0x86, 0xd0, 0x03, 0x58, 0xe2, 0xc5, 0x53, 0x58,
+ 0x42, 0x05, 0x8a, 0x76, 0x7b, 0x1a, 0x14, 0xa0, 0x71, 0xee, 0xc6, 0xe9, 0x38, 0xf1, 0x6e, 0xe0, 0x1c, 0xc6,
+ 0x82, 0x25, 0x0b, 0x4a, 0x47, 0xb8, 0x1a, 0xe5, 0x21, 0x27, 0x12, 0x52, 0x1d, 0xef, 0xc3, 0xca, 0x4e, 0x03,
+ 0xbe, 0xaf, 0x0b, 0x5c, 0x8e, 0x6c, 0xb4, 0x30, 0x61, 0xe9, 0x45, 0xc4, 0xa5, 0xc1, 0x87, 0x49, 0xb5, 0x01,
+ 0x6e, 0x35, 0x20, 0xc7, 0x58, 0xed, 0xed, 0x6c, 0x56, 0x6c, 0x81, 0xd9, 0x8b, 0x58, 0x8d, 0xe0, 0x24, 0xba,
+ 0x27, 0x69, 0xa8, 0xcb, 0x8c, 0xf7, 0xa1, 0x30, 0x82, 0xd4, 0xa5, 0xe0, 0x96, 0x33, 0x2f, 0x7e, 0xdf, 0x9f,
+ 0x28, 0x3a, 0xa8, 0xab, 0xcf, 0x50, 0x70, 0xd9, 0xaf, 0xf1, 0xfe, 0x29, 0xb3, 0x84, 0x55, 0x36, 0x02, 0xc3,
+ 0xf9, 0x11, 0xd2, 0x09, 0x3f, 0xbd, 0x4e, 0x12, 0x92, 0x56, 0x1c, 0xad, 0x72, 0x59, 0xae, 0x88, 0x40, 0x6f,
+ 0xbd, 0x50, 0x69, 0x99, 0xe9, 0x40, 0x21, 0x15, 0xdf, 0x19, 0x6d, 0xcf, 0x82, 0x83, 0x67, 0xd5, 0x30, 0x79,
+ 0x32, 0x94, 0xd4, 0xf0, 0x43, 0xf1, 0x66, 0x07, 0xe2, 0xab, 0x44, 0x94, 0x0b, 0x51, 0x91, 0x1d, 0xab, 0x3b,
+ 0xe4, 0x39, 0x81, 0x35, 0x57, 0x10, 0xd8, 0xaf, 0x15, 0x98, 0x0e, 0xf0, 0x9c, 0xdc, 0x28, 0x03, 0x7e, 0xa2,
+ 0x36, 0x8b, 0xbc, 0x29, 0x5a, 0x92, 0xef, 0x46, 0xc2, 0x6a, 0x04, 0x10, 0xc7, 0x4e, 0xb9, 0x1f, 0x53, 0x56,
+ 0x18, 0xfb, 0xba, 0xe4, 0x59, 0x5c, 0x94, 0xaa, 0x37, 0x33, 0x85, 0x20, 0xca, 0x6d, 0x72, 0x84, 0x75, 0xe2,
+ 0x68, 0xb4, 0xd2, 0x27, 0x38, 0x65, 0x7f, 0x6c, 0x22, 0xe3, 0x0a, 0xa3, 0x2d, 0x4c, 0x84, 0xa7, 0x88, 0xca,
+ 0x65, 0xcc, 0x79, 0xe8, 0x92, 0x4a, 0x7a, 0xd4, 0xfb, 0xa8, 0xeb, 0x33, 0xdf, 0x55, 0xcf, 0x6a, 0x92, 0x38,
+ 0xd0, 0xd6, 0xcc, 0x84, 0xe4, 0x3d, 0xdd, 0x4c, 0x67, 0x74, 0x48, 0x30, 0xca, 0x37, 0x48, 0x2a, 0x67, 0xf3,
+ 0xe0, 0x64, 0xf3, 0x7f, 0xb4, 0x80, 0xb8, 0xe1, 0xc3, 0xc8, 0xba, 0x0d, 0x6b, 0x58, 0x13, 0x17, 0x95, 0x15,
+ 0x85, 0x03, 0x14, 0x1c, 0x68, 0xe9, 0x69, 0xa9, 0xca, 0x32, 0xd4, 0x79, 0x9b, 0x3a, 0x46, 0x11, 0x31, 0xb2,
+ 0x7a, 0xa6, 0xaf, 0x6f, 0x65, 0xec, 0x71, 0xd3, 0x10, 0x9e, 0x4c, 0xb2, 0x14, 0x48, 0x7f, 0xcf, 0xd0, 0x37,
+ 0xa6, 0xa4, 0x00, 0x78, 0x2f, 0x04, 0xf7, 0xc8, 0x2d, 0x76, 0x9d, 0x44, 0x57, 0xa3, 0xdb, 0x52, 0xb9, 0x24,
+ 0x4a, 0x37, 0x3e, 0x82, 0xee, 0xf4, 0x62, 0x77, 0xb2, 0x55, 0x67, 0xfc, 0xab, 0xd8, 0x38, 0x53, 0x93, 0xf4,
+ 0xd1, 0xb4, 0x41, 0x54, 0x27, 0x3f, 0xd4, 0x98, 0xde, 0xd3, 0x7c, 0x2b, 0x95, 0xfc, 0xb8, 0x9b, 0x0a, 0x1b,
+ 0x21, 0x7d, 0x63, 0x77, 0x0a, 0x8a, 0xcc, 0xfa, 0xcd, 0x05, 0x18, 0x2f, 0x24, 0xd1, 0x53, 0xfd, 0xf6, 0x56,
+ 0x93, 0x6c, 0x03, 0x47, 0x7b, 0x4a, 0x7f, 0x0f, 0x18, 0x5c, 0xff, 0x45, 0x9e, 0x8a, 0x3d, 0xeb, 0x38, 0x54,
+ 0x25, 0xab, 0x20, 0xf6, 0xd4, 0x67, 0x0d, 0x16, 0xeb, 0x15, 0x33, 0x00, 0x1c, 0x35, 0x52, 0x61, 0xd9, 0x69,
+ 0xa5, 0x53, 0xcb, 0x78, 0x9e, 0xe3, 0x2f, 0xfa, 0xa5, 0xb5, 0x42, 0xed, 0xf0, 0xaf, 0x83, 0xe4, 0xbf, 0x5a,
+ 0x17, 0xc7, 0x63, 0xea, 0x3e, 0xa8, 0x30, 0x7a, 0x4c, 0x30, 0x51, 0xfa, 0xe7, 0x5e, 0x74, 0x10, 0x1b, 0xcc,
+ 0x13, 0x18, 0xa5, 0xaa, 0x1d, 0xca, 0xe5, 0x2d, 0x97, 0x57, 0xf2, 0xa7, 0xbd, 0x2a, 0xa7, 0xb3, 0x55, 0x9d,
+ 0xdc, 0xad, 0xeb, 0x92, 0x6c, 0x37, 0x73, 0x27, 0x0e, 0x42, 0xe0, 0x58, 0x50, 0x80, 0x93, 0x45, 0xd7, 0x52,
+ 0x6f, 0x62, 0x01, 0xb3, 0xa4, 0xe1, 0x7e, 0xba, 0xea, 0x66, 0x71, 0x95, 0xa0, 0x43, 0xfd, 0x66, 0x26, 0x0e,
+ 0x6f, 0x31, 0x14, 0xf3, 0x13, 0xb1, 0x97, 0x03, 0x0b, 0xdd, 0xd5, 0x4a, 0x03, 0x3a, 0x54, 0x35, 0xb9, 0xfb,
+ 0x66, 0x98, 0xae, 0x5b, 0xc4, 0xd1, 0x58, 0xc2, 0xc5, 0x5d, 0x2c, 0xd2, 0x1e, 0xd9, 0x93, 0x4e, 0xb2, 0x48,
+ 0x8d, 0xac, 0xd5, 0x83, 0x8d, 0x13, 0x62, 0x4d, 0x18, 0xd2, 0x31, 0xf4, 0x9f, 0x6a, 0x64, 0x31, 0xcb, 0xa5,
+ 0x78, 0xe4, 0x22, 0x72, 0xf8, 0x1f, 0x1c, 0x85, 0x44, 0x4c, 0x1e, 0x4d, 0x32, 0x60, 0xf3, 0x2f, 0xa1, 0x4f,
+ 0x8c, 0x7f, 0x95, 0x27, 0x60, 0xf9, 0x0e, 0x9e, 0x16, 0xfb, 0xc4, 0x10, 0xcc, 0x68, 0x6c, 0x49, 0x53, 0x77,
+ 0xff, 0x9f, 0x82, 0xe3, 0xad, 0xe7, 0x99, 0xfd, 0xe3, 0xb2, 0x81, 0x17, 0x63, 0xed, 0xe4, 0xa9, 0x94, 0x14,
+ 0x1b, 0xdb, 0x80, 0xa1, 0x4f, 0x5d, 0xe9, 0x65, 0x29, 0x22, 0xce, 0x0e, 0x17, 0x7f, 0xdd, 0x91, 0x57, 0xc7,
+ 0x99, 0xa0, 0xe6, 0x6e, 0x88, 0x70, 0xf2, 0x65, 0x65, 0xe5, 0xb6, 0xde, 0xe6, 0xea, 0x9f, 0xa6, 0x7b, 0x8e,
+ 0xdf, 0x40, 0x49, 0xc4, 0xce, 0xec, 0x89, 0x24, 0xa1, 0x52, 0x40, 0x14, 0x9b, 0x97, 0xc4, 0xc5, 0x76, 0x5a,
+ 0x55, 0xb3, 0x63, 0xd8, 0x59, 0x54, 0x8f, 0x1e, 0xcd, 0x74, 0x01, 0xb8, 0xc5, 0xff, 0xc3, 0xde, 0x90, 0x74,
+ 0xec, 0xb6, 0xc0, 0x46, 0x9a, 0xe0, 0xee, 0x2e, 0x1c, 0xce, 0x4f, 0xb1, 0xc3, 0x2c, 0x90, 0x12, 0xad, 0x90,
+ 0x86, 0xb4, 0xa8, 0x13, 0xaf, 0x6e, 0xca, 0x41, 0xa7, 0x39, 0x6f, 0x7a, 0x10, 0x1b, 0x81, 0x5a, 0x5c, 0x0c,
+ 0xaf, 0x3f, 0xd5, 0xd7, 0x22, 0x12, 0x8e, 0x72, 0x79, 0x29, 0xea, 0xee, 0xed, 0x5b, 0x82, 0x90, 0x62, 0x39,
+ 0x0e, 0x99, 0x61, 0xc0, 0x80, 0x82, 0xb1, 0xdb, 0xb3, 0xe8, 0x2a, 0x0b, 0xb6, 0x31, 0x06, 0xf9, 0x00, 0xbe,
+ 0x1c, 0xce, 0x91, 0x8f, 0x69, 0x08, 0x79, 0x95, 0x90, 0x9f, 0x1e, 0x4b, 0xbb, 0x03, 0x5f, 0x55, 0x8c, 0x6b,
+ 0x35, 0x67, 0x95, 0xe3, 0xf3, 0xad, 0x41, 0x27, 0xfa, 0x09, 0xc5, 0x6f, 0xe5, 0x9a, 0x58, 0x00, 0x98, 0x05,
+ 0xd2, 0xd6, 0x5e, 0x51, 0xf9, 0x28, 0x69, 0xa8, 0x7b, 0x89, 0x73, 0x7e, 0xd9, 0xf8, 0x42, 0xad, 0x4d, 0x68,
+ 0xf2, 0xf9, 0xde, 0xa4, 0x2f, 0x95, 0x93, 0x2d, 0x7d, 0x6c, 0xf9, 0x0d, 0xbf, 0x27, 0x89, 0x80, 0xf9, 0xf7,
+ 0xa0, 0xf2, 0x3f, 0x36, 0xa6, 0x71, 0xd3, 0x05, 0x6f, 0xad, 0xc5, 0xed, 0x9d, 0x30, 0x8e, 0xc2, 0xeb, 0xb1,
+ 0x02, 0x94, 0xe0, 0xae, 0xd3, 0xc8, 0x3e, 0x10, 0xff, 0x06, 0xcb, 0xa7, 0x5f, 0x90, 0xcf, 0x74, 0x6e, 0xcd,
+ 0x2b, 0xef, 0x16, 0x9a, 0xee, 0xbd, 0xee, 0xf6, 0x12, 0xef, 0x0c, 0x6e, 0x7e, 0xe8, 0x62, 0xb9, 0x0f, 0xed,
+ 0x14, 0x0c, 0xdf, 0xee, 0xf4, 0x19, 0xab, 0x60, 0xe8, 0x93, 0x30, 0x9f, 0x86, 0x49, 0x64, 0x34, 0xbd, 0x21,
+ 0x57, 0x09, 0x2f, 0xd6, 0x1a, 0xfc, 0x7d, 0x06, 0xf7, 0x05, 0xa3, 0x4f, 0xff, 0xbc, 0x2d, 0xb2, 0x77, 0x66,
+ 0xb8, 0x98, 0x14, 0xe4, 0xea, 0xa0, 0x42, 0x12, 0x23, 0xc6, 0x46, 0x80, 0x32, 0x0b, 0xf6, 0xc7, 0x53, 0xe1,
+ 0xd8, 0xe0, 0xdb, 0xc6, 0x4b, 0x14, 0x7e, 0x6a, 0xa4, 0x7e, 0x45, 0x08, 0x3b, 0x5a, 0x59, 0xa1, 0x9b, 0x71,
+ 0x72, 0xfd, 0xec, 0xff, 0x6d, 0x95, 0x69, 0xc9, 0xee, 0xbc, 0xae, 0x6d, 0x4f, 0xcd, 0x91, 0x67, 0x90, 0x69,
+ 0xed, 0x20, 0x53, 0x39, 0x2a, 0x6a, 0x2f, 0x1d, 0x4e, 0x76, 0x3e, 0x12, 0x61, 0x3c, 0xa8, 0x76, 0x6d, 0x8c,
+ 0x9a, 0x7f, 0xd3, 0x78, 0xaa, 0x3d, 0xdb, 0xde, 0x0a, 0xd0, 0xbf, 0xb0, 0x03, 0x0f, 0xc0, 0xa2, 0xbc, 0xa2,
+ 0x95, 0x88, 0xad, 0xe5, 0x1c, 0x03, 0x66, 0xca, 0xc8, 0x8f, 0x95, 0x75, 0xbd, 0x4d, 0xf0, 0xc9, 0xf4, 0x6a,
+ 0x63, 0x36, 0xc0, 0xa3, 0xa2, 0xfa, 0xc7, 0xb4, 0x2a, 0x1a, 0x64, 0x8d, 0x88, 0x70, 0xf6, 0x25, 0xbd, 0xae,
+ 0xaa, 0x87, 0x99, 0xde, 0xe4, 0x32, 0x00, 0x66, 0xd4, 0x19, 0xc2, 0x8f, 0xb7, 0x46, 0x4a, 0x26, 0x6e, 0x27,
+ 0x3a, 0x74, 0xe0, 0x35, 0xa2, 0x91, 0x16, 0x0e, 0xdc, 0xff, 0x73, 0x2e, 0x12, 0x3f, 0x54, 0x0e, 0x62, 0xea,
+ 0xa8, 0x10, 0xcf, 0xb4, 0x1b, 0x3c, 0x07, 0x4d, 0xd2, 0xff, 0x0e, 0x32, 0x44, 0x9e, 0xfb, 0x48, 0x97, 0x94,
+ 0x98, 0x70, 0xfa, 0x85, 0x5a, 0xed, 0x5a, 0x5c, 0xaf, 0x52, 0xc0, 0x72, 0x3a, 0x8e, 0x77, 0x93, 0x23, 0x59,
+ 0x9d, 0x40, 0x7f, 0xc2, 0xc7, 0x6a, 0x45, 0x98, 0x2b, 0xf9, 0xce, 0xc4, 0x6b, 0x48, 0xf3, 0x9f, 0x24, 0x45,
+ 0xcb, 0xc1, 0xb5, 0x79, 0xc9, 0xb4, 0x52, 0x11, 0x1f, 0x6b, 0xd9, 0xb7, 0x3f, 0xf3, 0x28, 0x71, 0x19, 0x15,
+ 0x51, 0xdc, 0x99, 0x60, 0x75, 0x1f, 0x22, 0x5c, 0x21, 0x85, 0x30, 0x36, 0xba, 0x06, 0x74, 0xdd, 0x96, 0x5e,
+ 0xa9, 0xc2, 0x45, 0x02, 0x9f, 0x8a, 0xd0, 0xb4, 0x54, 0x67, 0x5d, 0x6f, 0xf6, 0x38, 0x85, 0xf7, 0x71, 0xbc,
+ 0x92, 0x14, 0x97, 0xaa, 0x2a, 0x8c, 0x5e, 0xa2, 0xf9, 0x7d, 0x79, 0x15, 0x1c, 0x9b, 0x89, 0xe7, 0x1f, 0x16,
+ 0xaa, 0x1b, 0x9b, 0xfa, 0x76, 0xd8, 0x8f, 0x52, 0x55, 0x5e, 0x9a, 0xf2, 0xd5, 0x0a, 0xe0, 0x27, 0xce, 0x74,
+ 0x74, 0xac, 0x6b, 0x14, 0x65, 0x68, 0xdb, 0xa8, 0xce, 0x70, 0x2b, 0x10, 0x60, 0x0c, 0xc0, 0x79, 0x4e, 0x98,
+ 0x4b, 0xd8, 0x1f, 0xa6, 0xdd, 0xf3, 0xa9, 0x23, 0x08, 0xa9, 0xbd, 0xde, 0x67, 0x2d, 0x77, 0x05, 0xcc, 0x22,
+ 0xaa, 0x4e, 0x52, 0xb4, 0x95, 0x93, 0x6f, 0xe3, 0xc6, 0xce, 0xdd, 0xcc, 0x4d, 0x88, 0x89, 0x93, 0x9b, 0xb1,
+ 0xe8, 0x70, 0x46, 0xde, 0x27, 0x6d, 0xa9, 0x74, 0x30, 0xaa, 0xd9, 0xc1, 0x23, 0x5d, 0x8c, 0x7a, 0x0f, 0xaa,
+ 0x52, 0x05, 0x60, 0x51, 0xe4, 0xab, 0xdd, 0xb1, 0xdd, 0x05, 0x23, 0xc2, 0xd8, 0xc1, 0xbf, 0x1c, 0xe6, 0xc0,
+ 0xa4, 0x09, 0x83, 0x3d, 0x69, 0xe6, 0x43, 0x18, 0xe7, 0xef, 0xfb, 0x25, 0x49, 0xbe, 0xe1, 0xf3, 0x90, 0x70,
+ 0x00, 0xb3, 0xf0, 0x14, 0x43, 0xed, 0xc0, 0x51, 0x87, 0x5a, 0x42, 0x96, 0x5e, 0x19, 0x27, 0xf3, 0x2a, 0xf8,
+ 0x8a, 0x20, 0x92, 0x51, 0x55, 0x10, 0x19, 0x91, 0xd8, 0x0e, 0x47, 0x07, 0x03, 0x9b, 0x73, 0xde, 0x1c, 0xa0,
+ 0xfb, 0x1b, 0x3d, 0x59, 0xc4, 0x38, 0x41, 0xfb, 0x73, 0xeb, 0x6a, 0x63, 0x4d, 0xba, 0x9d, 0xc0, 0x78, 0xec,
+ 0xf7, 0xaf, 0x85, 0x55, 0xff, 0x41, 0x75, 0x29, 0xad, 0x82, 0xf3, 0xc1, 0x1c, 0xb2, 0xf6, 0x47, 0xb7, 0x69,
+ 0x68, 0xc6, 0x93, 0xdf, 0x73, 0xbb, 0xcd, 0xa1, 0xcd, 0x9d, 0x3c, 0xce, 0xcb, 0xdd, 0x67, 0xce, 0x8d, 0x94,
+ 0xc2, 0x91, 0xb2, 0xa5, 0xcc, 0x8b, 0x15, 0xfc, 0xbd, 0x99, 0x66, 0x9b, 0x0f, 0x4c, 0xd4, 0x3a, 0xbe, 0x1f,
+ 0x49, 0x71, 0xb2, 0x5e, 0xda, 0xd5, 0x1e, 0x02, 0xc8, 0x54, 0x36, 0xdd, 0x1a, 0xc4, 0x02, 0xed, 0x13, 0x6d,
+ 0xf8, 0x33, 0xaa, 0xd8, 0xc1, 0xb3, 0x2a, 0xad, 0x2d, 0xc2, 0x8c, 0x84, 0x14, 0x34, 0x81, 0xa3, 0x31, 0xbe,
+ 0x24, 0xe3, 0x60, 0x80, 0x31, 0xf5, 0x6d, 0x93, 0x7c, 0xbe, 0x01, 0x4b, 0x9c, 0xc6, 0x41, 0xe1, 0x35, 0xff,
+ 0x7f, 0x69, 0x54, 0x00, 0x15, 0xfb, 0x43, 0x29, 0x0e, 0x76, 0x5a, 0x98, 0x8e, 0xaf, 0xb2, 0x64, 0x48, 0x3d,
+ 0x9d, 0x19, 0x9e, 0x2b, 0x9c, 0xc7, 0x69, 0x91, 0x0d, 0xe7, 0x40, 0xf0, 0x29, 0x9d, 0x1b, 0x79, 0x30, 0x92,
+ 0x91, 0x18, 0x0f, 0x79, 0x89, 0xb6, 0x8a, 0x95, 0x78, 0xce, 0xf0, 0x2e, 0xb4, 0x21, 0xa4, 0x17, 0x5b, 0x40,
+ 0x51, 0x21, 0xbc, 0x4b, 0x93, 0x2a, 0x89, 0x3b, 0x87, 0x34, 0x57, 0x6d, 0x3c, 0xf0, 0x07, 0xcc, 0xd4, 0xd4,
+ 0x81, 0xbf, 0xe2, 0xf6, 0xe4, 0x3d, 0xd7, 0xe8, 0x09, 0x97, 0x69, 0x4d, 0xa8, 0x8e, 0xf6, 0x6f, 0xff, 0x6c,
+ 0x54, 0x00, 0xa5, 0x38, 0xfa, 0xef, 0x88, 0xc8, 0xc3, 0xaa, 0xcc, 0x14, 0xe3, 0x3e, 0xd5, 0x01, 0x70, 0xe2,
+ 0x02, 0xec, 0x9d, 0x94, 0xb1, 0x31, 0xde, 0x60, 0xeb, 0x1d, 0xaf, 0xba, 0x78, 0xd7, 0x02, 0x76, 0x51, 0xa6,
+ 0x69, 0x2a, 0xec, 0x83, 0x81, 0xeb, 0x9f, 0x0e, 0xd2, 0x5c, 0x0c, 0xb2, 0xb3, 0xff, 0x2a, 0x13, 0x84, 0xa6,
+ 0x97, 0xbf, 0x34, 0xb1, 0x0a, 0x05, 0xdb, 0xa8, 0x8f, 0xd2, 0x65, 0x9b, 0x91, 0xe9, 0x3a, 0x49, 0x47, 0x39,
+ 0xbc, 0xf4, 0x62, 0xca, 0xe0, 0xdb, 0xfc, 0x42, 0xeb, 0x6a, 0x51, 0x73, 0xed, 0xfb, 0xdf, 0x52, 0xc1, 0x9d,
+ 0x32, 0xc3, 0x14, 0x36, 0x7c, 0x0e, 0x03, 0x8c, 0xe9, 0x0b, 0xb6, 0x01, 0xde, 0x7d, 0x29, 0xe7, 0x3d, 0xaf,
+ 0x74, 0xc7, 0xa9, 0x8b, 0xb2, 0x55, 0xb2, 0x00, 0xe1, 0xd1, 0x8d, 0xc4, 0xce, 0xeb, 0x8a, 0xb2, 0x4d, 0xb6,
+ 0x51, 0xdd, 0xc4, 0x41, 0xf5, 0x1c, 0x0a, 0x13, 0x5a, 0x28, 0x01, 0xc2, 0x54, 0x98, 0xb9, 0x00, 0x6b, 0xa7,
+ 0x35, 0x22, 0xcc, 0xfb, 0xcd, 0xcc, 0xc4, 0x37, 0xa3, 0xad, 0x92, 0x39, 0x77, 0xff, 0x4f, 0xb4, 0x73, 0x92,
+ 0xe8, 0x0c, 0xbe, 0x03, 0x28, 0x1d, 0x9f, 0x79, 0x41, 0xba, 0x43, 0xea, 0xa7, 0xb7, 0x8f, 0xe3, 0xef, 0xd6,
+ 0xb9, 0x5e, 0xa3, 0xef, 0x07, 0x24, 0x71, 0xe8, 0xf8, 0x0e, 0x91, 0x21, 0x29, 0xad, 0xcc, 0x2f, 0x10, 0xc7,
+ 0x90, 0xa1, 0xa5, 0x79, 0xc9, 0xa2, 0x49, 0x0a, 0x05, 0xc4, 0xfc, 0x30, 0xd0, 0x55, 0x00, 0x12, 0x00, 0x4a,
+ 0x67, 0xca, 0x6e, 0x53, 0x0e, 0x22, 0x3f, 0xe2, 0xa7, 0x7f, 0xb9, 0xd7, 0xe0, 0x84, 0xae, 0xa2, 0x40, 0x86,
+ 0xaa, 0xc9, 0x8f, 0xf9, 0xa5, 0x4d, 0x31, 0xfc, 0xf7, 0x31, 0x7c, 0x95, 0x04, 0x6f, 0x8b, 0xf3, 0x49, 0x1c,
+ 0x22, 0x2b, 0xdc, 0x46, 0xf4, 0x2e, 0xa3, 0x33, 0x0e, 0x11, 0x3f, 0xd4, 0x4f, 0x8a, 0x43, 0x91, 0x15, 0xce,
+ 0x6f, 0x64, 0x28, 0x2f, 0x70, 0x2a, 0x3a, 0xdb, 0x1e, 0xba, 0x30, 0x3d, 0x6f, 0xfc, 0x9a, 0xa5, 0x49, 0xa5,
+ 0x97, 0x10, 0xd6, 0xa0, 0x21, 0xe7, 0x7a, 0xec, 0x4e, 0x53, 0xc0, 0xab, 0xcd, 0xe8, 0xf1, 0x76, 0xf9, 0x60,
+ 0x83, 0xd9, 0xfb, 0x78, 0x2b, 0xb3, 0x23, 0x38, 0xe3, 0x7f, 0xf4, 0xf8, 0x06, 0x7c, 0xe2, 0xac, 0x24, 0x30,
+ 0x91, 0xef, 0x01, 0xb4, 0x05, 0xae, 0xd5, 0x67, 0x34, 0x97, 0x92, 0x63, 0xcf, 0xba, 0x87, 0x3e, 0xdf, 0xb0,
+ 0xa3, 0xe4, 0x4f, 0x97, 0xed, 0x14, 0xe6, 0x76, 0xfa, 0x7d, 0x63, 0x86, 0x93, 0xfc, 0xe5, 0xe6, 0x21, 0xea,
+ 0xff, 0xd2, 0xb4, 0x2e, 0xf8, 0xde, 0x03, 0xbf, 0xc9, 0x10, 0xe3, 0x55, 0x37, 0x40, 0x33, 0xc9, 0xd4, 0x0a,
+ 0xcb, 0xf8, 0x62, 0xf0, 0x1f, 0xb8, 0x62, 0xc0, 0x2f, 0x56, 0x0c, 0x06, 0x4d, 0xa8, 0xd6, 0x85, 0x70, 0x2f,
+ 0x55, 0xcb, 0x7c, 0x9f, 0x68, 0xfd, 0xf5, 0xfc, 0xea, 0x9c, 0xb9, 0x3b, 0x0a, 0xcc, 0xa7, 0x08, 0x9a, 0xf6,
+ 0xd2, 0xd8, 0xe9, 0x38, 0x88, 0xda, 0x97, 0x85, 0x22, 0xd3, 0x37, 0x8a, 0x5c, 0x5d, 0xe0, 0x78, 0x0d, 0xe9,
+ 0x5d, 0x0f, 0x20, 0x98, 0xea, 0x4d, 0x29, 0xc3, 0x0d, 0x79, 0xfc, 0x10, 0x27, 0x3f, 0xc5, 0x26, 0xa4, 0x99,
+ 0x84, 0xd4, 0xc1, 0xf9, 0x03, 0x22, 0xf5, 0x74, 0x1f, 0x8e, 0xfd, 0xc8, 0xc3, 0x7b, 0x32, 0xcb, 0xb1, 0x26,
+ 0xa1, 0x84, 0x08, 0x2c, 0x22, 0x17, 0x4e, 0xa2, 0x08, 0xe3, 0x2a, 0xcc, 0xdd, 0xe2, 0x89, 0xc4, 0xe7, 0xab,
+ 0xc4, 0x67, 0x72, 0xee, 0xf1, 0x96, 0xe0, 0xa6, 0xfa, 0xe9, 0x62, 0xec, 0x2b, 0x5c, 0x1b, 0xbe, 0x5a, 0x90,
+ 0x71, 0x10, 0x2d, 0xd3, 0x4e, 0x50, 0x03, 0x7e, 0xf3, 0xd1, 0xac, 0x7b, 0x8e, 0xcc, 0x1d, 0x0b, 0x53, 0xbe,
+ 0x47, 0xdb, 0x85, 0x44, 0x23, 0x9c, 0xe0, 0x63, 0xfd, 0xc4, 0x20, 0xec, 0xdc, 0x07, 0xf4, 0x41, 0x22, 0x15,
+ 0xb0, 0x86, 0x50, 0x07, 0x17, 0x7c, 0x25, 0x05, 0x09, 0x7c, 0x7c, 0xcb, 0x13, 0x60, 0x96, 0x5c, 0xc9, 0x6b,
+ 0xaa, 0xce, 0xe5, 0x05, 0x70, 0xe6, 0xec, 0xf7, 0x89, 0x01, 0xe4, 0xb1, 0xf7, 0xfc, 0x88, 0x65, 0x0e, 0xdd,
+ 0x88, 0x1c, 0xb9, 0x05, 0xbd, 0x4e, 0x47, 0xf7, 0x88, 0x7f, 0xa6, 0xe0, 0x7c, 0x01, 0x30, 0x0d, 0xfe, 0x1f,
+ 0x5f, 0x8d, 0x7d, 0xa2, 0x87, 0x60, 0x2a, 0x4c, 0x00, 0xf0, 0x3e, 0x4e, 0x41, 0x02, 0x20, 0x09, 0x9a, 0x55,
+ 0x6f, 0x5e, 0x87, 0xf1, 0xb9, 0x96, 0x26, 0xa6, 0x73, 0x6b, 0x62, 0x27, 0x5a, 0x90, 0x6d, 0xdd, 0xd4, 0x37,
+ 0xe9, 0x40, 0x78, 0xa0, 0x38, 0x71, 0xea, 0x95, 0x01, 0x2c, 0x80, 0x10, 0x56, 0x91, 0x48, 0x6c, 0xee, 0xda,
+ 0xae, 0x66, 0xee, 0x09, 0x1a, 0x61, 0xd2, 0xbd, 0x37, 0xb5, 0xd7, 0x18, 0x1b, 0xa5
};
// context = simple_context_vn
@@ -3487,330 +3720,179 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_MANDARIN__)
-// wake-word = nǐ hǎo diànnǎo
+// wake-word = 你好电脑
static const uint8_t KEYWORD_ARRAY[] = {
- 0x3c, 0xaa, 0x77, 0x04, 0x9c, 0x25, 0x7c, 0xdb, 0xc9, 0x51, 0x40, 0x69, 0x89, 0x3f, 0x46, 0x33, 0xe6, 0xb5,
- 0x04, 0xa3, 0x51, 0x68, 0x3b, 0x31, 0xce, 0x7f, 0x57, 0x96, 0xbc, 0x68, 0x9c, 0x85, 0x18, 0x19, 0x67, 0x47,
- 0xa9, 0x2b, 0x05, 0xbb, 0xcd, 0x1f, 0xd6, 0x6f, 0xb3, 0x38, 0x42, 0xdb, 0x36, 0x39, 0xf5, 0x64, 0xd1, 0x54,
- 0xd4, 0x5b, 0xcd, 0x2c, 0xf2, 0x94, 0x91, 0xf0, 0x3f, 0x7a, 0x66, 0xc1, 0x7e, 0xf0, 0x48, 0x84, 0x29, 0xfa,
- 0x49, 0x97, 0x80, 0xd0, 0xf1, 0x71, 0x7e, 0x83, 0xe3, 0xa4, 0x72, 0x07, 0x95, 0xdb, 0x9c, 0x42, 0x7c, 0x3d,
- 0x78, 0x79, 0x0f, 0xec, 0x90, 0xa3, 0x4d, 0xb2, 0x9c, 0xf5, 0xf9, 0xa9, 0x61, 0xae, 0x76, 0xdd, 0x9b, 0x05,
- 0xf6, 0x4d, 0x4d, 0x58, 0x32, 0x09, 0x52, 0x27, 0x73, 0x12, 0xd3, 0xda, 0x6a, 0x17, 0x75, 0xf0, 0xaf, 0x46,
- 0xdd, 0x4b, 0xd5, 0x1e, 0xaf, 0x5d, 0x95, 0xbd, 0xad, 0xcd, 0x7c, 0x1b, 0x32, 0xe1, 0xbe, 0x21, 0x2e, 0x28,
- 0xd0, 0x48, 0x83, 0x90, 0x3a, 0x41, 0x09, 0x1e, 0x07, 0x2e, 0xb5, 0xd8, 0xb7, 0x02, 0x21, 0x7c, 0xa9, 0xc7,
- 0xb6, 0xf3, 0x4d, 0x68, 0x2a, 0xd0, 0x31, 0x17, 0xcc, 0x86, 0x78, 0x07, 0xe2, 0x02, 0x3d, 0xf7, 0xb7, 0x42,
- 0xc9, 0x62, 0xe7, 0x59, 0x8e, 0x6d, 0xce, 0x25, 0x2e, 0x61, 0x55, 0xa2, 0xb4, 0x30, 0xb1, 0x98, 0xcc, 0x67,
- 0x4b, 0x02, 0xbe, 0x80, 0x7e, 0xbb, 0x79, 0x55, 0x7e, 0xec, 0x9d, 0x8d, 0xc5, 0xb5, 0x68, 0x99, 0xcf, 0xa8,
- 0x0e, 0x75, 0x3c, 0x88, 0xcf, 0x87, 0xa9, 0xb9, 0x24, 0x4a, 0x47, 0x0b, 0x7c, 0x64, 0x0c, 0xec, 0x2a, 0xde,
- 0x46, 0x7b, 0x43, 0xd7, 0x72, 0x0a, 0x6e, 0x1a, 0xd3, 0xf3, 0xc0, 0xba, 0x40, 0x3b, 0xb8, 0xc6, 0x3f, 0x88,
- 0xfb, 0x1f, 0xa2, 0x52, 0xfd, 0x3c, 0xe5, 0xe0, 0x13, 0x6a, 0x6c, 0x10, 0x96, 0x79, 0xd3, 0x35, 0x35, 0xc9,
- 0x3c, 0xc2, 0x39, 0x51, 0xae, 0x04, 0x83, 0x4d, 0xef, 0xa9, 0xb1, 0x5f, 0xd8, 0x0c, 0xe8, 0x7c, 0xfb, 0x36,
- 0x21, 0x02, 0x27, 0xd4, 0xb3, 0xd7, 0x2b, 0x00, 0x03, 0x18, 0x72, 0x0f, 0x64, 0xd4, 0x9a, 0x67, 0x4a, 0xc3,
- 0x40, 0x53, 0x1a, 0x1f, 0x3e, 0xe4, 0x28, 0xe8, 0x6b, 0x25, 0x55, 0xcc, 0x32, 0x13, 0x33, 0x04, 0x4e, 0x7e,
- 0x2d, 0x4b, 0x1b, 0xfc, 0xb0, 0xef, 0x65, 0x7a, 0xef, 0x08, 0xce, 0xa0, 0xe6, 0xdc, 0x49, 0x1c, 0xed, 0xcd,
- 0x5a, 0x21, 0xee, 0x00, 0x8a, 0xd1, 0x48, 0xc5, 0x3b, 0xe2, 0x48, 0x5b, 0x3d, 0x07, 0xe9, 0x37, 0x53, 0xe2,
- 0x67, 0x8d, 0x9e, 0x1d, 0x05, 0xc6, 0x26, 0xed, 0x68, 0xcd, 0xde, 0x6f, 0x28, 0xf1, 0xff, 0xd9, 0xb5, 0x11,
- 0xe6, 0x56, 0xb3, 0xae, 0xc7, 0x89, 0xd7, 0xdf, 0xad, 0x4a, 0xbd, 0xf5, 0x3a, 0x0d, 0x6a, 0x0d, 0x48, 0xaf,
- 0x15, 0xf5, 0x6b, 0x13, 0x57, 0xf2, 0x28, 0x8c, 0xd9, 0xd6, 0x63, 0x86, 0x86, 0xf2, 0xb6, 0xc6, 0xe1, 0x33,
- 0x8e, 0x2e, 0x0d, 0x2c, 0x77, 0xc3, 0x8e, 0x4e, 0xa8, 0xbb, 0xaa, 0xbb, 0x06, 0xe8, 0x35, 0xac, 0x91, 0x66,
- 0x95, 0xc8, 0xa1, 0x3e, 0x31, 0x4b, 0x8f, 0x88, 0x51, 0xd7, 0x0f, 0xf3, 0xac, 0x6f, 0x43, 0xd4, 0xf5, 0x30,
- 0x5a, 0x4c, 0xa0, 0x00, 0x0d, 0x3a, 0x22, 0x2c, 0x55, 0x44, 0x7c, 0x0a, 0xaa, 0xba, 0x70, 0xed, 0x19, 0xe1,
- 0x0b, 0xa9, 0xbd, 0x61, 0x06, 0x7e, 0x92, 0x0d, 0xa3, 0xb4, 0xbd, 0x78, 0x22, 0x55, 0x30, 0xe7, 0x72, 0x22,
- 0x80, 0x02, 0xab, 0x2e, 0xef, 0xe6, 0x7c, 0x0a, 0x3c, 0xed, 0xa6, 0x79, 0x03, 0xaf, 0x70, 0x2b, 0x9c, 0x41,
- 0xfe, 0x2f, 0x2f, 0xf4, 0xfa, 0xb2, 0xad, 0xd3, 0xe7, 0xe3, 0xec, 0x01, 0xd1, 0x3e, 0x76, 0x5c, 0x73, 0x90,
- 0x56, 0x3f, 0x82, 0xfc, 0x5f, 0x46, 0x23, 0xef, 0x93, 0x31, 0xd3, 0x26, 0x15, 0x05, 0x25, 0x0d, 0x01, 0xc8,
- 0x17, 0x5a, 0xac, 0x0c, 0x94, 0xd3, 0xf9, 0x6a, 0x5e, 0x5a, 0xd2, 0x6a, 0xf2, 0x99, 0xd1, 0xce, 0xfb, 0xf2,
- 0x9a, 0x9c, 0xb9, 0xef, 0x4a, 0xfa, 0xda, 0x1a, 0x9b, 0xb5, 0xec, 0xf6, 0x42, 0x7b, 0x60, 0x1f, 0x2d, 0xba,
- 0x84, 0x6e, 0x34, 0xa3, 0xd6, 0x68, 0x7d, 0xe4, 0x83, 0xe6, 0xb1, 0xe4, 0xbd, 0xe7, 0x21, 0x4e, 0xc0, 0x71,
- 0xd8, 0x71, 0x95, 0x19, 0xd4, 0x09, 0xf2, 0x3d, 0x90, 0x73, 0xcd, 0x2b, 0xef, 0x5a, 0x09, 0xf2, 0x47, 0x6a,
- 0xc4, 0x44, 0x04, 0xbf, 0xab, 0x68, 0x63, 0xfe, 0x5f, 0x7a, 0x4c, 0xed, 0x86, 0x6a, 0xe1, 0x76, 0xf6, 0xc9,
- 0xb2, 0x51, 0x13, 0x7a, 0xb8, 0x17, 0x21, 0xbb, 0x78, 0x7b, 0xca, 0x86, 0x8f, 0xad, 0xa0, 0x95, 0x1c, 0x45,
- 0x5f, 0x67, 0x67, 0x4f, 0x25, 0x84, 0xe6, 0xe6, 0x8d, 0x5f, 0xfb, 0xeb, 0x0a, 0xc5, 0x18, 0xeb, 0x55, 0x87,
- 0xad, 0x4a, 0x02, 0xc2, 0xe0, 0x0e, 0xc6, 0x9a, 0x57, 0xe8, 0x4f, 0xb4, 0x1b, 0xbf, 0xa2, 0xbb, 0x1d, 0x65,
- 0xb8, 0x80, 0xa6, 0xea, 0xe5, 0x08, 0xde, 0xbb, 0x3f, 0xfe, 0xe4, 0x1d, 0x1b, 0x55, 0xc6, 0x6c, 0x0f, 0x88,
- 0x2f, 0xe4, 0x00, 0xae, 0xd8, 0xa4, 0x9c, 0x4f, 0x46, 0x60, 0xd6, 0x33, 0xab, 0xcd, 0xf7, 0x2f, 0x25, 0x2f,
- 0x2d, 0x30, 0xcc, 0xd5, 0x77, 0x96, 0x80, 0x2b, 0x5e, 0xb4, 0x78, 0xe6, 0x91, 0x23, 0xef, 0x4b, 0xca, 0x24,
- 0x9c, 0x22, 0x7c, 0xa2, 0x9b, 0x1f, 0xb6, 0x00, 0x94, 0x3d, 0xb0, 0xae, 0xdc, 0x0b, 0x56, 0x2f, 0x01, 0xc8,
- 0xe6, 0xb4, 0xab, 0x2a, 0x91, 0x1c, 0xd0, 0xa7, 0x82, 0x25, 0xf3, 0xd7, 0xed, 0x30, 0xff, 0x1a, 0x5c, 0xe0,
- 0x4f, 0x66, 0xa9, 0x6f, 0x1b, 0x63, 0x31, 0x22, 0x22, 0x81, 0x45, 0x17, 0x15, 0x6d, 0xe8, 0x16, 0x98, 0x31,
- 0xd1, 0x5b, 0xc4, 0x8a, 0x93, 0x92, 0x36, 0xd5, 0x3c, 0x7c, 0xf7, 0x12, 0xb3, 0xdf, 0x4b, 0x73, 0xe3, 0xf4,
- 0x40, 0x18, 0xbc, 0x5e, 0x0a, 0x3c, 0xe9, 0x1b, 0xd2, 0xa3, 0x5e, 0xad, 0x77, 0xe3, 0x02, 0xc3, 0x80, 0x55,
- 0x8e, 0xc9, 0x99, 0xb7, 0xf3, 0x22, 0xb7, 0xe9, 0x47, 0x30, 0xb9, 0x2e, 0x77, 0x3e, 0xd0, 0xdb, 0x22, 0x72,
- 0xd9, 0xbf, 0x33, 0x7d, 0x31, 0xcc, 0x8f, 0xe4, 0x9f, 0x46, 0x59, 0x38, 0xfd, 0x2c, 0xe0, 0x3c, 0xa5, 0x0f,
- 0x4a, 0xd6, 0xfd, 0xa2, 0xff, 0x55, 0x53, 0x11, 0x4a, 0x83, 0x8b, 0x56, 0x28, 0x59, 0xaf, 0xf7, 0x17, 0x89,
- 0xf7, 0x9f, 0x4e, 0x1e, 0x07, 0x8c, 0xd2, 0x03, 0x80, 0xb2, 0xca, 0x76, 0x78, 0x0c, 0x9e, 0x0c, 0xfd, 0xdd,
- 0xc9, 0xdd, 0xe6, 0x10, 0x71, 0xe1, 0x27, 0xea, 0xf6, 0x98, 0xed, 0xa4, 0x5c, 0x6c, 0xac, 0xd7, 0x38, 0xe5,
- 0x57, 0xb1, 0xbf, 0xb7, 0x8e, 0x18, 0x8d, 0x71, 0xb5, 0x61, 0xd6, 0x67, 0xd2, 0x75, 0xa4, 0x32, 0x5e, 0xf4,
- 0x45, 0x1d, 0x52, 0x75, 0x9f, 0x09, 0x7f, 0xb1, 0x33, 0x8d, 0xd4, 0xcb, 0xb8, 0xf2, 0xae, 0x81, 0x64, 0x0a,
- 0x28, 0xd3, 0x2e, 0x30, 0xc6, 0xc8, 0xc0, 0x9c, 0xf3, 0x68, 0xd4, 0x07, 0x8b, 0x35, 0x3b, 0x3d, 0x6a, 0x98,
- 0x6b, 0x22, 0x02, 0x97, 0x48, 0x1d, 0x04, 0x03, 0x1e, 0x3e, 0x99, 0x13, 0xa5, 0x16, 0xb8, 0x8d, 0x79, 0x4f,
- 0x97, 0xe6, 0xeb, 0x84, 0xed, 0x10, 0x67, 0xd2, 0xca, 0x2d, 0x3a, 0xd3, 0x06, 0xe8, 0x27, 0xaf, 0xa6, 0x71,
- 0x80, 0x5d, 0x64, 0xc3, 0xd5, 0xfb, 0x23, 0x42, 0xee, 0x36, 0x49, 0xf0, 0xee, 0x08, 0x50, 0x35, 0x5c, 0x00,
- 0xc9, 0x83, 0x1c, 0x64, 0xcf, 0x7f, 0xfa, 0x73, 0xfd, 0x0e, 0xbd, 0x03, 0x73, 0x0f, 0x32, 0x31, 0xc6, 0xb9,
- 0xfe, 0xd4, 0x02, 0x6b, 0xa7, 0x22, 0x13, 0xde, 0xbe, 0x7e, 0x94, 0x47, 0x63, 0x58, 0x5f, 0x9b, 0x60, 0xda,
- 0x81, 0x3f, 0x79, 0x8d, 0xf3, 0x9b, 0x44, 0xde, 0x3b, 0xd3, 0xd6, 0xfd, 0x0a, 0x3b, 0x06, 0x93, 0x5f, 0x7f,
- 0xa4, 0x74, 0x8d, 0xa6, 0xcc, 0x03, 0x21, 0xf5, 0x39, 0x3b, 0xcf, 0x6c, 0x3c, 0x01, 0x25, 0xcc, 0x04, 0xf4,
- 0xfd, 0xd7, 0x63, 0x20, 0x32, 0x7c, 0x67, 0xc0, 0x48, 0x5f, 0x6c, 0x76, 0x24, 0xd7, 0xe2, 0x06, 0xcd, 0x9a,
- 0x57, 0xe3, 0x0c, 0x7e, 0x1d, 0x0b, 0x38, 0x48, 0x17, 0xf7, 0x98, 0xc2, 0xc6, 0x06, 0xbb, 0x2c, 0x05, 0x35,
- 0x53, 0xb1, 0x90, 0xa2, 0xe9, 0xaf, 0x5d, 0xeb, 0xf1, 0x96, 0xb9, 0xc1, 0x7a, 0x8b, 0x39, 0xd4, 0xa9, 0x70,
- 0x03, 0x33, 0x42, 0x07, 0x44, 0x00, 0xe3, 0xe5, 0xbf, 0xa9, 0xfc, 0x99, 0xe2, 0x9f, 0xdb, 0x90, 0x09, 0xc4,
- 0x8e, 0x46, 0x02, 0xe5, 0x64, 0x3a, 0xef, 0x89, 0x55, 0x78, 0x56, 0x56, 0x0e, 0x7f, 0x2b, 0x38, 0x4f, 0x08,
- 0x5b, 0x31, 0x42, 0x1a, 0xc9, 0xd8, 0x96, 0xea, 0x02, 0xfe, 0x23, 0x8f, 0x03, 0x33, 0x6c, 0x3f, 0x81, 0x54,
- 0x52, 0xbb, 0x8a, 0xee, 0xc6, 0xde, 0xe4, 0x91, 0x15, 0x38, 0x02, 0x76, 0x4f, 0x0f, 0x93, 0x05, 0x2f, 0x26,
- 0xc0, 0x47, 0x6b, 0x33, 0xbf, 0xd2, 0xc6, 0xea, 0x6e, 0xff, 0x76, 0x7d, 0x1d, 0xf4, 0x52, 0x20, 0x5c, 0x99,
- 0x05, 0x35, 0x81, 0x9b, 0x0a, 0xcb, 0x89, 0x89, 0x8c, 0xa9, 0x39, 0x9a, 0xbb, 0x4b, 0xf9, 0x36, 0xe4, 0x0d,
- 0x2c, 0x9e, 0x51, 0x2a, 0x5e, 0x73, 0xef, 0xbc, 0x04, 0x93, 0x30, 0x0a, 0x6a, 0x04, 0x33, 0x3e, 0x12, 0x91,
- 0xa2, 0xa9, 0x29, 0x3c, 0x04, 0x84, 0xa7, 0xd1, 0x9f, 0x9d, 0x7b, 0x90, 0x76, 0x9f, 0x6e, 0x72, 0xdb, 0x60,
- 0x46, 0x5f, 0x1e, 0xd7, 0xa4, 0xb8, 0x3c, 0x35, 0x21, 0x3b, 0x37, 0x6f, 0xf5, 0x1d, 0xa0, 0x63, 0x0d, 0xac,
- 0xa3, 0xad, 0xa6, 0x83, 0x72, 0x91, 0xb5, 0xd2, 0xf8, 0x50, 0x7b, 0x26, 0xdf, 0xb7, 0xb4, 0x30, 0x9f, 0x4d,
- 0x44, 0x5e, 0xe6, 0x59, 0x9b, 0x04, 0xf3, 0xc7, 0x11, 0x9e, 0xba, 0x70, 0x21, 0x2d, 0x05, 0x00, 0x3f, 0x1f,
- 0x5b, 0xc9, 0xf1, 0xb7, 0x8c, 0xa7, 0xb0, 0xd2, 0x7b, 0x44, 0xe2, 0xd3, 0xb2, 0x06, 0x72, 0x0f, 0x8e, 0xef,
- 0xa2, 0x16, 0x15, 0x68, 0x08, 0x1a, 0x70, 0x36, 0x21, 0xd5, 0x7f, 0xca, 0x67, 0x88, 0xe2, 0x3d, 0x4c, 0x57,
- 0x96, 0x3c, 0xad, 0x7d, 0x19, 0x0a, 0xbc, 0x3b, 0x8a, 0x30, 0x56, 0xee, 0xd8, 0xa5, 0xb6, 0x2c, 0x55, 0x63,
- 0xad, 0x69, 0x88, 0x1a, 0x83, 0x42, 0x8c, 0xfa, 0x08, 0x7f, 0xdb, 0x9e, 0x87, 0x87, 0x64, 0x3d, 0x69, 0x36,
- 0xd0, 0x25, 0x99, 0x3b, 0xcf, 0xd6, 0xd9, 0x12, 0x57, 0xd7, 0x3a, 0x0c, 0xf3, 0xad, 0xc1, 0x43, 0x35, 0x45,
- 0xae, 0x2e, 0x45, 0xd4, 0x0f, 0x70, 0xd2, 0xf1, 0xe6, 0x51, 0xb5, 0x4c, 0x83, 0x25, 0xb4, 0x19, 0xb3, 0x2e,
- 0xea, 0xb5, 0xf9, 0xa6, 0xea, 0x5f, 0xa7, 0x6e, 0x9d, 0x13, 0x6c, 0x95, 0x03, 0xce, 0xb7, 0x67, 0x7e, 0xdc,
- 0x25, 0xec, 0x50, 0xb7, 0x63, 0x3d, 0x72, 0xd2, 0x45, 0x8a, 0x54, 0xa6, 0x5c, 0x0e, 0x49, 0xd8, 0x20, 0x99,
- 0xd7, 0x0e, 0x53, 0x0f, 0x4d, 0xfa, 0xd2, 0xe1, 0x2f, 0x89, 0xf5, 0xaa, 0xbe, 0x57, 0xee, 0x80, 0x04, 0xc8,
- 0x65, 0x38, 0x34, 0x48, 0x99, 0xd3, 0xc3, 0x0b, 0x75, 0x39, 0x0a, 0x47, 0x42, 0xdd, 0x24, 0xdf, 0x3e, 0xf7,
- 0xbf, 0x0d, 0x02, 0x58, 0x67, 0x6f, 0x30, 0x9b, 0xf5, 0x3d, 0xb1, 0xe0, 0xc2, 0x97, 0x31, 0xff, 0x20, 0xab,
- 0x6a, 0x36, 0x97, 0x4f, 0xd4, 0x5d, 0x71, 0xfe, 0x5c, 0x81, 0x61, 0x17, 0xe7, 0x34, 0x5c, 0x10, 0x25, 0xae,
- 0x77, 0x98, 0x9b, 0x85, 0xa9, 0xbe, 0x3d, 0x35, 0x6e, 0x26, 0x44, 0x5e, 0xa1, 0x6f, 0xb0, 0x05, 0x30, 0x65,
- 0x4b, 0xef, 0x4e, 0x8e, 0xf7, 0x0a, 0xf2, 0x6b, 0xe7, 0xf0, 0xf7, 0xe9, 0x72, 0xfb, 0x2c, 0x3f, 0xa3, 0x73,
- 0x88, 0xe9, 0x5f, 0x7c, 0xd3, 0x75, 0xa5, 0xb3, 0x49, 0x98, 0xbe, 0xc6, 0x29, 0xe5, 0xda, 0xf2, 0x68, 0x8f,
- 0x54, 0x85, 0x46, 0xe1, 0x56, 0x55, 0xcf, 0xc4, 0xfc, 0x26, 0x4a, 0x5a, 0xc7, 0x5a, 0x4d, 0x6c, 0x40, 0xee,
- 0x46, 0x70, 0x7a, 0x05, 0x5a, 0x37, 0xe2, 0xa0, 0xf3, 0x6f, 0xb9, 0x4d, 0x9c, 0x34, 0x2a, 0x86, 0x6d, 0x30,
- 0xd7, 0x1e, 0x85, 0x21, 0xdc, 0x31, 0x97, 0x32, 0xce, 0x89, 0x44, 0xbf, 0x9f, 0xd9, 0x96, 0x68, 0x66, 0x78,
- 0xdb, 0xda, 0xb4, 0x45, 0x89, 0x80, 0xe8, 0x6f, 0x22, 0x98, 0xe9, 0x8f, 0x9f, 0xe9, 0x2e, 0x56, 0x98, 0x84,
- 0xa1, 0xd8, 0x43, 0x6a, 0x32, 0x39, 0x08, 0x9f, 0x98, 0xf1, 0x8e, 0x97, 0xb4, 0x41, 0xec, 0x41, 0x3a, 0x43,
- 0x63, 0xb1, 0x43, 0x48, 0x34, 0xad, 0x12, 0xbc, 0x89, 0x24, 0xc4, 0xc7, 0xda, 0x25, 0xcf, 0x01, 0x46, 0xf0,
- 0x1a, 0xd2, 0xf5, 0x1e, 0xfd, 0x16, 0xa7, 0xbc, 0xb0, 0x9b, 0xbb, 0x51, 0x70, 0x8e, 0xe6, 0x7e, 0xef, 0x9a,
- 0x2c, 0x71, 0xc3, 0x9e, 0xe0, 0x6d, 0x26, 0x98, 0x9a, 0xe5, 0xc6, 0x06, 0x4c, 0x4f, 0x80, 0x50, 0x74, 0x5b,
- 0x62, 0x3e, 0xe8, 0x93, 0xef, 0x6c, 0xd0, 0x3a, 0x17, 0x29, 0x42, 0xbc, 0x05, 0xd1, 0xec, 0x98, 0x32, 0x79,
- 0x86, 0x56, 0x04, 0xbd, 0xed, 0xa5, 0x2b, 0xf0, 0x93, 0x53, 0xf1, 0x17, 0x63, 0xdc, 0x7d, 0xa7, 0x11, 0x24,
- 0x38, 0xcb, 0xaa, 0x48, 0x94, 0x9e, 0x75, 0x4c, 0x0f, 0x37, 0x97, 0x4f, 0x58, 0x52, 0x9d, 0xd5, 0x3e, 0x21,
- 0x64, 0xd2, 0x60, 0x91, 0x30, 0x9f, 0xd2, 0xef, 0x27, 0x52, 0x87, 0xb0, 0x7c, 0x92, 0xe5, 0x6a, 0xe1, 0x1f,
- 0x8a, 0x4a, 0x67, 0x0b, 0x3a, 0x31, 0xd5, 0xe7, 0xde, 0x20, 0x4c, 0x75, 0x94, 0xa8, 0x63, 0xb5, 0xca, 0xcf,
- 0x07, 0x97, 0x3d, 0x65, 0x18, 0xca, 0xbd, 0x42, 0xc8, 0xb9, 0x52, 0xd3, 0xa5, 0xe0, 0x43, 0xeb, 0x45, 0x21,
- 0xeb, 0xe6, 0xc1, 0x56, 0xc1, 0xc7, 0x75, 0x8d, 0xbf, 0xd1, 0x77, 0x0d, 0x3c, 0x2f, 0x6b, 0x90, 0x6a, 0x3d,
- 0x96, 0x36, 0x2c, 0xa4, 0xcf, 0xa7, 0xba, 0xe6, 0x20, 0xed, 0x5a, 0x52, 0x14, 0xf9, 0xeb, 0x71, 0x44, 0x2b,
- 0x38, 0xa5, 0x06, 0xc8, 0x9e, 0xb6, 0x37, 0xf5, 0x17, 0x78, 0xdc, 0xf0, 0xac, 0x2a, 0xf0, 0x18, 0x95, 0xc0,
- 0x63, 0xcc, 0xe4, 0xea, 0xc8, 0x6f, 0x1c, 0xe4, 0x5c, 0x8a, 0xcc, 0x4c, 0x95, 0xc2, 0xbc, 0x41, 0x37, 0x42,
- 0x4c, 0x87, 0xb9, 0xc6, 0x73, 0x4b, 0xd5, 0x81, 0xca, 0xed, 0x84, 0x5d, 0x59, 0xe8, 0x52, 0x43, 0xb4, 0x9c,
- 0xd2, 0xbd, 0x7e, 0x9e, 0x95, 0xaa, 0xf6, 0x4e, 0x8f, 0xe0, 0xc5, 0xf6, 0xba, 0x9d, 0x33, 0xba, 0xb3, 0x89,
- 0x86, 0x74, 0x86, 0x5c, 0x11, 0xbe, 0x08, 0x3b, 0x47, 0xfb, 0x35, 0xe2, 0x2b, 0x96, 0xe1, 0x61, 0x60, 0xd7,
- 0x49, 0x01, 0x20, 0x4b, 0xa0, 0x1d, 0x84, 0x99, 0x5c, 0xed, 0xdc, 0x6a, 0x03, 0x36, 0x7b, 0xa5, 0x06, 0x50,
- 0x78, 0x9a, 0xfd, 0x6c, 0x60, 0x66, 0xe2, 0x31, 0x3b, 0xf7, 0xac, 0x71, 0x9c, 0x12, 0xd3, 0xab, 0x0f, 0xd7,
- 0x9c, 0x24, 0x6f, 0x5a, 0x45, 0xcc, 0x12, 0xb5, 0x19, 0xb8, 0xb8, 0x14, 0x47, 0x33, 0x4c, 0xa8, 0xc9, 0x2e,
- 0x58, 0x68, 0x1e, 0xe9, 0x6d, 0x31, 0xbe, 0x48, 0x39, 0xda, 0xcd, 0x39, 0xbd, 0xa2, 0x32, 0x95, 0xfa, 0x6c,
- 0x79, 0x53, 0xd0, 0xfa, 0x80, 0x9f, 0xd7, 0x61, 0xf4, 0xa3, 0x5d, 0x32, 0xdb, 0x18, 0x75, 0x12, 0xf8, 0x19,
- 0x93, 0x3a, 0x8b, 0xca, 0xcb, 0x43, 0x3c, 0x93, 0x0c, 0x6f, 0xc1, 0x52, 0xf3, 0x0f, 0xc2, 0xf6, 0x72, 0x18,
- 0x18, 0xf8, 0xd0, 0x28, 0xd9, 0x9a, 0x8f, 0x56, 0x1f, 0x07, 0x98, 0x81, 0x9f, 0xfb, 0xd5, 0x0a, 0xbe, 0xec,
- 0x47, 0x3d, 0x59, 0x72, 0x31, 0x5e, 0x70, 0x1a, 0x8a, 0x9c, 0x90, 0x52, 0x86, 0x4e, 0xd7, 0x33, 0x79, 0x71,
- 0x74, 0x5b, 0xf5, 0x6c, 0x85, 0x5c, 0x20, 0x33, 0x16, 0xc2, 0x7f, 0xb7, 0xa4, 0x89, 0x20, 0x9d, 0x88, 0x2a,
- 0x93, 0xa0, 0x51, 0x8a, 0xdf, 0x46, 0x4f, 0x32, 0xa4, 0x04, 0xf5, 0x45, 0x9f, 0xd0, 0x7e, 0xe5, 0xb2, 0xce,
- 0x78, 0x76, 0x04, 0x2a, 0xa5, 0xc2, 0xbe, 0x58, 0x1d, 0xae, 0xf3, 0x54, 0x28, 0x57, 0x55, 0xa5, 0x02, 0x4f,
- 0x01, 0x37, 0xc4, 0x71, 0xf2, 0xcd, 0x14, 0xc3, 0x09, 0x43, 0x01, 0x8e, 0x10, 0x68, 0xd6, 0x9a, 0xe8, 0xfe,
- 0xee, 0x01, 0x42, 0x9a, 0x2c, 0x42, 0xb5, 0xb5, 0x7b, 0xc7, 0xc3, 0x96, 0xcb, 0x55, 0x6f, 0x82, 0xe9, 0x30,
- 0x17, 0x09, 0x8d, 0x73, 0x37, 0x6d, 0x3c, 0x21, 0x69, 0xea, 0x31, 0x2b, 0x18, 0x0e, 0x0e, 0x71, 0xc2, 0x0d,
- 0x6f, 0xdd, 0x3f, 0x20, 0x27, 0x0f, 0x0a, 0xf3, 0x52, 0xa7, 0xd6, 0xf6, 0xaf, 0x1c, 0x9d, 0x8f, 0x31, 0x14,
- 0xef, 0x46, 0x6b, 0xe2, 0x0a, 0x3b, 0xa8, 0xed, 0x24, 0x09, 0x0e, 0xed, 0xb4, 0xfd, 0x85, 0x10, 0xf3, 0x27,
- 0xda, 0x69, 0x12, 0x11, 0xcc, 0xb1, 0x51, 0x54, 0x33, 0x3d, 0x23, 0xf2, 0xff, 0x25, 0x61, 0x1e, 0x73, 0x9a,
- 0x58, 0x20, 0x1d, 0x8f, 0x54, 0xa2, 0x5a, 0x6d, 0xf1, 0x75, 0x27, 0xeb, 0x2d, 0xd1, 0x98, 0xfe, 0xaf, 0x06,
- 0x6c, 0x60, 0xb4, 0x33, 0xab, 0x97, 0xf9, 0xf1, 0xc1, 0xc9, 0x30, 0x7f, 0xb6, 0xcc, 0xc7, 0x88, 0x86, 0x05,
- 0xc6, 0x0c, 0xb8, 0x94, 0x4f, 0x1b, 0x8c, 0xd0, 0x70, 0xe9, 0xa7, 0x58, 0xd1, 0x0a, 0x45, 0x3b, 0xbd, 0xc7,
- 0xf8, 0x28, 0x95, 0x7c, 0x4c, 0xc3, 0xd1, 0x5f, 0x7a, 0x95, 0x4b, 0x7a, 0x02, 0x2a, 0x44, 0xb9, 0xd9, 0x95,
- 0xe0, 0x94, 0xa9, 0xc0, 0xca, 0xd7, 0x11, 0x31, 0x0a, 0xf8, 0x64, 0xda, 0x85, 0x4f, 0xb4, 0x17, 0x6d, 0xf7,
- 0x6c, 0x7d, 0xc4, 0x68, 0x06, 0x51, 0xda, 0x0a, 0xf4, 0xc8, 0x35, 0xbf, 0xcf, 0x57, 0xb5, 0x14, 0xa0, 0x43,
- 0xfe, 0x76, 0xcc, 0x9f, 0x85, 0xde, 0x10, 0xe5, 0x3d, 0x4e, 0x8c, 0x11, 0x67, 0x71, 0x5e, 0x3a, 0xdd, 0x86,
- 0x0f, 0xb3, 0xce, 0xbe, 0xaa, 0xd5, 0x91, 0xdb, 0xde, 0xcd, 0x7a, 0x88, 0xcd, 0x43, 0x65, 0x41, 0xc3, 0xea,
- 0xc1, 0xe3, 0x0a, 0x2b, 0xe8, 0x98, 0xa5, 0xad, 0x87, 0x65, 0x59, 0x98, 0xd4, 0x64, 0x1a, 0xeb, 0x96, 0x2c,
- 0xd7, 0x5f, 0x22, 0x8e, 0x29, 0x6b, 0xc5, 0x7c, 0xcc, 0x69, 0xde, 0xf3, 0xd9, 0x2e, 0x78, 0x97, 0xa7, 0xa2,
- 0xff, 0x48, 0xa7, 0x54, 0x41, 0xb6, 0x41, 0xe6, 0xa2, 0x03, 0xf9, 0x2e, 0x4a, 0xfc, 0x3d, 0x48, 0x5e, 0x50,
- 0x57, 0x80, 0x7b, 0x37, 0xbd, 0xa7, 0x17, 0xf6, 0x76, 0x17, 0x6b, 0x88, 0xac, 0x88, 0xee, 0x40, 0xf6, 0xcf,
- 0x6f, 0x0c, 0x0e, 0x6c, 0x55, 0xb2, 0xf4, 0x93, 0xd9, 0xef, 0xb8, 0x3f, 0x1c, 0xc6, 0x35, 0x02, 0xab, 0x54,
- 0xd7, 0x70, 0x14, 0xcd, 0xd6, 0xc4, 0xbb, 0x28, 0x25, 0x6e, 0x20, 0x93, 0xc1, 0xe6, 0x4f, 0x44, 0xad, 0x07,
- 0xd3, 0xcc, 0xd2, 0x89, 0x2a, 0x4d, 0xc1, 0x0c, 0x3b, 0x00, 0xee, 0xe3, 0x53, 0x64, 0x3c, 0xa5, 0x67, 0xb9,
- 0xbe, 0x72, 0xef, 0x41, 0xf7, 0x32, 0x80, 0xef, 0x2c, 0x34, 0xe0, 0xbd, 0xb8, 0xc6, 0xfb, 0xb6, 0x38, 0xc1,
- 0x18, 0x3d, 0x99, 0x1a, 0xa7, 0x8d, 0xa8, 0xca, 0x32, 0x9f, 0x00, 0xe2, 0x04, 0xda, 0x28, 0x86, 0x6b, 0x74,
- 0x1e, 0x1e, 0x64, 0xd4, 0x80, 0xdb, 0xd7, 0xef, 0x32, 0x33, 0x58, 0x63, 0xca, 0xbf, 0x9a, 0xb7, 0x06, 0xd0,
- 0x9f, 0x14, 0x7d, 0x6d, 0x65, 0x57, 0xc1, 0x20, 0x7f, 0xfb, 0x86, 0xd2, 0xc3, 0xe9, 0x7c, 0xea, 0x04, 0x6b,
- 0x30, 0x71, 0x89, 0x92, 0x1e, 0xbb, 0x58, 0x56, 0x50, 0x06, 0x41, 0x79, 0xb4, 0xba, 0x83, 0x26, 0x63, 0x53,
- 0x97, 0xab, 0xf7, 0x03, 0xbb, 0x9e, 0x9d, 0xfd, 0xe8, 0x4f, 0xde, 0xb2, 0x11, 0xfb, 0x62, 0xbe, 0x7e, 0xea,
- 0x7c, 0xe5, 0x9f, 0x87, 0x57, 0xec, 0xe1, 0x8c, 0x93, 0x01, 0x60, 0x9f, 0xad, 0xf5, 0x4d, 0x8f, 0x5d, 0xe7,
- 0x46, 0xdc, 0x17, 0x61, 0x3c, 0x76, 0x2d, 0xe5, 0xb8, 0xe9, 0x41, 0xe3, 0x88, 0x57, 0x37, 0x25, 0x72, 0x2b,
- 0x7f, 0x19, 0x0b, 0x40, 0x57, 0x7d, 0x0c, 0xfa, 0xe4, 0x5f, 0x0e, 0x09, 0x73, 0x3d, 0xff, 0xdb, 0x1e, 0xc6,
- 0x19, 0x99, 0x06, 0xc7, 0xad, 0x85, 0xb1, 0x0f, 0xd9, 0x27, 0x1c, 0x50, 0x9c, 0x8c, 0x91, 0x4f, 0x44, 0x04,
- 0xc0, 0x62, 0x61, 0xca, 0x15, 0x4b, 0xb7, 0x93, 0xf5, 0xb1, 0x5a, 0x5e, 0xeb, 0xeb, 0x80, 0x36, 0xcd, 0x58,
- 0x94, 0xbe, 0x6b, 0x7f, 0x49, 0x27, 0x83, 0x8b, 0x19, 0x12, 0xeb, 0xaf, 0xfa, 0xa6, 0xc0, 0xae, 0xc1, 0xd4,
- 0x36, 0xce, 0x0b, 0xdd, 0x7d, 0xb8, 0x1a, 0xa8, 0xb0, 0xb4, 0xb3, 0xd2, 0xa3, 0x57, 0xe2, 0x31, 0x09, 0xc3,
- 0x20, 0x51, 0xc0, 0x0a, 0x2e, 0x23, 0xa6, 0x57, 0x49, 0xa0, 0x41, 0x36, 0x82, 0x5b, 0xd6, 0x0a, 0x47, 0xcf,
- 0x3d, 0xd9, 0xcb, 0x5a, 0xb7, 0xd8, 0x63, 0xf2, 0x4a, 0xec, 0x02, 0x1d, 0xba, 0xd7, 0x62, 0x8e, 0xf1, 0x35,
- 0x11, 0x42, 0xd4, 0x29, 0x9e, 0x26, 0x0a, 0x00, 0xd9, 0x57, 0x09, 0xb5, 0x7b, 0x62, 0xb5, 0xc0, 0x00, 0x0d,
- 0xf3, 0x28, 0xd6, 0x73, 0x6b, 0x76, 0x6e, 0x56, 0x8b, 0x44, 0x47, 0x8c, 0x8b, 0xbb, 0x04, 0xb8, 0x1b, 0x9a,
- 0x1a, 0x3a, 0xe6, 0x55, 0xd1, 0x42, 0x5e, 0x08, 0x91, 0x4f, 0x1c, 0xe6, 0x9d, 0x91, 0xd3, 0x19, 0x61, 0xfb,
- 0x88, 0x9e, 0x4d, 0xa7, 0xd1, 0x23, 0x10, 0x26, 0x16, 0xe9, 0x01, 0x33, 0x89, 0xbf, 0xee, 0x3c, 0xae, 0x77,
- 0x19, 0x79, 0xb7, 0xfa, 0xdb, 0x42, 0x0b, 0xa1, 0x6c, 0x58, 0x6f, 0x81, 0xb4, 0x5d, 0xd9, 0xef, 0xb6, 0x17,
- 0x10, 0x3b, 0x0f, 0x90, 0xd3, 0xed, 0xe7, 0xb1, 0x40, 0x14, 0x2e, 0x20, 0x0d, 0xfb, 0x35, 0x48, 0xa7, 0x95,
- 0xcb, 0xb5, 0xd7, 0xeb, 0xd5, 0xc7, 0x9b, 0x04, 0x0b, 0x49, 0xf8, 0xb9, 0xae, 0xa1, 0x9f, 0x61, 0x54, 0x06,
- 0x04, 0x9c, 0x6d, 0x81, 0xe3, 0x0d, 0xbd, 0xe1, 0x91, 0xb7, 0xd0, 0xe2, 0x1d, 0xc6, 0xcf, 0xfd, 0xfe, 0xe6,
- 0x7a, 0x0f, 0x9d, 0xdc, 0x55, 0xa6, 0x1a, 0xcb, 0x8f, 0x7f, 0x38, 0x9d, 0x93, 0x69, 0x4b, 0x54, 0x76, 0x19,
- 0x7c, 0xb3, 0x58, 0x99, 0x42, 0x2e, 0xc6, 0x35, 0x03, 0xce, 0x4e, 0xe2, 0xb0, 0x6d, 0x90, 0x8b, 0x4a, 0x5a,
- 0x01, 0x9b, 0x1f, 0x00, 0x62, 0xce, 0x31, 0xae, 0x99, 0xf2, 0xaf, 0x3e, 0xac, 0x62, 0xea, 0x35, 0x9e, 0x46,
- 0x53, 0x98, 0x07, 0xe5, 0x57, 0xe5, 0xb6, 0x3e, 0xc5, 0xde, 0x3e, 0xcb, 0xf7, 0x95, 0x0f, 0x07, 0xce, 0xf3,
- 0xcb, 0x5a, 0xcb, 0x2f, 0x92, 0x81, 0x97, 0x1e, 0xbf, 0xa3, 0x37, 0x25, 0xf6, 0x9b, 0x0e, 0x8a, 0xb2, 0x62,
- 0x21, 0xf7, 0xb7, 0x81, 0x30, 0x52, 0xf4, 0xa1, 0x5b, 0xae, 0xf6, 0x22, 0x97, 0x04, 0xda, 0x21, 0x24, 0xb2,
- 0x96, 0x4e, 0xd6, 0x89, 0x1b, 0x74, 0x09, 0x5a, 0x98, 0x04, 0x9b, 0x10, 0x84, 0xa3, 0xf3, 0xa0, 0x95, 0x94,
- 0x5b, 0xa6, 0xe4, 0x2a, 0x08, 0x70, 0x1e, 0xfa, 0x6f, 0xe8, 0x60, 0xa8, 0x55, 0x1e, 0xf1, 0xf8, 0x5b, 0x69,
- 0xd4, 0x10, 0x93, 0x43, 0x7e, 0x06, 0xc1, 0x42, 0x7a, 0x5d, 0x9a, 0xdf, 0xf4, 0x94, 0x80, 0x88, 0x3c, 0xbb,
- 0x95, 0x94, 0xf5, 0xbd, 0xf1, 0xfd, 0xb0, 0x10, 0x0d, 0x1e, 0x0d, 0x73, 0xae, 0x1d, 0x00, 0xee, 0x3a, 0xda,
- 0xb1, 0x5e, 0x15, 0xfe, 0xe0, 0x94, 0x3c, 0x8b, 0xbf, 0x23, 0x40, 0x5f, 0xe0, 0xe0, 0x97, 0xef, 0x6d, 0x97,
- 0xb7, 0x3b, 0x45, 0x8c, 0x28, 0x1d, 0x57, 0xe3, 0xca, 0xab, 0xad, 0x51, 0xe5, 0x02, 0x31, 0x26, 0x25, 0x76,
- 0x04, 0xb0, 0xf5, 0x7f, 0x64, 0x3a, 0x8c, 0x44, 0x85, 0x2e, 0xce, 0xa4, 0x7c, 0xb2, 0x95, 0x47, 0xd0, 0x57,
- 0x80, 0xc5, 0x3a, 0xea, 0xc3, 0xf9, 0x3e, 0xda, 0x55, 0xde, 0x63, 0x3e, 0x7a, 0xb0, 0xe4, 0xb0, 0x66, 0x23,
- 0x64, 0x20, 0xd1, 0x84, 0x2d, 0x7c, 0xc2, 0xde, 0xc6, 0x5d, 0x11, 0x34, 0x38, 0x9d, 0xa9, 0x68, 0x22, 0xe1,
- 0x77, 0x1a, 0xe1, 0xdc, 0x76, 0x53, 0xce, 0x0e, 0x4c, 0x91, 0x0d, 0x05, 0xe0, 0x2c, 0x5a, 0x30, 0x60, 0xc9,
- 0x22, 0x2b, 0x6b, 0x50, 0x4f, 0xef, 0x6e, 0x48, 0x90, 0xa9, 0x09, 0x48, 0x34, 0x1f, 0x21, 0xe9, 0x9a, 0x0f,
- 0xe2, 0xfd, 0xa9, 0x61, 0x65, 0x87, 0xa4, 0xcb, 0xb3, 0x53, 0x1b, 0x08, 0xc1, 0x9f, 0x57, 0x67, 0x07, 0x1f,
- 0x3e, 0x43, 0x6a, 0x34, 0xfb, 0xb4, 0x11, 0xe2, 0x07, 0xd5, 0x69, 0x4d, 0x01, 0xd3, 0xb8, 0x82, 0x8e, 0x87,
- 0x3e, 0x03, 0x2b, 0x38, 0x2f, 0x99, 0xa4, 0x56, 0xaf, 0x0b, 0x4f, 0xad, 0xc6, 0xe2, 0x00, 0x57, 0x45, 0x32,
- 0xfb, 0x40, 0xc3, 0x4a, 0x7d, 0x7b, 0x93, 0x3d, 0x79, 0x63, 0x8d, 0xe2, 0xed, 0x01, 0xb3, 0x51, 0x9b, 0xfd,
- 0xb2, 0xf7, 0x06, 0xbf, 0xc7, 0xfd, 0xa4, 0x90, 0x54, 0x9c, 0x01, 0x56, 0xda, 0xb8, 0xa7, 0x71, 0xc2, 0x02,
- 0x9d, 0xaa, 0xd5, 0xf4, 0x3f, 0x32, 0x41, 0x37, 0x45, 0x2e, 0x4c, 0x8f, 0xbc, 0x2b, 0xc2, 0x02, 0x2f, 0x09,
- 0x9d, 0x5b, 0xdf, 0xcd, 0xf8, 0x11, 0x2b, 0x54, 0x4b, 0x4d, 0x39, 0xe6, 0xb4, 0xaf, 0x44, 0x56, 0x69, 0xfc,
- 0xd5, 0x11, 0x82, 0x0b, 0x3a, 0x9e, 0xaf, 0x4c, 0xb3, 0x7b, 0xa0, 0x13, 0x92, 0xb4, 0x24, 0x93, 0x84, 0x60,
- 0xcf, 0xba, 0xd3, 0x17, 0xc5, 0x15, 0x93, 0x22, 0x89, 0xd5, 0x66, 0xb6, 0x18, 0xaf, 0xd4, 0x00, 0x06, 0xbf,
- 0xd0, 0x15, 0x60, 0x96, 0x1d, 0x73, 0x85, 0x0e, 0xd6, 0xbf, 0x27, 0x91, 0x22, 0x3f, 0x89, 0xca, 0xa3, 0x59,
- 0x0d, 0x5e, 0xdc, 0x54, 0xe5, 0x08, 0x60, 0x36, 0x63, 0xb1, 0xaa, 0x1a, 0x96, 0xb2, 0xea, 0x1a, 0xdc, 0x13,
- 0x42, 0xfb, 0x68, 0xde, 0xbb, 0xbe, 0x01, 0xdc, 0x2b, 0x9f, 0x7d, 0xb0, 0xd1, 0x44, 0x93, 0xbd, 0xd3, 0xd4,
- 0x8c, 0x10, 0x19, 0xa0, 0xca, 0x19, 0xbb, 0x32, 0xf8, 0x43, 0x45, 0x86, 0x97, 0x77, 0xad, 0x91, 0x5e, 0x7c,
- 0x73, 0x6a, 0x60, 0x46, 0xf6, 0x50, 0x6e, 0x40, 0xf8, 0x45, 0xdd, 0xee, 0x38, 0x6c, 0x2a, 0x8c, 0x68, 0xaa,
- 0xb5, 0x52, 0xb0, 0x0c, 0xbf, 0xc3, 0xc7, 0xf5, 0xd9, 0xc4, 0x31, 0x09, 0x2e, 0x25, 0x1a, 0x3f, 0xe7, 0xa6,
- 0xef, 0x7f, 0x7a, 0x2a, 0x48, 0x6b, 0xb2, 0xd0, 0xf9, 0xda, 0x7f, 0xfa, 0x9b, 0x92, 0x02, 0xcf, 0xb7, 0xb6,
- 0x4c, 0x2e, 0xd6, 0x1e, 0xdf, 0x32, 0xcf, 0xea, 0x0d, 0xb5, 0xdb, 0x94, 0xc2, 0x8e, 0x58, 0x7b, 0xfa, 0x3a,
- 0x58, 0xdc, 0xf6, 0x11, 0x5f, 0x89, 0xd7, 0x68, 0x66, 0xd8, 0xb9, 0x34, 0x7a, 0x15, 0x9f, 0xf4, 0xe8, 0x86,
- 0xef, 0x1c, 0x87, 0x7e, 0x53, 0x38, 0x90, 0x89, 0xf5, 0xf2, 0x4f, 0x9c, 0x90, 0x20, 0xfe, 0x5d, 0x8f, 0xf0,
- 0x0b, 0xb8, 0xab, 0xe3, 0x4e, 0xb1, 0xa7, 0x38, 0x34, 0x6b, 0xaa, 0xed, 0x3f, 0xc9, 0xbe, 0x22, 0xf1, 0x2c,
- 0xb2, 0x74, 0xe1, 0x0b, 0x14, 0x14, 0x8d, 0xac, 0xcd, 0xb3, 0xe0, 0x46, 0x45, 0xa4, 0xb7, 0x58, 0x1d, 0x86,
- 0x8f, 0xa1, 0x01, 0x9d, 0x3b, 0xe8, 0x19, 0x2b, 0x6a, 0x4d, 0xa2, 0x77, 0x49, 0x13, 0xe1, 0x73, 0x04, 0x7e,
- 0xbc, 0xe6, 0x2f, 0x0c, 0x1f, 0x0f, 0x46, 0x4d, 0x1b, 0xa0, 0xe2, 0xd7, 0xb0, 0x29, 0x7b, 0x12, 0xa8, 0x36,
- 0xf2, 0x5d, 0x47, 0x8e, 0x0a, 0x24, 0x28, 0x85, 0x6a, 0x39, 0xce, 0xfc, 0x88, 0xeb, 0xec, 0x78, 0x13, 0x6f,
- 0x2a, 0xbc, 0x82, 0x48, 0xe5, 0x32, 0xe8, 0x35, 0x79, 0xe6, 0x8b, 0x0f, 0xc3, 0xb9, 0xad, 0x2f, 0x79, 0x5d,
- 0xb0, 0x12, 0xa9, 0xd3, 0x05, 0x9f, 0x51, 0xd8, 0xcf, 0x69, 0x01, 0x5b, 0x8f, 0xcd, 0xc0, 0xda, 0x1b, 0xbb,
- 0x1b, 0x6e, 0xa1, 0x3b, 0x35, 0xb2, 0x79, 0x2d, 0x22, 0x7e, 0xb1, 0x30, 0xbf, 0xe4, 0x5c, 0x16, 0xea, 0x5d,
- 0x96, 0x5e, 0x34, 0x40, 0x88, 0x99, 0x55, 0xa1, 0xff, 0xd8, 0x87, 0x4c, 0x68, 0xad, 0xf1, 0x3f, 0x91, 0x83,
- 0xfc, 0x8e, 0xb0, 0x7b, 0xc3, 0xb5, 0x84, 0x2a, 0xa0, 0x22, 0x7c, 0x1a, 0x0f, 0xb5, 0x9e, 0xf3, 0x47, 0x26,
- 0xd3, 0x29, 0x82, 0xba, 0x39, 0xe6, 0xcd, 0x36, 0xe9, 0x24, 0xa4, 0xdf, 0x45, 0xe7, 0x36, 0x27, 0x6d, 0x0e,
- 0xb2, 0xa2, 0x40, 0xaf, 0x96, 0xda, 0xc8, 0xf4, 0xc5, 0x33, 0x07, 0x92, 0xf4, 0xb6, 0x1b, 0xc6, 0x49, 0x16,
- 0x57, 0x6b, 0xf3, 0x63, 0x81, 0xd9, 0xfc, 0x52, 0xd5, 0x60, 0x7c, 0xc6, 0x59, 0x18, 0x6f, 0xfe, 0x69, 0x27,
- 0x3f, 0x23, 0xf7, 0x64, 0x04, 0x21, 0xf4, 0xee, 0x52, 0xa0, 0xf3, 0x65, 0x81, 0xc0, 0x6d, 0xdf, 0x18, 0xd0,
- 0xf5, 0xa6, 0x5e, 0x24, 0x46, 0xbd, 0x3a, 0x82, 0x99, 0x6a, 0x72, 0x3c, 0x17, 0x69, 0x1c, 0xe8, 0x9c, 0x05,
- 0x0a, 0x67, 0xca, 0x5d, 0xa5, 0x6a, 0xc5, 0x8a, 0x58, 0x39, 0xb8, 0xf7, 0xc9, 0xea, 0xe3, 0xcc, 0xd1, 0xa0,
- 0x55, 0x62, 0xd7, 0x99, 0xae, 0xaa, 0x42, 0x5b, 0x5c, 0x10, 0xa9, 0x27, 0x99, 0x0f, 0xd7, 0x25, 0xad, 0xee,
- 0xd9, 0x97, 0x38, 0xe7, 0x1d, 0x09, 0x93, 0xb5, 0xf1, 0xd5, 0xaf, 0x3e, 0x20, 0xe1, 0x16, 0xb7, 0xe6, 0xd4,
- 0x91, 0x36, 0x96, 0xd1, 0x59, 0x2a, 0xeb, 0xa7, 0x95, 0xfc, 0x99, 0x29, 0xdb, 0x5a, 0xaa, 0x57, 0x36, 0x9a,
- 0xf1, 0x25, 0x8d, 0x8a, 0x52, 0x93, 0x6b, 0x62, 0xc4, 0xab, 0x9e, 0x6d, 0x57, 0xeb, 0xb7, 0xdf, 0x2f, 0xd3,
- 0x3d, 0x53, 0x88, 0x8b, 0x61, 0x10, 0xa8, 0xa6, 0xb6, 0xf1, 0x82, 0xee, 0xa5, 0x0c, 0x89, 0x7f, 0x89, 0x66,
- 0x49, 0xd8, 0x5b, 0x50, 0xff, 0xe8, 0x16, 0x08, 0x10, 0xa6, 0xc2, 0xaa, 0x36, 0xf5, 0x5a, 0xbf, 0x6b, 0xd3,
- 0x38, 0xa8, 0x24, 0x3e, 0xdd, 0x52, 0x3a, 0xdc, 0xbf, 0x86, 0x12, 0x40, 0x83, 0xd9, 0x1a, 0x0a, 0x63, 0x53,
- 0x3e, 0xc8, 0xa9, 0xf2, 0xc3, 0x41, 0xa9, 0xa9, 0x63, 0xb3, 0x16, 0x43, 0x18, 0x31, 0xc3, 0x7d, 0x0e, 0xa2,
- 0xaa, 0x00, 0xad, 0x5e, 0xa6, 0x79, 0x52, 0xec, 0xd2, 0x03, 0x60, 0x0f, 0xff, 0xcb, 0x35, 0x5d, 0x53, 0xa5,
- 0xc7, 0x7d, 0x86, 0x24, 0x67, 0x63, 0x45, 0x65, 0x60, 0xaf, 0xd0, 0x72, 0x93, 0x47, 0x60, 0x45, 0x43, 0x47,
- 0x17, 0x1a, 0xbe, 0x7d, 0x4c, 0x88, 0x0a, 0x71, 0xbe, 0xa1, 0xe5, 0xc3, 0x21, 0xc3, 0xc6, 0x29, 0x0e, 0xbf,
- 0x12, 0x40, 0x40, 0xeb, 0xb8, 0xaf, 0xa9, 0x3a, 0x39, 0xff, 0x0e, 0x89, 0x0e, 0x36, 0x8c, 0xee, 0x15, 0xd7,
- 0x1f, 0xf5, 0x41, 0x22, 0xa0, 0x79, 0x89, 0xdf, 0x2d, 0x8d, 0x10, 0xf0, 0x4e, 0xef, 0xe7, 0xcd, 0xeb, 0xa3,
- 0x25, 0xce, 0x43, 0x8d, 0x4b, 0x10, 0xd7, 0x5b, 0xa5, 0x0d, 0x09, 0x8e, 0xe4, 0xfb, 0xdb, 0xf2, 0xbf, 0x70,
- 0x9b, 0x96, 0x45, 0x77, 0x7d, 0x2e, 0xa8, 0x7d, 0x1d, 0x42, 0x10, 0xb5, 0x34, 0xd6, 0xb3, 0x34, 0x5b, 0xbe,
- 0x35, 0x7a, 0x60, 0xa2, 0x54, 0x08, 0x63, 0x9d, 0xfa, 0x80, 0x48, 0xbb, 0xe5, 0x69, 0xd3, 0xcb, 0xea, 0xb5,
- 0x56, 0xcc, 0x66, 0xc6, 0xed, 0x48, 0xf1, 0xba, 0xf4, 0xdd, 0x64, 0x1b, 0xdf, 0x55, 0x7c, 0x93, 0x4e, 0x4f,
- 0xb4, 0x75, 0x7e, 0x3f, 0xb2, 0x15, 0xcf, 0xdf, 0xf9, 0x8b, 0x29, 0x40, 0xab, 0xbc, 0xe4, 0x13, 0x57, 0xa2,
- 0xa2, 0xdb, 0x34, 0xa2, 0x79, 0x77, 0x0a, 0x3b, 0x8a, 0xaa, 0x02, 0xa1, 0xda, 0xa4, 0x58, 0xeb, 0xb5, 0x48,
- 0x14, 0x0b, 0xe7, 0x3e, 0xa1, 0x57, 0xdd, 0xe4, 0xea, 0xf2, 0xa2, 0xbb, 0x50, 0x4b, 0x59, 0x44, 0xf3, 0x08,
- 0x52, 0x63, 0x9d, 0xa3, 0xa5, 0xa0, 0xdf, 0x5e, 0xf6, 0xaf, 0x00, 0x4b, 0x35, 0xb6, 0xd2, 0xef, 0x66, 0x21,
- 0x02, 0x67, 0xb9, 0xbf, 0xdb, 0xa6, 0x68, 0xc0, 0x80, 0x04, 0x39, 0xdc, 0x0e, 0xae, 0x63, 0xd2, 0xf1, 0x1a,
- 0x44, 0xf5, 0x93, 0x0d, 0xc5, 0x12, 0xf1, 0x10, 0xc9, 0xaa, 0x29, 0xd1, 0x41, 0x78, 0xe4, 0xfc, 0x72, 0x44,
- 0x24, 0x7f, 0x66, 0x15, 0xf7, 0x7d, 0x25, 0xcf, 0x07, 0x69, 0x2a, 0xf1, 0x74, 0x52, 0x19, 0xc5, 0x8d, 0xba,
- 0x1c, 0x86, 0x09, 0x1b, 0x53, 0x0b, 0x4a, 0xcd, 0x2c, 0xa4, 0x5f, 0x23, 0x4c, 0x52, 0xed, 0x6b, 0xf1, 0x86,
- 0xde, 0xdc, 0xdb, 0x32, 0x3f, 0x6f, 0xbd, 0x22, 0xb3, 0x81, 0x68, 0x81, 0x21, 0x13, 0x7f, 0x75, 0x5b, 0x28,
- 0x79, 0x7d, 0xe8, 0xf4, 0xa3, 0x91, 0xbc, 0x81, 0xa3, 0x90, 0x5d, 0xf3, 0x38, 0xda, 0xe8, 0x04, 0xd7, 0x24,
- 0xc5, 0x59, 0x81, 0x9b, 0x45, 0x34, 0x94, 0xde, 0x57, 0x23, 0x52, 0x87, 0xff, 0x3f, 0x87, 0x60, 0x9c, 0x13,
- 0xdc, 0x99, 0x7b, 0x2f, 0x85, 0xc0, 0x15, 0xbd, 0x5d, 0x1f, 0xe7, 0x33, 0x53, 0x36, 0x6c, 0x81, 0xb3, 0x15,
- 0x3a, 0x28, 0xdb, 0x85, 0x79, 0x8f, 0xd5, 0x26, 0x6f, 0x7c, 0xb8, 0x98, 0xc2, 0x3d, 0x3d, 0x34, 0xad, 0x56,
- 0x28, 0x67, 0x3c, 0x0e, 0xdb, 0x2d, 0xb1, 0x05, 0x9a, 0x0c, 0x5f, 0x98, 0x87, 0xbd, 0x7f, 0x94, 0xd8, 0x9d,
- 0x0b, 0x31, 0x06, 0x9a, 0xe0, 0x60, 0x68, 0xf1, 0xb8, 0x5e, 0xd4, 0xb2, 0xa8, 0x0d, 0xc7, 0xc7, 0x0a, 0xfc,
- 0x72, 0xc3, 0x29, 0x07, 0x0a, 0xeb, 0xed, 0x74, 0x67, 0x29, 0x93, 0x9f, 0xf0, 0xe7, 0x12, 0xca, 0x30, 0x22,
- 0x8f, 0x77, 0x2b, 0x2d, 0x0f, 0x9c, 0xf5, 0xb2, 0xbf, 0x43, 0x22, 0xd8, 0xc2, 0x27, 0xdd, 0x25, 0xe1, 0x0c,
- 0xd5, 0x50, 0x16, 0xa3, 0xb1, 0x63, 0x1c, 0x2b, 0xf9, 0xfb, 0x95, 0x78, 0x40, 0x60, 0x6c, 0x9b, 0xdc, 0x9f,
- 0xc8, 0x31, 0x4d, 0x50, 0x8c, 0xc5, 0x75, 0xdb, 0x4c, 0xec, 0x61, 0x34, 0x29, 0xc3, 0x49, 0x0a, 0x21, 0x0b,
- 0x6b, 0xc9, 0xcb, 0xb2, 0x12, 0xf5, 0xce, 0xb0, 0xc1, 0x72, 0x6b, 0xb3, 0x9e, 0x6e, 0xfa, 0x0d, 0x1a, 0x4c,
- 0xc8, 0x43, 0x4f, 0x3f, 0x15, 0xeb, 0x54, 0xfc, 0xcb, 0xfa, 0x25, 0x81, 0xae, 0x0a, 0xe9, 0x22, 0xa5, 0x59,
- 0x24, 0xf0, 0x76, 0x6f, 0x76, 0x90, 0xb0, 0x25, 0xb3, 0x8d, 0xc6, 0xdc, 0xa3, 0x20, 0x3b, 0x43, 0xac, 0x3b,
- 0x94, 0xa5, 0x84, 0x8a, 0x73, 0xbb, 0x35, 0xde, 0x0c, 0x38, 0x57, 0xa0, 0xd2, 0x55, 0x69, 0x91, 0xe5, 0xd7,
- 0x39, 0xf2, 0x4f, 0xc6, 0x5c, 0x8f, 0xa3, 0x14, 0x48, 0xd4, 0x1a, 0xd1, 0x60, 0x37, 0x2e, 0xd4, 0x3e, 0x42,
- 0x6e, 0xf0, 0x82, 0xb8, 0x4c, 0x49, 0xf5, 0x1f, 0xb9, 0x4a, 0x59, 0x06, 0x33, 0xf8, 0x1c, 0x3f, 0x52, 0x02,
- 0x22, 0xdb, 0x4f, 0x22, 0x6c, 0x09, 0x06, 0xc9, 0x90, 0x89, 0x1e, 0x57, 0xa1, 0xda, 0xed, 0xad, 0x45, 0xcd,
- 0xf3, 0xc6, 0x8e, 0x11, 0x29, 0xb1, 0xef, 0xd4, 0x90, 0xa2, 0xec, 0xe5, 0x20, 0x37, 0x7e, 0xb5, 0x7c, 0xc4,
- 0xf5, 0x23, 0xc1, 0xab, 0x28, 0x73, 0xaa, 0xa3, 0x71, 0x3a, 0xe2, 0xd8, 0xfe, 0xea, 0xa7, 0x6f, 0x3f, 0xbe,
- 0x74, 0x41, 0xc8, 0x6b, 0x37, 0x83, 0x5c, 0xfb, 0xb9, 0xaa, 0x23, 0xa4, 0x3d, 0x2f, 0x9a, 0x14, 0xab, 0x09,
- 0xdf, 0xfe, 0x11, 0x38, 0xb2, 0xc0, 0xcb, 0x15, 0x73, 0x48, 0x02, 0xb7, 0x08, 0x9d, 0x56, 0x4f, 0xcf, 0x60,
- 0x83, 0x45, 0x94, 0x4b, 0x16, 0x11, 0xd6, 0xd3, 0x1e, 0x11, 0xed, 0x13, 0x2a, 0x9d, 0x25, 0xfb, 0x28, 0x54,
- 0x6b, 0xca, 0x43, 0x10, 0x40, 0x10, 0xb4, 0xbb, 0xbb, 0xe2, 0x41, 0xd2, 0xb6, 0x85, 0x48, 0xad, 0xca, 0x9f,
- 0x9d, 0x62, 0xb4, 0x52, 0x91, 0xe1, 0x37, 0x8a, 0xf9, 0xf5, 0x74, 0x8c, 0x5b, 0xfc, 0xb0, 0x5a, 0x5d, 0x74,
- 0x71, 0x05, 0x9d, 0x84, 0x3e, 0x8f, 0x98, 0x3a, 0xfa, 0xd2, 0x3b, 0x4d, 0xba, 0x4d, 0x4f, 0xb1, 0x8f, 0x61,
- 0x0d, 0x75, 0x1f, 0xcf, 0x4a, 0x6f, 0x69, 0x39, 0x2f, 0x5e, 0x49, 0x1d, 0xa4, 0xbe, 0x4e, 0xc7, 0xd3, 0xc7,
- 0xc3, 0x01, 0x94, 0xde, 0xa0, 0x57, 0xdc, 0x22, 0x8b, 0x64, 0x6d, 0x9e, 0x62, 0x9a, 0x5a, 0x56, 0xe1, 0xdf,
- 0xde, 0x2b, 0x09, 0xa4, 0xa0, 0xc5, 0xed, 0x36, 0x70, 0xe5, 0xe1, 0xa0, 0xcb, 0xe4, 0x7c, 0x64, 0x5a, 0xa2,
- 0x71, 0x44, 0x4c, 0x26, 0xb7, 0xba, 0xe1, 0x1a, 0xbc, 0x6a, 0xcb, 0xa5, 0x2b, 0x1c, 0x01, 0x19, 0x50, 0x93,
- 0xaf, 0xb8, 0x26, 0x3f, 0x37, 0x6e, 0x26, 0x12, 0x16, 0x36, 0x53, 0x56, 0xe4, 0x97, 0x17, 0x9e, 0xd5, 0xa4,
- 0x45, 0x7d, 0xf0, 0x06, 0x3c, 0x40, 0x63, 0xa8, 0x9b, 0x8e, 0xf2, 0xcf, 0xee, 0xa0, 0x7d, 0x38, 0x1d, 0xa2,
- 0x5f, 0xcd, 0x92, 0x3d, 0x48, 0xb3, 0x8b, 0x2d, 0x24, 0xc9, 0x10, 0xfe, 0x71, 0x7e, 0xc5, 0x9b, 0x05, 0x03,
- 0xd6, 0x08, 0xe6, 0x56, 0x24, 0x9a, 0x95, 0xc3, 0x0f, 0xa4, 0x36, 0x6b, 0x29, 0xfe, 0x76, 0x65, 0x7a, 0x38,
- 0x94, 0x52, 0x81, 0x66, 0xf8, 0xb9, 0xfc, 0xca, 0x45, 0x51, 0x4e, 0x9c, 0xe9, 0x7c, 0xf7, 0xf7, 0xd0, 0xa9,
- 0xa8, 0xe3, 0x04, 0x02, 0x09, 0x92, 0x5e, 0xfc, 0x55, 0x31, 0x2c, 0x1d, 0x01, 0x26, 0x6f, 0xf2, 0xbb, 0xb6,
- 0xd7, 0x5e, 0x9a, 0xb7, 0xcb, 0x80, 0xd7, 0xd2, 0x40, 0xf0, 0xb6, 0xc2, 0xbc, 0xa3, 0x26, 0xb1, 0xe4, 0x1b,
- 0x39, 0x5d, 0xda, 0x85, 0x45, 0x71, 0xa2, 0xbe, 0xe7, 0xe0, 0x2e, 0xba, 0xc9, 0x3e, 0x8f, 0x34, 0x07, 0x7f,
- 0x3e, 0xbf, 0x06, 0x40, 0xe7, 0x66, 0x8c, 0xed, 0x62, 0xce, 0xdb, 0xc5, 0x2a, 0x34, 0xe7, 0x97, 0x25, 0x33,
- 0xd2, 0xd3, 0x1a, 0x8c, 0x40, 0x8d, 0x23, 0x39, 0x86, 0x2b, 0xe2, 0xf8, 0x02, 0x73, 0xa7, 0xc5, 0x03, 0x3d,
- 0xa3, 0xfc, 0x3e, 0x6b, 0xb8, 0x00, 0x34, 0x77, 0x61, 0x43, 0x02, 0xb8, 0x14, 0x27, 0xd4, 0x00, 0xa8, 0x35,
- 0x88, 0xb6, 0x74, 0xf3, 0x13, 0x05, 0x51, 0x4d, 0x3d, 0x0c, 0xf9, 0x70, 0xac, 0xe6, 0x8d, 0x8d, 0xdd, 0x11,
- 0xce, 0x58, 0x0d, 0xb4, 0x65, 0x46, 0x3a, 0xdd, 0x42, 0x23, 0x57, 0x9b, 0xa9, 0x34, 0x2f, 0x7c, 0x74, 0x04,
- 0xd4, 0xf2, 0xa1, 0xf0, 0x5d, 0x7c, 0x35, 0x36, 0xd8, 0xaf, 0x4b, 0x06, 0x18, 0x71, 0x91, 0xd7, 0x44, 0x42,
- 0x59, 0x3f, 0x76, 0x2c, 0x65, 0x24, 0x46, 0x35, 0xdb, 0xcf, 0x07, 0x38, 0xd6, 0x0c, 0x12, 0xba, 0xe8, 0x84,
- 0x41, 0xb8, 0x2e, 0xec, 0xc9, 0xab, 0x01, 0x7a, 0x68, 0x70, 0x58, 0xab, 0xdb, 0x8e, 0xee, 0x5f, 0x24, 0x8b,
- 0xaf, 0x62, 0xbf, 0xa9, 0x0f, 0x3f, 0x9f, 0x0b, 0x5a, 0x38, 0x79, 0x2e, 0x88, 0x77, 0x3e, 0x66, 0xa0, 0x4d,
- 0x04, 0xe6, 0x52, 0xd0, 0x34, 0x14, 0xb1, 0x6c, 0x59, 0x2e, 0x19, 0x85, 0x48, 0x13, 0x00, 0x30, 0xe9, 0xd8,
- 0xe6, 0xe6, 0x26, 0x1b, 0xf2, 0x50, 0xbc, 0x73, 0xaa, 0xcb, 0xac, 0x95, 0x95, 0x4e, 0x56, 0x80, 0x4e, 0x93,
- 0x81, 0x61, 0x50, 0xe0, 0xeb, 0xba, 0x22, 0x03, 0xdb, 0x60, 0x1b, 0xd5, 0xa2, 0x17, 0x6f, 0xf8, 0x76, 0xce,
- 0x15, 0x93, 0x18, 0xc2, 0xfd, 0xa5, 0x92, 0x5c, 0xd9, 0xe3, 0x3b, 0xf5, 0x5b, 0x92, 0xe2, 0xec, 0x8a, 0x57,
- 0xca, 0xa4, 0x39, 0xc6, 0xcc, 0xf6, 0x22, 0x08, 0x2c, 0x0d, 0x53, 0xe5, 0x95, 0xa4, 0x09, 0x64, 0x6f, 0x52,
- 0x59, 0x51, 0xa0, 0xbe, 0xe3, 0x8c, 0x09, 0x9a, 0x3a, 0xe3, 0xe5, 0xeb, 0xa8, 0x05, 0x75, 0xbd, 0x40, 0x08,
- 0xd5, 0x9e, 0x96, 0x7d, 0xe0, 0xc5, 0x79, 0x7a, 0x80, 0xc8, 0x92, 0x05, 0xf0, 0x9e, 0x25, 0xf8, 0x70, 0xdc,
- 0x9c, 0x15, 0xf9, 0x37, 0x0e, 0x4e, 0xfb, 0xeb, 0xeb, 0xa3, 0x3c, 0x26, 0x2b, 0x80, 0xc1, 0x6b, 0x03, 0xe0,
- 0xce, 0xb7, 0x93, 0x12, 0x2d, 0x55, 0x29, 0xab, 0xf9, 0x62, 0x91, 0x83, 0xcd, 0xe4, 0xa5, 0x89, 0xb1, 0x2f,
- 0x89, 0x2f, 0xc5, 0x0f, 0x3c, 0xe1, 0x59, 0xb7, 0xfe, 0x92, 0x0a, 0x2c, 0xfb, 0x4e, 0xe6, 0x09, 0x08, 0x39,
- 0xcd, 0x6f, 0x86, 0x3f, 0x25, 0x16, 0xac, 0x02, 0x91, 0x92, 0x8c, 0xd6, 0x46, 0xec, 0x65, 0x24, 0x7b, 0x42,
- 0x2a, 0x4f, 0x86, 0xc9, 0xf4, 0x93, 0x04, 0xf0, 0xfc, 0x2c, 0x70, 0x01, 0x10, 0xcc, 0x62, 0x82, 0x99, 0x96,
- 0x98, 0x9e, 0x3f, 0x00, 0x5e, 0x46, 0x9a, 0x35, 0x85, 0xde, 0x2e, 0xc3, 0xff, 0x74, 0xa0, 0x13, 0x65, 0xd6,
- 0x77, 0x5e, 0x42, 0x5e, 0x56, 0x35, 0x41, 0x0e, 0x5d, 0xd2, 0x00, 0x64, 0xb6, 0xf9, 0x11, 0x21, 0x57, 0x49,
- 0x3e, 0x3a, 0x73, 0x61, 0x84, 0x3a, 0x4e, 0x6d, 0x65, 0x68, 0xcd, 0xa9, 0xa5, 0x8f, 0x6e, 0x3e, 0x0c, 0xbf,
- 0x52, 0x46, 0x9e, 0x44, 0x7f, 0x42, 0xf2, 0x00, 0x6b, 0xfb, 0x43, 0xd0, 0x8c, 0xf5, 0x5e, 0xb2, 0xeb, 0xe6,
- 0x0a, 0xfd, 0x1e, 0xe2, 0x4a, 0x5c, 0x5d, 0xd0, 0xba, 0x6d, 0xb2, 0x35, 0x83, 0xc2, 0x51, 0x62, 0xfc, 0x79,
- 0x4f, 0xca, 0x93, 0xed, 0xc5, 0x2a, 0x1c, 0xcb, 0x48, 0x99, 0xbc, 0x3b, 0x4e, 0xcb, 0xc7, 0x1a, 0xa4, 0x07,
- 0x3b, 0xe3, 0xad, 0x6c, 0xd1, 0xd4, 0x2a, 0x45, 0xde, 0x43, 0x23, 0x3a, 0xc0, 0x5c, 0x43, 0x9b, 0x43, 0xb1,
- 0xdb, 0xc8, 0xe4, 0xa8, 0xa5, 0xd6, 0xce, 0x01, 0xd5, 0x31, 0xf1, 0x47, 0xaf, 0x69, 0x38, 0x4b, 0x97, 0x54,
- 0x1d, 0xfa, 0xce, 0x96, 0xa4, 0xeb, 0xae, 0xec, 0x29, 0xe8, 0x14, 0x89, 0x67, 0xe0, 0xa2, 0xab, 0x43, 0xf5,
- 0x32, 0x04, 0xb6, 0xa9, 0x09, 0xa5, 0x59, 0x4f, 0x96, 0x54, 0xcd, 0xf0, 0x09, 0xe0, 0x35, 0x58, 0x16, 0x46,
- 0x09, 0x3e, 0x68, 0x6e, 0x8c, 0x93, 0x99, 0x81, 0x3e, 0xe5, 0x34, 0xef, 0x9e, 0x35, 0xe4, 0x3a, 0x19, 0xa0,
- 0x71, 0xd3, 0x73, 0x33, 0x43, 0x90, 0xfe, 0xae, 0x4c, 0x5c, 0xe8, 0x9f, 0x55, 0x05, 0xaf, 0x38, 0xcf, 0x54,
- 0x83, 0x7c, 0xbb, 0x50, 0x91, 0xa6, 0x72, 0x74, 0x31, 0xba, 0x01, 0x62, 0xc1, 0x5f, 0x41, 0x8b, 0x1b, 0x31,
- 0xfd, 0xf9, 0xff, 0x4b, 0x99, 0x77, 0xb8, 0x97, 0x77, 0x4e, 0x36, 0xed, 0x32, 0xd6, 0x91, 0x86, 0x8b, 0x49,
- 0xf8, 0x39, 0x7d, 0x53, 0x3c, 0x86, 0x9a, 0x56, 0x7d, 0xd1, 0xb3, 0x42, 0xde, 0xb1, 0x41, 0xe0, 0x1e, 0xf9,
- 0x30, 0x6f, 0x25, 0xc0, 0x46, 0x36, 0x07, 0x78, 0x67, 0xe2, 0x67, 0x70, 0xec, 0xa8, 0xfe, 0x1f, 0xbf, 0x04,
- 0xbc, 0xf0, 0xb9, 0x67, 0x97, 0xf9, 0x8c, 0x59, 0xda, 0x5c, 0xd3, 0x76, 0x5b, 0x01, 0x90, 0x98, 0x1e, 0xb2,
- 0xa9, 0x5a, 0x05, 0xd2, 0x57, 0x4b, 0x6a, 0x7b, 0x4a, 0xfe, 0x9b, 0xee, 0x4c, 0x70, 0xee, 0xf5, 0xf7, 0x3a,
- 0x02, 0x0a, 0xde, 0x02, 0xbb, 0xa3, 0x70, 0xf4, 0xdf, 0xd6, 0xdb, 0x3e, 0x16, 0xc0, 0x96, 0x12, 0x66, 0x3f,
- 0xa0, 0x62, 0x3d, 0x5f, 0x27, 0xab
+ 0xee, 0x89, 0xf9, 0x20, 0x54, 0x02, 0x82, 0xb6, 0x82, 0x89, 0x08, 0xc4, 0x25, 0x6f, 0x35, 0x01, 0x20, 0x47,
+ 0xf0, 0x24, 0xd1, 0x64, 0xf6, 0x16, 0x21, 0xcb, 0xf6, 0x20, 0x6c, 0xfe, 0x1e, 0xf6, 0x6e, 0x87, 0xc0, 0x28,
+ 0x13, 0x7a, 0x6a, 0x27, 0x7f, 0xff, 0x4b, 0xd3, 0xac, 0x17, 0x25, 0xbf, 0x43, 0x3b, 0xbe, 0x2d, 0x41, 0xb8,
+ 0xc4, 0xa5, 0x91, 0xa3, 0xc0, 0x52, 0xbe, 0x16, 0x34, 0x6f, 0x2f, 0x35, 0x43, 0x8c, 0xcc, 0x5e, 0xbe, 0x48,
+ 0x08, 0x60, 0x0c, 0x83, 0xb7, 0x54, 0x72, 0xc7, 0xf6, 0x18, 0x9c, 0x02, 0xfc, 0x7e, 0x26, 0x52, 0xeb, 0xd7,
+ 0x36, 0x7c, 0xae, 0x7c, 0xb4, 0x17, 0x41, 0xc1, 0x63, 0x7d, 0x59, 0x4d, 0xb6, 0x66, 0xc1, 0xa6, 0x3e, 0x7a,
+ 0x29, 0xc0, 0xd7, 0x17, 0x7d, 0xa8, 0x49, 0x27, 0x02, 0x3e, 0xc4, 0xb4, 0xe3, 0xfd, 0x55, 0xed, 0x66, 0x0a,
+ 0x28, 0x86, 0xbf, 0xa9, 0xff, 0x48, 0xf4, 0x2d, 0xa8, 0x30, 0xdb, 0x37, 0x8d, 0xae, 0xac, 0x7c, 0xa6, 0x00,
+ 0x2a, 0xf3, 0x2c, 0xb9, 0x57, 0x08, 0xd0, 0xaa, 0x6c, 0xa2, 0xc0, 0xb7, 0x26, 0xb7, 0xb2, 0x02, 0x58, 0x20,
+ 0x1c, 0xf4, 0x20, 0xfb, 0x67, 0x69, 0xd9, 0xf3, 0x86, 0x1d, 0x7d, 0xb1, 0xed, 0x4d, 0x75, 0x6b, 0x2e, 0x3f,
+ 0x36, 0xb9, 0xef, 0xda, 0xbd, 0x4a, 0x7f, 0x84, 0xd8, 0xaa, 0xa9, 0xab, 0xd7, 0xde, 0x25, 0x85, 0x36, 0x37,
+ 0x71, 0xc6, 0xe8, 0x4f, 0x72, 0x5a, 0x87, 0xa2, 0xcb, 0x2d, 0x4c, 0x7e, 0x47, 0x61, 0x91, 0xdc, 0xfc, 0x35,
+ 0xe5, 0x61, 0xf3, 0xaa, 0x7b, 0x55, 0x2c, 0xf0, 0x8f, 0xc9, 0x35, 0x29, 0x9e, 0x93, 0x41, 0x21, 0xa0, 0x09,
+ 0x1e, 0x02, 0x3c, 0xc8, 0x48, 0xf3, 0xa3, 0xbf, 0x63, 0xd4, 0x7f, 0xb7, 0x52, 0x22, 0x58, 0x0f, 0x02, 0x86,
+ 0x1b, 0xf7, 0x4d, 0x7e, 0x2a, 0x7c, 0x20, 0x97, 0xf5, 0x4a, 0xaa, 0x8d, 0xa2, 0x8f, 0x9b, 0xb8, 0xc5, 0x2b,
+ 0x02, 0x1a, 0xbd, 0xa1, 0x81, 0x79, 0x1a, 0xb1, 0x0c, 0xc3, 0x60, 0xa1, 0xd8, 0x30, 0xd9, 0x0b, 0x98, 0x3d,
+ 0xe6, 0xb6, 0xf8, 0x64, 0x75, 0xa7, 0xaa, 0x60, 0x2b, 0xcc, 0xc0, 0xa1, 0x35, 0x76, 0x7e, 0x45, 0x25, 0xf5,
+ 0x7f, 0x7e, 0xc5, 0x8d, 0x00, 0x56, 0xb1, 0xe0, 0x59, 0xb0, 0xcc, 0x29, 0x0e, 0x8a, 0x3d, 0x60, 0xff, 0xba,
+ 0xea, 0x80, 0x7a, 0xfc, 0xc5, 0xe7, 0x1b, 0x6b, 0x87, 0x38, 0xe7, 0x26, 0x73, 0x9c, 0x44, 0xdf, 0xb3, 0x7e,
+ 0x51, 0xa3, 0x28, 0x83, 0x8f, 0x9c, 0x06, 0x97, 0x10, 0xfd, 0x22, 0x82, 0x60, 0x31, 0x36, 0x66, 0x2a, 0x23,
+ 0x54, 0xc4, 0x17, 0x58, 0x73, 0x79, 0x70, 0x4f, 0xfa, 0xa3, 0xd1, 0x7c, 0x8e, 0xa8, 0xaf, 0x46, 0xec, 0x2a,
+ 0xa4, 0xe6, 0xa6, 0xa2, 0x4e, 0x09, 0xc3, 0xc2, 0xa6, 0x53, 0x3d, 0x87, 0x6d, 0x2e, 0xfe, 0xbf, 0x47, 0xce,
+ 0x2a, 0xf0, 0x0e, 0xd3, 0x2d, 0x05, 0xfd, 0x2c, 0x0f, 0x04, 0x15, 0xae, 0xca, 0x6c, 0x12, 0xb7, 0x20, 0x0d,
+ 0x06, 0xd5, 0xef, 0xc9, 0x88, 0x2c, 0x93, 0x0a, 0x0e, 0xf7, 0xb6, 0x61, 0xe7, 0xe0, 0x16, 0x30, 0xd1, 0x6e,
+ 0xb9, 0x23, 0xc0, 0x66, 0xd5, 0xae, 0x15, 0xf8, 0x1d, 0x1d, 0x66, 0xbb, 0xe4, 0x30, 0x4c, 0x14, 0x55, 0x47,
+ 0x78, 0x67, 0x99, 0x4f, 0xbf, 0x58, 0xe2, 0x63, 0x0b, 0xa8, 0x0a, 0x67, 0xf4, 0xc6, 0xbd, 0xda, 0x6a, 0x92,
+ 0x67, 0x56, 0x36, 0x0c, 0x89, 0xfc, 0x34, 0x48, 0xbc, 0x7e, 0xcc, 0xb6, 0xa2, 0xfc, 0x31, 0xf9, 0xe9, 0xad,
+ 0x54, 0x32, 0xed, 0x67, 0x91, 0x22, 0x6b, 0x2b, 0x1d, 0x32, 0x0f, 0x02, 0x39, 0x0a, 0xca, 0x5f, 0xcf, 0x53,
+ 0x54, 0x88, 0x28, 0x38, 0xf9, 0x77, 0x7b, 0x40, 0x86, 0x93, 0x9e, 0x58, 0x39, 0xb8, 0x57, 0x60, 0x19, 0x2f,
+ 0xc9, 0xff, 0xe4, 0x2e, 0x24, 0x25, 0x0c, 0x94, 0x1a, 0xbd, 0x0a, 0xdc, 0xb8, 0x32, 0xf4, 0x16, 0xda, 0xea,
+ 0xda, 0x98, 0xdb, 0x47, 0xe6, 0xe1, 0x4f, 0xf8, 0xe0, 0x0c, 0x85, 0xd3, 0x17, 0xbc, 0xae, 0x9e, 0x8a, 0x7c,
+ 0x55, 0xbe, 0xbe, 0xe9, 0x9f, 0x4c, 0xfc, 0x91, 0x5e, 0x57, 0xe4, 0xe5, 0x57, 0x23, 0x5e, 0x71, 0xca, 0xc8,
+ 0x41, 0x78, 0x16, 0x89, 0x1e, 0x71, 0xc0, 0xf5, 0x5c, 0xd1, 0x72, 0x40, 0x23, 0x9d, 0xce, 0xb3, 0x78, 0xf2,
+ 0x37, 0x50, 0x97, 0x3f, 0x8e, 0x89, 0x0c, 0x6a, 0x90, 0xe3, 0x2b, 0x04, 0x82, 0x85, 0x05, 0x65, 0x59, 0xe2,
+ 0x7c, 0x40, 0xe1, 0x29, 0x9e, 0xa6, 0xd5, 0x33, 0x0a, 0x9d, 0xdb, 0x01, 0xe7, 0xc8, 0xe4, 0xc7, 0x0e, 0x24,
+ 0x32, 0xa7, 0x77, 0x5a, 0x22, 0x45, 0x73, 0x1f, 0x23, 0x0e, 0x4f, 0x35, 0x04, 0x44, 0xb5, 0xcc, 0xa4, 0xde,
+ 0x6d, 0xb1, 0x13, 0x6f, 0xb5, 0x75, 0x0e, 0x7f, 0x32, 0x6c, 0x4f, 0xfe, 0x10, 0x10, 0x6d, 0x66, 0xd0, 0x49,
+ 0x36, 0x87, 0xb1, 0xdf, 0x75, 0xb2, 0x7f, 0x68, 0x34, 0xaf, 0xab, 0xb3, 0x2a, 0xfa, 0x19, 0x81, 0x33, 0x85,
+ 0x15, 0x7a, 0x2d, 0x52, 0x24, 0xfe, 0x11, 0x91, 0x95, 0x80, 0x3d, 0xf5, 0x6c, 0x06, 0x3a, 0x3e, 0x50, 0x5a,
+ 0xf7, 0x2b, 0xb4, 0x78, 0xe3, 0xec, 0x6a, 0x3a, 0x0e, 0xf5, 0x61, 0x68, 0x5a, 0x34, 0xda, 0x1b, 0xde, 0x89,
+ 0xa8, 0xe7, 0xec, 0xd0, 0xd4, 0x16, 0x51, 0x2d, 0xad, 0xa9, 0x9c, 0xcf, 0xc9, 0x93, 0x05, 0x95, 0xea, 0x95,
+ 0x74, 0xd5, 0x00, 0x55, 0x90, 0x0c, 0x5c, 0x1d, 0xaa, 0x88, 0xcc, 0xad, 0x82, 0xbc, 0x28, 0xef, 0x1a, 0xf0,
+ 0xb2, 0x32, 0x18, 0x28, 0x71, 0x23, 0x1f, 0x69, 0xf0, 0xeb, 0x96, 0x86, 0x05, 0x6d, 0x2e, 0x0e, 0x4e, 0x14,
+ 0x64, 0x70, 0xa9, 0x35, 0xf4, 0x17, 0x20, 0x23, 0x2c, 0xf1, 0x7a, 0xaf, 0x2b, 0x86, 0x78, 0x9e, 0x37, 0x27,
+ 0x8f, 0xee, 0xb6, 0x55, 0x71, 0xd1, 0x63, 0x48, 0x26, 0x67, 0xd5, 0xf9, 0xdd, 0xb9, 0xbb, 0x75, 0x04, 0x6d,
+ 0x46, 0x3c, 0x72, 0x61, 0x8d, 0x2b, 0x45, 0x27, 0xaf, 0x50, 0xad, 0x7f, 0xde, 0x3f, 0x91, 0xdf, 0x84, 0xf4,
+ 0x29, 0xbf, 0xe5, 0xfd, 0x40, 0x8a, 0xcd, 0x09, 0x8b, 0x20, 0xef, 0xa8, 0xe4, 0xf2, 0xc4, 0xbd, 0x37, 0x93,
+ 0x3b, 0xd1, 0xda, 0x91, 0xc3, 0x65, 0x67, 0xf9, 0x5b, 0x3e, 0xa4, 0xb4, 0xa5, 0x8d, 0xd6, 0x46, 0x0f, 0x42,
+ 0x7e, 0x57, 0xa2, 0xa2, 0x9c, 0x49, 0xc6, 0x1b, 0x78, 0x6c, 0x54, 0x99, 0x39, 0x15, 0x1e, 0x76, 0x07, 0x15,
+ 0x32, 0xf5, 0xc6, 0xe0, 0x1a, 0xd6, 0x81, 0xc9, 0x02, 0x81, 0xb6, 0xf8, 0xd6, 0xb1, 0xc9, 0xed, 0xe1, 0x59,
+ 0x4b, 0xb7, 0xd0, 0x83, 0x4f, 0x37, 0xf4, 0x98, 0xfb, 0xb7, 0xe2, 0x59, 0x15, 0xb1, 0x86, 0x7b, 0xa7, 0xb3,
+ 0xb4, 0x23, 0x92, 0x92, 0x38, 0x35, 0x45, 0xf6, 0x38, 0x84, 0xc1, 0x63, 0xd4, 0x4b, 0x85, 0x57, 0xc6, 0x08,
+ 0x67, 0x3d, 0x9b, 0x0d, 0x16, 0xf0, 0xda, 0xdd, 0xc1, 0x65, 0xff, 0x93, 0x7e, 0xa9, 0xf2, 0xa8, 0x19, 0x10,
+ 0xe5, 0x13, 0xaa, 0x0e, 0x0d, 0xe5, 0xbb, 0x1f, 0x7a, 0xbb, 0x66, 0x93, 0xaa, 0x93, 0xf3, 0xcd, 0x11, 0xc2,
+ 0x61, 0x3c, 0xb5, 0x0e, 0x74, 0x1f, 0xc0, 0x70, 0x15, 0xd1, 0x92, 0x97, 0xb1, 0x03, 0x95, 0x6a, 0xd3, 0xed,
+ 0x5d, 0x06, 0xe7, 0xac, 0xf0, 0x3c, 0xe8, 0x32, 0x44, 0xf4, 0xac, 0xe4, 0x22, 0xf0, 0xda, 0x1c, 0xd3, 0x78,
+ 0x8d, 0xfb, 0xc0, 0x61, 0xb1, 0xd6, 0xf4, 0xbc, 0x26, 0xd7, 0x1c, 0x0b, 0x8d, 0x5f, 0xba, 0xb6, 0xb9, 0xc3,
+ 0xf1, 0xad, 0x5e, 0x59, 0xd3, 0xd7, 0xa2, 0x8d, 0xe1, 0x85, 0x6b, 0x01, 0x10, 0xf3, 0x2e, 0xe8, 0x17, 0xae,
+ 0x0a, 0xdd, 0x88, 0x16, 0xd4, 0x1d, 0xca, 0x1d, 0x37, 0xe9, 0x8e, 0x3d, 0x81, 0x7b, 0xc4, 0xb3, 0xc3, 0x71,
+ 0x32, 0xea, 0x3b, 0xe7, 0x3f, 0x22, 0x8f, 0xed, 0xc0, 0x72, 0x9a, 0x59, 0xa4, 0xc9, 0xba, 0xac, 0x17, 0xc4,
+ 0xc5, 0xef, 0xba, 0xf2, 0x22, 0x42, 0xb2, 0x26, 0x9a, 0x0f, 0x29, 0x11, 0x0b, 0xc0, 0x5d, 0x1a, 0xd6, 0xe0,
+ 0xba, 0xd6, 0xa0, 0x91, 0xeb, 0x0c, 0x93, 0x2d, 0x33, 0x68, 0xf7, 0x3b, 0x4e, 0x12, 0xe0, 0x75, 0xfd, 0xaf,
+ 0xb4, 0x3f, 0x89, 0x5f, 0xdf, 0x29, 0x74, 0x15, 0x2b, 0xbb, 0x53, 0x97, 0x29, 0xbd, 0x8c, 0x58, 0xfa, 0x76,
+ 0x05, 0x27, 0x43, 0xcb, 0xcc, 0x81, 0x79, 0x98, 0xa7, 0x37, 0xbf, 0x47, 0x8e, 0x28, 0x6b, 0xda, 0x8e, 0xc9,
+ 0x8e, 0x60, 0x59, 0xe0, 0x9e, 0x00, 0x71, 0xc4, 0x75, 0x21, 0x6a, 0xcc, 0xb0, 0xa2, 0x2f, 0x4f, 0x1b, 0x37,
+ 0x96, 0x2d, 0x9c, 0xc4, 0xa9, 0x60, 0x1a, 0xd4, 0x16, 0xd0, 0x8a, 0x9d, 0x61, 0x53, 0x67, 0xe2, 0x83, 0xf0,
+ 0xbe, 0xad, 0xe5, 0x1a, 0x76, 0x3c, 0x42, 0x78, 0x99, 0x9d, 0xa4, 0xcf, 0xaa, 0x6a, 0x5b, 0x8d, 0xfd, 0xd5,
+ 0xa4, 0x3f, 0x8a, 0xe7, 0x88, 0x8a, 0x04, 0x4c, 0xdb, 0x90, 0xea, 0x58, 0x16, 0x96, 0xc4, 0x20, 0x20, 0x5b,
+ 0x09, 0xce, 0xb9, 0x8d, 0x1c, 0xc9, 0x47, 0x19, 0x34, 0xbd, 0xd9, 0x62, 0x37, 0x3e, 0x8c, 0x7f, 0x0b, 0xe6,
+ 0xf0, 0xc3, 0xc9, 0x82, 0x5d, 0xb6, 0xa8, 0xe5, 0xfa, 0xe6, 0x15, 0xaa, 0x7b, 0x6a, 0x2a, 0x2e, 0x36, 0x26,
+ 0x2c, 0x37, 0xe6, 0x40, 0x83, 0x6a, 0x72, 0x0e, 0x7f, 0xf4, 0x5c, 0xf4, 0x29, 0x18, 0x1d, 0xf9, 0x99, 0x9c,
+ 0x3f, 0x41, 0x89, 0x54, 0x98, 0xb9, 0x04, 0x81, 0xc8, 0xd5, 0xb8, 0x29, 0x27, 0x09, 0x91, 0x83, 0xfc, 0x64,
+ 0xd1, 0x2a, 0xed, 0x00, 0x18, 0xb2, 0xd2, 0x5c, 0x0b, 0xef, 0xcb, 0x89, 0x56, 0xff, 0xb6, 0x5e, 0xa4, 0x2b,
+ 0xd2, 0x07, 0x42, 0x8e, 0xe8, 0x75, 0xc7, 0x24, 0x13, 0xe5, 0x72, 0x0d, 0xe3, 0xfd, 0xfa, 0x20, 0x32, 0x8d,
+ 0xbe, 0x71, 0xb7, 0xe1, 0xa8, 0x01, 0x7d, 0xeb, 0x5d, 0x86, 0x98, 0x14, 0xe2, 0x94, 0x92, 0x95, 0x1b, 0x34,
+ 0x0d, 0xf4, 0x5a, 0x7f, 0x5d, 0x9c, 0x40, 0xa2, 0x1c, 0x48, 0x98, 0x65, 0x0d, 0xf4, 0x7d, 0xc7, 0x28, 0x88,
+ 0x4c, 0x92, 0xd9, 0x71, 0x31, 0x32, 0xe0, 0xe9, 0x54, 0x46, 0xa8, 0xe0, 0x92, 0xc1, 0x98, 0xfd, 0x32, 0xa7,
+ 0x87, 0xfa, 0xdc, 0x72, 0x48, 0xff, 0xb7, 0xb3, 0x84, 0x0b, 0x3e, 0x57, 0xb8, 0x7b, 0x90, 0x1f, 0x9f, 0xca,
+ 0xff, 0x97, 0xa3, 0xcc, 0x2d, 0x39, 0x68, 0x7e, 0x09, 0xfe, 0xd4, 0xbf, 0x73, 0xdd, 0x95, 0x24, 0x1e, 0xfe,
+ 0x88, 0x9d, 0x1a, 0xc6, 0xc6, 0x32, 0xa4, 0x2a, 0xdc, 0xb6, 0x13, 0x34, 0xe5, 0x99, 0x8f, 0xf9, 0x1e, 0xde,
+ 0xc4, 0x61, 0x83, 0x8e, 0x7d, 0xb2, 0xd9, 0xcc, 0x79, 0xbf, 0x28, 0x70, 0x4f, 0x69, 0xa7, 0xbc, 0xf4, 0x1c,
+ 0xf3, 0xf5, 0xb2, 0xa6, 0xbf, 0xb0, 0xca, 0xeb, 0x63, 0x33, 0xb2, 0x2d, 0x52, 0xb0, 0x4b, 0x4f, 0x13, 0x86,
+ 0x0f, 0x32, 0xac, 0xd4, 0xb2, 0x08, 0x3b, 0xe8, 0x53, 0x32, 0xa6, 0xf1, 0xab, 0x22, 0x0c, 0xee, 0xaf, 0x8c,
+ 0xdb, 0x08, 0x2c, 0x05, 0x1f, 0x22, 0x80, 0x58, 0x0c, 0x20, 0xe6, 0x10, 0x14, 0xf3, 0xeb, 0xd9, 0x36, 0x5f,
+ 0x98, 0x78, 0x73, 0x6e, 0x3a, 0x50, 0x6f, 0x00, 0x87, 0x71, 0xaa, 0x40, 0xc8, 0x5a, 0x4e, 0x9a, 0x69, 0xff,
+ 0xd6, 0x53, 0x72, 0x64, 0x3d, 0xf0, 0xc6, 0x90, 0x2a, 0xf7, 0x50, 0x68, 0xba, 0xae, 0x98, 0xcd, 0x11, 0xbc,
+ 0x65, 0xf3, 0x70, 0xda, 0xa8, 0x0e, 0x16, 0x0e, 0xe3, 0x59, 0xb5, 0x02, 0x37, 0x71, 0x7a, 0x1e, 0xad, 0xbf,
+ 0x0a, 0x87, 0xbd, 0xf6, 0x61, 0xcd, 0x4f, 0x85, 0x83, 0xec, 0x68, 0x2b, 0xe1, 0x09, 0x1f, 0xb9, 0xc9, 0xdf,
+ 0x30, 0x5d, 0xef, 0xf2, 0x53, 0x4d, 0x67, 0x29, 0xf8, 0xa5, 0x5f, 0xf9, 0xcb, 0x7f, 0x2c, 0xac, 0xa6, 0xd0,
+ 0xde, 0x15, 0x71, 0xe2, 0x43, 0x54, 0x5f, 0x75, 0x8f, 0x98, 0x42, 0x0d, 0x87, 0xb1, 0x1e, 0xb6, 0xa9, 0x0d,
+ 0xd5, 0x73, 0xd9, 0x14, 0x4f, 0xb0, 0x0f, 0x6d, 0x6a, 0xe9, 0x4c, 0xed, 0x56, 0xac, 0x87, 0x7a, 0x87, 0xb1,
+ 0xe6, 0x98, 0x13, 0x10, 0xbd, 0x05, 0x9b, 0xc6, 0x56, 0xf5, 0x5e, 0x9c, 0xdc, 0x92, 0x9e, 0xa5, 0x96, 0x09,
+ 0x6d, 0x9d, 0x07, 0x31, 0xac, 0xa0, 0x87, 0x43, 0x0e, 0x3f, 0x9d, 0xd5, 0x1a, 0x87, 0x89, 0xa2, 0x68, 0x7f,
+ 0xfa, 0xdb, 0x3c, 0x74, 0x06, 0x3d, 0xdb, 0xe7, 0x8e, 0xff, 0x46, 0x05, 0x57, 0xe2, 0xdd, 0x12, 0x97, 0x9e,
+ 0xa6, 0x1e, 0x3f, 0x54, 0x2c, 0xbf, 0x1c, 0x1a, 0xb0, 0xb8, 0x4f, 0x4e, 0x35, 0xcd, 0x3a, 0xfd, 0x0b, 0x1f,
+ 0x50, 0x49, 0x9f, 0x13, 0xd7, 0xf8, 0xee, 0x41, 0x77, 0x6c, 0xe5, 0xbe, 0x3a, 0xdf, 0xab, 0xf1, 0x9c, 0x27,
+ 0x42, 0xa7, 0x90, 0x68, 0x44, 0xee, 0x69, 0x7c, 0x24, 0xb4, 0x3b, 0x92, 0xfe, 0xaa, 0x6d, 0x1a, 0x36, 0x81,
+ 0x36, 0x4c, 0x17, 0xc6, 0xa1, 0xe1, 0x8d, 0xe6, 0xb7, 0x56, 0x61, 0xd5, 0xd8, 0x9d, 0x14, 0x11, 0xae, 0x9a,
+ 0x0f, 0x1d, 0x53, 0x74, 0xa0, 0x46, 0x47, 0xe1, 0x32, 0x78, 0x9a, 0x5b, 0x96, 0xf8, 0x4c, 0x5d, 0x6a, 0x23,
+ 0x31, 0x3e, 0x89, 0xe8, 0x30, 0xd4, 0x32, 0x84, 0xda, 0x2b, 0x6c, 0x13, 0x6c, 0x72, 0xe2, 0x3d, 0x1a, 0x8a,
+ 0x7d, 0x23, 0xed, 0x07, 0x24, 0x7f, 0xe9, 0xd9, 0x46, 0x15, 0xad, 0xcd, 0x7b, 0x39, 0x26, 0x8d, 0x56, 0xa1,
+ 0xcf, 0xc8, 0x10, 0x9d, 0x95, 0x0a, 0x41, 0x9f, 0x97, 0x93, 0xd5, 0xc1, 0xb2, 0x3d, 0xd2, 0xd1, 0xac, 0xce,
+ 0x7e, 0xae, 0x83, 0x76, 0xc6, 0x19, 0x35, 0x6b, 0x3e, 0xcf, 0xee, 0xcb, 0x7f, 0xd8, 0x5c, 0x17, 0x2e, 0xae,
+ 0xb2, 0x06, 0xd2, 0xd8, 0x3a, 0xdb, 0x14, 0xb9, 0x7b, 0x27, 0x1b, 0x4b, 0x44, 0x9e, 0xde, 0xff, 0xa5, 0x47,
+ 0x72, 0x3b, 0xb0, 0xa8, 0x27, 0xde, 0xf1, 0x21, 0x47, 0xc6, 0xa1, 0x2c, 0xb6, 0x19, 0x09, 0x29, 0xed, 0xa0,
+ 0xa9, 0x49, 0x95, 0x09, 0x39, 0xaf, 0x3a, 0xbc, 0x7e, 0xee, 0x42, 0x70, 0xdb, 0xe9, 0x78, 0xfc, 0x3f, 0x8d,
+ 0xb6, 0x8b, 0x49, 0x6e, 0xf7, 0x01, 0x32, 0x7c, 0xee, 0x55, 0x4a, 0xc8, 0x15, 0x62, 0x66, 0x23, 0x6d, 0xdb,
+ 0xb4, 0x18, 0x80, 0x3d, 0x26, 0x85, 0x0a, 0xf5, 0xca, 0xe5, 0x95, 0xf8, 0x88, 0x01, 0x22, 0x5d, 0x03, 0x0d,
+ 0x41, 0x08, 0xf0, 0x30, 0x35, 0x28, 0xcf, 0xc2, 0x73, 0xcd, 0xb1, 0x3e, 0xb3, 0xb6, 0x29, 0x03, 0xe4, 0x72,
+ 0xb6, 0x09, 0x46, 0x0d, 0xe3, 0x32, 0x3e, 0x2a, 0xab, 0x8e, 0x96, 0xa4, 0x21, 0x37, 0x99, 0x94, 0xda, 0x08,
+ 0xd4, 0x44, 0x9f, 0xfc, 0xdf, 0x5e, 0x77, 0xe0, 0x82, 0xda, 0xff, 0x84, 0xfe, 0x3c, 0xf6, 0x1b, 0x95, 0x5e,
+ 0x3c, 0x83, 0x6d, 0xb0, 0xdb, 0xea, 0xcd, 0x72, 0xa0, 0x28, 0x93, 0xd9, 0x2e, 0xfe, 0xd1, 0x37, 0xd2, 0xcc,
+ 0xe9, 0xc3, 0x6a, 0x0e, 0x15, 0x1a, 0x24, 0xae, 0x50, 0x66, 0x0f, 0xec, 0x10, 0x8e, 0x8d, 0x3a, 0xbd, 0x53,
+ 0x72, 0x33, 0x38, 0xc7, 0x0f, 0x09, 0x17, 0xe9, 0x8d, 0xcd, 0x2d, 0xff, 0xde, 0xed, 0x3c, 0x4a, 0x1f, 0x72,
+ 0x7a, 0x0a, 0xbb, 0xb7, 0xcb, 0xba, 0x94, 0x18, 0x23, 0xac, 0x8b, 0x37, 0x6a, 0x98, 0xaf, 0x60, 0x05, 0xf6,
+ 0x16, 0xc7, 0x31, 0x1e, 0x2f, 0x3f, 0xc6, 0xf1, 0x60, 0x26, 0x2a, 0x02, 0x10, 0x62, 0xe6, 0x12, 0x2b, 0x40,
+ 0xfe, 0x41, 0x48, 0xb1, 0xb4, 0x84, 0x75, 0x95, 0x06, 0xbe, 0x86, 0x20, 0x64, 0xb5, 0x78, 0x54, 0x22, 0x58,
+ 0x01, 0x2b, 0x09, 0x61, 0xdb, 0x40, 0x7c, 0xc2, 0xb1, 0x62, 0x37, 0x6a, 0x30, 0x88, 0xf0, 0x8e, 0x81, 0x71,
+ 0x5b, 0x99, 0x85, 0xf1, 0xf4, 0xe0, 0xce, 0x29, 0x76, 0x3c, 0x44, 0x27, 0xd2, 0x16, 0x38, 0x45, 0xe5, 0xb3,
+ 0x6d, 0xf2, 0xda, 0x93, 0x65, 0xa0, 0x4e, 0x99, 0xa3, 0x8f, 0x1c, 0x7e, 0xcb, 0xd6, 0xa3, 0xd4, 0x44, 0x79,
+ 0xb9, 0xeb, 0x0d, 0x55, 0x63, 0x9c, 0xce, 0x37, 0x4d, 0xd5, 0x5c, 0xd1, 0xad, 0x9e, 0xac, 0x27, 0xd3, 0xd3,
+ 0x52, 0x6e, 0x01, 0x30, 0x47, 0x43, 0x18, 0x9a, 0x5f, 0x51, 0x39, 0xa2, 0xbf, 0x53, 0x05, 0x8b, 0x30, 0x66,
+ 0x6b, 0xc2, 0xdb, 0x44, 0xe4, 0x4e, 0x67, 0xa4, 0xb5, 0xcf, 0x1b, 0x5b, 0xac, 0x65, 0xbf, 0x31, 0x4f, 0x99,
+ 0xa3, 0x73, 0xcd, 0x8a, 0x1d, 0x41, 0x52, 0xe8, 0x23, 0x75, 0x2f, 0x1e, 0xb4, 0x8d, 0x9e, 0x15, 0xe3, 0x11,
+ 0x9f, 0xbd, 0xea, 0x53, 0xce, 0x7b, 0xe4, 0xd9, 0x0c, 0xe9, 0x31, 0xb1, 0x4d, 0xd5, 0x89, 0x5b, 0x4b, 0x72,
+ 0x78, 0x4f, 0xc2, 0x2e, 0x23, 0xd7, 0xba, 0xf4, 0xbd, 0x12, 0x34, 0xfd, 0x8d, 0x6c, 0x36, 0xff, 0x81, 0x62,
+ 0x9f, 0x7a, 0x2e, 0xf9, 0xd8, 0x5c, 0x35, 0x50, 0x0b, 0x4b, 0x6f, 0x95, 0x7e, 0xae, 0xce, 0x00, 0x0c, 0x05,
+ 0x1f, 0x45, 0x0e, 0xa3, 0x7b, 0x71, 0x00, 0x89, 0x78, 0x90, 0xeb, 0xcd, 0xa0, 0x30, 0x54, 0xaa, 0x1d, 0x40,
+ 0x6b, 0xa7, 0x38, 0x7f, 0xaf, 0x2a, 0x52, 0xd4, 0x90, 0xb3, 0x43, 0x0e, 0x15, 0xd5, 0xf1, 0x87, 0xe9, 0x81,
+ 0x3d, 0x46, 0x9b, 0x07, 0xad, 0xce, 0x03, 0x4a, 0x58, 0x49, 0x4c, 0x7b, 0x17, 0x27, 0x0c, 0xc9, 0xca, 0xb0,
+ 0x5b, 0x0d, 0xaf, 0x3a, 0x32, 0xf4, 0x0f, 0x74, 0x90, 0xca, 0xb0, 0xd2, 0x35, 0x71, 0xf0, 0x78, 0xd4, 0xa1,
+ 0xfe, 0x5c, 0x69, 0x1f, 0xc0, 0x6e, 0xb6, 0x67, 0x1f, 0xc7, 0x53, 0xd3, 0x8f, 0x83, 0xcc, 0xad, 0xb3, 0xff,
+ 0x4a, 0x3c, 0x06, 0x43, 0xff, 0x2b, 0x1a, 0x67, 0xe2, 0x10, 0x89, 0x91, 0xa7, 0x8b, 0x52, 0xb1, 0xaa, 0x0e,
+ 0xd2, 0x57, 0x6b, 0x19, 0x20, 0x8c, 0xc5, 0x3f, 0x96, 0x58, 0xd8, 0x92, 0x59, 0x78, 0x64, 0xf5, 0xba, 0x2d,
+ 0x9c, 0x93, 0xed, 0x93, 0x8c, 0x37, 0x41, 0xe3, 0x33, 0xe4, 0x89, 0xcb, 0x91, 0x60, 0xbe, 0x74, 0xce, 0x7f,
+ 0x10, 0x19, 0xd2, 0x7b, 0x4d, 0x2d, 0x3c, 0x0f, 0x6c, 0xc1, 0x46, 0xf6, 0xb8, 0xb8, 0x5f, 0x0c, 0x18, 0x7a,
+ 0xed, 0x3c, 0x68, 0x44, 0xb7, 0x22, 0xd6, 0x98, 0x53, 0xec, 0x29, 0x44, 0xe6, 0x34, 0x0e, 0x67, 0xd0, 0x79,
+ 0x16, 0x20, 0x7a, 0xc5, 0x6d, 0xa1, 0xe3, 0xcd, 0xb5, 0x90, 0xdb, 0x52, 0xc7, 0x1d, 0x67, 0x97, 0xba, 0xb2,
+ 0x69, 0x68, 0x7c, 0x52, 0x83, 0xf2, 0xa0, 0x69, 0x89, 0x7f, 0xa0, 0x1a, 0x70, 0x54, 0x19, 0x8c, 0xbf, 0x2f,
+ 0x9d, 0x35, 0x80, 0x56, 0x12, 0x7e, 0x85, 0xa2, 0x08, 0xa9, 0x9f, 0x8e, 0xb1, 0x46, 0x60, 0xaf, 0x8e, 0x0a,
+ 0x1b, 0x0c, 0x94, 0xcd, 0x4e, 0x3d, 0x2d, 0x7d, 0x46, 0x3c, 0x06, 0xbc, 0x0b, 0xaf, 0x69, 0x6b, 0xd7, 0xc4,
+ 0x36, 0x4d, 0x1e, 0x52, 0xf9, 0x46, 0xd1, 0x5a, 0x3b, 0x18, 0x09, 0x57, 0x73, 0x47, 0xe9, 0xdd, 0xed, 0xa2,
+ 0xdc, 0x48, 0x10, 0x89, 0x01, 0x82, 0xac, 0xec, 0x3f, 0xad, 0xc0, 0xdd, 0x31, 0xcb, 0x3b, 0x50, 0x5c, 0x94,
+ 0x69, 0x48, 0xad, 0x5a, 0xa2, 0x64, 0x64, 0x82, 0x11, 0x6d, 0xad, 0xe7, 0x63, 0x1c, 0x98, 0x9f, 0xf5, 0xf3,
+ 0x1c, 0x2a, 0x8f, 0x4a, 0x0a, 0x9d, 0xa1, 0x8d, 0x04, 0x0d, 0x74, 0x95, 0x1b, 0x14, 0xd9, 0xa2, 0xe6, 0xa4,
+ 0x3a, 0x83, 0xc3, 0xc2, 0x35, 0x1a, 0xe3, 0x24, 0x0a, 0x0b, 0x05, 0xd3, 0xc0, 0x69, 0xa1, 0xdc, 0x88, 0x67,
+ 0x8f, 0xcb, 0xba, 0xd6, 0xa8, 0xee, 0x5f, 0xd5, 0x9f, 0xff, 0xc9, 0xbb, 0xe1, 0x6d, 0xb8, 0xa4, 0x61, 0x29,
+ 0xcf, 0x4a, 0x25, 0x9a, 0xa4, 0xac, 0xe3, 0x0a, 0x6a, 0xb3, 0x7c, 0xeb, 0x26, 0x26, 0xa2, 0x11, 0x16, 0x09,
+ 0xfb, 0x82, 0x39, 0x73, 0xac, 0xce, 0x2c, 0x8b, 0x1b, 0x64, 0xf3, 0x39, 0x2f, 0xf6, 0xc4, 0xcf, 0x4f, 0xfc,
+ 0x88, 0xdd, 0xfa, 0xd7, 0x20, 0x17, 0x40, 0x6d, 0x05, 0xdb, 0x75, 0xbf, 0x7c, 0x2f, 0xb0, 0x76, 0x4c, 0xc4,
+ 0xc7, 0x06, 0xac, 0x60, 0x54, 0x75, 0x2b, 0x65, 0xf3, 0x40, 0x89, 0x17, 0xe6, 0xa3, 0xd3, 0x8d, 0x53, 0xd8,
+ 0xf2, 0x34, 0x92, 0xb1, 0xc0, 0x81, 0xb2, 0xb4, 0xdf, 0x06, 0x09, 0xb4, 0xcf, 0x02, 0x46, 0x13, 0x7b, 0xbf,
+ 0xdb, 0xdc, 0xe1, 0x93, 0xcd, 0x54, 0x99, 0x4c, 0x40, 0xe8, 0x8b, 0x48, 0xa9, 0x04, 0xc5, 0x6c, 0xd3, 0x3f,
+ 0x9b, 0x7c, 0xe5, 0x8b, 0xd7, 0x14, 0xbc, 0xdb, 0xe6, 0x23, 0x38, 0xd5, 0x3f, 0x17, 0x5c, 0x13, 0x4f, 0x4f,
+ 0x5d, 0xd3, 0x9a, 0xbc, 0xfc, 0xa9, 0xcb, 0xe3, 0x8c, 0x1f, 0x3e, 0xb1, 0x7d, 0x2e, 0xb1, 0xe5, 0x78, 0x34,
+ 0xcd, 0xdf, 0xdb, 0x05, 0x12, 0xc5, 0xc3, 0xf2, 0x49, 0xf4, 0x34, 0xee, 0x0c, 0xa7, 0x08, 0x07, 0x75, 0xdf,
+ 0xc5, 0x0c, 0x73, 0xce, 0xc2, 0xd4, 0x4c, 0x82, 0x56, 0x5b, 0xe7, 0xf8, 0xe3, 0xe5, 0x00, 0xaa, 0x67, 0xa9,
+ 0x71, 0xf8, 0x2d, 0x4e, 0xc4, 0xc5, 0x1a, 0x96, 0x92, 0xf6, 0x9d, 0xd6, 0xce, 0x52, 0x6e, 0x01, 0x77, 0x47,
+ 0x29, 0xaf, 0x04, 0x56, 0x23, 0x63, 0x84, 0x16, 0xb9, 0x7b, 0xc5, 0x25, 0x7b, 0x7a, 0x43, 0xb2, 0x0b, 0x16,
+ 0xa9, 0x62, 0x30, 0xb7, 0x56, 0x77, 0x77, 0xaa, 0x44, 0x2f, 0x9a, 0x18, 0x6a, 0x16, 0xa8, 0x39, 0xd9, 0xf3,
+ 0xc4, 0x8b, 0x17, 0x65, 0x1b, 0x43, 0xc5, 0x36, 0x82, 0x5d, 0xa1, 0x60, 0x57, 0x21, 0xdd, 0x15, 0x62, 0x9a,
+ 0xa3, 0x90, 0x51, 0x8b, 0xbb, 0x70, 0xe3, 0x95, 0xea, 0x37, 0x72, 0x4e, 0xd0, 0x22, 0x15, 0xd7, 0xdb, 0x00,
+ 0x63, 0xaf, 0x41, 0x9b, 0xd5, 0x90, 0x6b, 0x2c, 0x6f, 0xe1, 0xbe, 0x2f, 0xf4, 0xee, 0xd1, 0xbe, 0x39, 0xae,
+ 0x3b, 0x25, 0x23, 0x22, 0x03, 0x80, 0x85, 0x7a, 0xd9, 0x31, 0xb6, 0x31, 0x9b, 0x03, 0xd6, 0x28, 0xa6, 0xdc,
+ 0xf4, 0x2a, 0x72, 0x96, 0x70, 0xce, 0x4a, 0x2b, 0xfc, 0xdc, 0xf3, 0x58, 0x20, 0x8e, 0xee, 0x5e, 0xbb, 0x64,
+ 0x8b, 0x58, 0x04, 0xca, 0x62, 0x4d, 0x36, 0xa9, 0x97, 0x87, 0xa7, 0xf1, 0x19, 0x91, 0xa4, 0xd0, 0x3e, 0xf4,
+ 0x21, 0x1b, 0x1a, 0xe5, 0x4a, 0x04, 0x65, 0x63, 0xdd, 0xc6, 0x9d, 0x47, 0x70, 0x11, 0x40, 0x45, 0x78, 0xed,
+ 0x14, 0xf6, 0x7d, 0x64, 0xa9, 0x83, 0x0f, 0x3c, 0xec, 0x72, 0xf2, 0xa3, 0xd4, 0xcf, 0x63, 0x29, 0xf0, 0x6c,
+ 0xe3, 0xde, 0xbe, 0x6e, 0xd6, 0x74, 0x35, 0x5c, 0x72, 0xbc, 0x0e, 0x19, 0x7c, 0xd8, 0x17, 0x1b, 0x42, 0x3f,
+ 0x75, 0xd4, 0x69, 0x52, 0xc8, 0x8f, 0xa0, 0xfc, 0x50, 0x1d, 0x6d, 0x5e, 0x1d, 0x9a, 0x80, 0xd7, 0xf6, 0x60,
+ 0x96, 0x01, 0x38, 0xbb
};
// context = simple_context_zh
diff --git a/demo/mcu/imxrt1050/imxrt1050-evkb/source/main.c b/demo/mcu/imxrt1050/imxrt1050-evkb/source/main.c
index be530df3c..6d8d961ba 100644
--- a/demo/mcu/imxrt1050/imxrt1050-evkb/source/main.c
+++ b/demo/mcu/imxrt1050/imxrt1050-evkb/source/main.c
@@ -53,9 +53,15 @@ static void inference_callback(pv_inference_t *inference) {
}
static void error_handler(void) {
+ printf("\r\n");
while(true);
}
+void print_error_message(char **message_stack, int32_t message_stack_depth) {
+ for (int32_t i = 0; i < message_stack_depth; i++) {
+ printf("[%ld] %s\n", i, message_stack[i]);
+ }
+}
int main(void) {
@@ -90,6 +96,10 @@ int main(void) {
pv_picovoice_t *handle = NULL;
+ char **message_stack = NULL;
+ int32_t message_stack_depth = 0;
+ pv_status_t error_status;
+
status = pv_picovoice_init(
ACCESS_KEY,
MEMORY_BUFFER_SIZE,
@@ -107,6 +117,16 @@ int main(void) {
&handle);
if (status != PV_STATUS_SUCCESS) {
printf("Picovoice init failed with '%s'", pv_status_to_string(status));
+
+ error_status = pv_get_error_stack(&message_stack, &message_stack_depth);
+ if (error_status != PV_STATUS_SUCCESS) {
+ printf("Unable to get Picovoice error state with '%s':\n", pv_status_to_string(error_status));
+ error_handler();
+ }
+
+ print_error_message(message_stack, message_stack_depth);
+ pv_free_error_stack(message_stack);
+
error_handler();
}
diff --git a/demo/mcu/stm32f407/stm32f407g-disc1/.cproject b/demo/mcu/stm32f407/stm32f407g-disc1/.cproject
index 2acf6d7df..d4e64dd0a 100644
--- a/demo/mcu/stm32f407/stm32f407g-disc1/.cproject
+++ b/demo/mcu/stm32f407/stm32f407g-disc1/.cproject
@@ -1,8 +1,8 @@
-
-
+
+
@@ -14,28 +14,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -93,8 +93,8 @@
-
-
+
+
@@ -106,28 +106,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -185,8 +185,8 @@
-
-
+
+
@@ -198,28 +198,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -277,8 +277,8 @@
-
-
+
+
@@ -290,28 +290,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -369,8 +369,8 @@
-
-
+
+
@@ -382,28 +382,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -461,8 +461,8 @@
-
-
+
+
@@ -474,28 +474,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -553,8 +553,8 @@
-
-
+
+
@@ -566,28 +566,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -645,8 +645,8 @@
-
-
+
+
@@ -658,28 +658,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -737,8 +737,8 @@
-
-
+
+
@@ -750,28 +750,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -829,8 +829,8 @@
-
-
+
+
@@ -842,28 +842,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -921,8 +921,8 @@
-
-
+
+
@@ -934,28 +934,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -1013,8 +1013,8 @@
-
-
+
+
@@ -1026,28 +1026,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -1105,8 +1105,8 @@
-
-
+
+
@@ -1118,28 +1118,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -1197,8 +1197,8 @@
-
-
+
+
@@ -1210,28 +1210,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -1289,8 +1289,8 @@
-
-
+
+
@@ -1302,28 +1302,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -1381,8 +1381,8 @@
-
-
+
+
@@ -1394,28 +1394,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
+
-
-
+
+
-
-
+
-
@@ -1473,6 +1473,98 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/demo/mcu/stm32f407/stm32f407g-disc1/Inc/pv_params.h b/demo/mcu/stm32f407/stm32f407g-disc1/Inc/pv_params.h
index 7baaa9aec..3f04ec8e7 100644
--- a/demo/mcu/stm32f407/stm32f407g-disc1/Inc/pv_params.h
+++ b/demo/mcu/stm32f407/stm32f407g-disc1/Inc/pv_params.h
@@ -1,6 +1,6 @@
/*
- Copyright 2020-2022 Picovoice Inc.
+ Copyright 2020-2023 Picovoice Inc.
You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
file accompanying this source.
@@ -16,510 +16,334 @@
#include
-#if defined(__PV_LANGUAGE_ENGLISH__)
+#if defined(__PV_LANGUAGE_ARABIC__)
-// wake-word = picovoice
+// wake-word = مرحبا الكمبيوتر
static const uint8_t KEYWORD_ARRAY[] = {
- 0x4b, 0x5e, 0x3b, 0x23, 0xa2, 0xbf, 0x43, 0xb1, 0x35, 0x08, 0x43, 0x8f, 0x19, 0x49, 0x67, 0x6e, 0xa9, 0xa1,
- 0xe8, 0xaa, 0x1e, 0x59, 0x2e, 0xc8, 0x0e, 0x94, 0xa2, 0xac, 0x10, 0x6b, 0xe2, 0xa1, 0xb5, 0x4c, 0xe4, 0x15,
- 0x3a, 0xad, 0x76, 0xa8, 0xd9, 0x2b, 0xae, 0xc3, 0x07, 0x87, 0x18, 0xdb, 0xf0, 0x2f, 0x84, 0xdc, 0xfd, 0xe3,
- 0x48, 0x41, 0x27, 0xb4, 0x5f, 0x52, 0x9f, 0x3d, 0x3a, 0xa5, 0xd7, 0x3a, 0x1b, 0xf6, 0x29, 0x5b, 0xbe, 0x8e,
- 0x91, 0x30, 0x17, 0x5c, 0x36, 0x38, 0x1f, 0x20, 0x43, 0x3e, 0x53, 0x3a, 0xd3, 0x6d, 0x47, 0xc5, 0x69, 0xa3,
- 0xff, 0x4a, 0x38, 0x6f, 0x40, 0x5a, 0x8e, 0x49, 0xe1, 0x27, 0xb5, 0xa9, 0xf8, 0xcf, 0xc3, 0x40, 0x18, 0x55,
- 0x7f, 0x7e, 0x9c, 0x9a, 0xbe, 0x26, 0xe6, 0x01, 0xe3, 0x5e, 0x2b, 0x8c, 0x63, 0xb4, 0xc1, 0x73, 0xbc, 0x05,
- 0x2a, 0xc2, 0x65, 0x59, 0x88, 0x65, 0x04, 0xc4, 0xa1, 0x3d, 0x35, 0x4e, 0xf0, 0xe0, 0xa5, 0x32, 0x07, 0xd8,
- 0x1d, 0x47, 0x13, 0x56, 0xb7, 0x21, 0x2a, 0xd8, 0xf4, 0x1c, 0x1b, 0x6b, 0xd5, 0xf0, 0x9b, 0xdf, 0x47, 0xb8,
- 0xea, 0x0e, 0x96, 0xea, 0x16, 0xdc, 0x42, 0x1e, 0xbd, 0x9c, 0xc1, 0xff, 0x88, 0xc2, 0xee, 0xdc, 0x6e, 0x01,
- 0x98, 0xbc, 0x0e, 0xd8, 0xd0, 0x6e, 0xdb, 0x60, 0xad, 0x5d, 0x6e, 0xa0, 0xe9, 0x53, 0x83, 0xf0, 0x6e, 0xed,
- 0x20, 0xaf, 0x21, 0xa5, 0x7b, 0x24, 0x39, 0x43, 0xe7, 0x6b, 0xdb, 0x3a, 0x03, 0x70, 0xbb, 0xc5, 0x47, 0xf1,
- 0xed, 0xcc, 0xff, 0x43, 0xeb, 0xcb, 0x95, 0xe1, 0x74, 0x91, 0x16, 0xbb, 0xe0, 0xa6, 0x51, 0x91, 0x63, 0x61,
- 0x49, 0x7b, 0x8d, 0xc0, 0x4c, 0x68, 0x81, 0x09, 0x6e, 0x1a, 0xb8, 0x8f, 0x43, 0x8a, 0x91, 0xe8, 0xdb, 0x48,
- 0xce, 0x46, 0xca, 0x45, 0x84, 0xd0, 0xa0, 0x96, 0x12, 0x29, 0xbc, 0x2e, 0xfc, 0xd4, 0x49, 0xfe, 0xd3, 0xa7,
- 0x40, 0x76, 0x7b, 0xa9, 0x48, 0x16, 0x50, 0x64, 0xe2, 0xc8, 0x35, 0xa2, 0xba, 0x37, 0xec, 0xa0, 0xa8, 0x5b,
- 0xea, 0xc8, 0x63, 0x17, 0xa9, 0x67, 0x74, 0x3b, 0x39, 0xd8, 0x25, 0xe3, 0x00, 0xd3, 0x5d, 0xf3, 0x10, 0x82,
- 0x0e, 0xf7, 0x75, 0x3e, 0x95, 0xd6, 0x34, 0xbd, 0xf3, 0xc3, 0x6c, 0x55, 0xba, 0x25, 0x71, 0x70, 0x4e, 0x25,
- 0xe2, 0x46, 0x1d, 0x70, 0x31, 0xab, 0xca, 0x8d, 0xa1, 0x9d, 0xbd, 0xf1, 0x8d, 0xea, 0x4d, 0xbc, 0x0e, 0x57,
- 0xd8, 0x6d, 0xd7, 0xf5, 0xf8, 0xf5, 0x1d, 0xf0, 0x00, 0x4a, 0xa6, 0xdf, 0xeb, 0xec, 0x85, 0x84, 0x67, 0x7e,
- 0x50, 0x60, 0x07, 0x9b, 0xb9, 0xd9, 0x6f, 0x13, 0xef, 0xf6, 0x6e, 0x47, 0xbf, 0xc9, 0xbc, 0x53, 0x4b, 0x2b,
- 0x64, 0xbe, 0xb6, 0xa8, 0x3d, 0x4e, 0xba, 0x1d, 0xa4, 0x55, 0x4c, 0xd2, 0xce, 0x5a, 0x0e, 0x0e, 0xd9, 0xde,
- 0x23, 0x2a, 0x66, 0x13, 0x2f, 0x17, 0x1a, 0xc0, 0x2b, 0x20, 0xfd, 0x95, 0x9d, 0x79, 0x59, 0x46, 0x9a, 0x4d,
- 0x44, 0x9b, 0xcb, 0x5c, 0x3f, 0x24, 0x8c, 0x56, 0x0d, 0x67, 0xdb, 0x40, 0x73, 0x28, 0x38, 0x52, 0x7d, 0x40,
- 0xce, 0x43, 0x1b, 0xe7, 0xcd, 0xef, 0xc9, 0x8d, 0x4b, 0xd7, 0x7d, 0xc3, 0xbf, 0x47, 0xd1, 0x7e, 0x5a, 0x55,
- 0x73, 0x9d, 0x23, 0x09, 0x26, 0xde, 0x53, 0xc9, 0x4c, 0x95, 0x4d, 0x25, 0x35, 0xe2, 0x4e, 0xaa, 0xcf, 0x0a,
- 0x4c, 0xe7, 0xa7, 0x9c, 0xa6, 0x02, 0x81, 0xf9, 0xe4, 0x8a, 0x1c, 0xa5, 0xe5, 0x4c, 0xb9, 0x25, 0x5b, 0xa3,
- 0xa0, 0xfe, 0x44, 0xac, 0x76, 0x2c, 0x89, 0xc7, 0x70, 0x1a, 0x54, 0xc8, 0x8b, 0x7e, 0x91, 0xf8, 0xb9, 0xdc,
- 0x01, 0xce, 0x77, 0x23, 0xa2, 0x36, 0x1d, 0xd4, 0xb0, 0xf4, 0x93, 0xe1, 0xc0, 0x8e, 0xaa, 0x20, 0x9e, 0xd0,
- 0x61, 0x0a, 0xee, 0x36, 0x3d, 0x60, 0x4e, 0x84, 0x3c, 0xb4, 0xd0, 0xcd, 0x2f, 0xfa, 0xba, 0xd3, 0x2f, 0x84,
- 0x2e, 0xe4, 0x0b, 0xe5, 0xfd, 0xcb, 0x1c, 0xb9, 0xfe, 0x31, 0xa3, 0x23, 0xf6, 0x30, 0xbf, 0x63, 0x92, 0xd2,
- 0x91, 0x04, 0xdc, 0xc9, 0x38, 0x1f, 0xd2, 0x93, 0x5a, 0xbd, 0x86, 0x01, 0xc7, 0xe2, 0xc6, 0xeb, 0x74, 0xa4,
- 0x4a, 0xf5, 0xdd, 0x08, 0xa5, 0xa5, 0x0b, 0x18, 0x61, 0x9b, 0x06, 0x18, 0xbc, 0xcf, 0x30, 0xbb, 0x4b, 0xf3,
- 0x4d, 0xb4, 0x3a, 0x87, 0xf1, 0x51, 0xc5, 0x39, 0x37, 0x64, 0x73, 0xca, 0xc1, 0x36, 0xb6, 0x6b, 0x92, 0x17,
- 0x8f, 0x38, 0x05, 0x6b, 0xe6, 0x08, 0xc2, 0xcb, 0xa5, 0xb3, 0xcb, 0x93, 0x44, 0x25, 0x5e, 0xc6, 0xc6, 0xf9,
- 0x70, 0x8b, 0x16, 0xc8, 0x40, 0x4a, 0x9a, 0x51, 0x2b, 0x15, 0xb6, 0x66, 0x9d, 0xbb, 0x1e, 0xef, 0x0a, 0x3a,
- 0x67, 0x02, 0xae, 0x86, 0x0d, 0xa9, 0x31, 0xdf, 0xeb, 0x5d, 0xee, 0xfe, 0xe6, 0xb7, 0xf4, 0xa6, 0x53, 0xe3,
- 0x6a, 0x8a, 0x3e, 0x08, 0xc4, 0x3e, 0x05, 0x24, 0xf6, 0xae, 0xc8, 0x42, 0x68, 0xd4, 0x55, 0xfe, 0xd4, 0x4d,
- 0x48, 0x7c, 0x58, 0x74, 0xf2, 0x21, 0x76, 0xd0, 0xf8, 0xd8, 0x86, 0xc6, 0x77, 0x83, 0x80, 0x1d, 0x38, 0x6b,
- 0x11, 0xe1, 0xbb, 0xd6, 0x6d, 0xaf, 0xc2, 0x01, 0xbc, 0x4e, 0xb7, 0x6f, 0x04, 0xe3, 0xac, 0x49, 0xbd, 0x40,
- 0xf9, 0xd8, 0xa9, 0xcf, 0xe4, 0x77, 0x0a, 0xeb, 0x77, 0xed, 0x8c, 0xff, 0xf1, 0x0e, 0x9f, 0xff, 0xf4, 0x23,
- 0xc2, 0xc7, 0xc5, 0xee, 0x52, 0xaa, 0x09, 0x78, 0x6b, 0x4b, 0x8a, 0xc2, 0x51, 0x98, 0x52, 0x68, 0xa9, 0x0e,
- 0xbb, 0xe6, 0xaa, 0x2d, 0xe9, 0xd1, 0xd7, 0x03, 0x37, 0x27, 0xfd, 0xd2, 0x0c, 0xe1, 0xe7, 0x25, 0xdd, 0x11,
- 0x43, 0x01, 0xdc, 0x1d, 0x16, 0x9f, 0x8f, 0x46, 0x7d, 0xcf, 0xe8, 0x33, 0x49, 0x0f, 0x9f, 0x14, 0xa7, 0xed,
- 0x14, 0x29, 0xc0, 0x3a, 0x1b, 0x97, 0x52, 0xfe, 0x9c, 0xc8, 0x78, 0x1c, 0x46, 0x7b, 0x8b, 0xdd, 0x14, 0x19,
- 0xaa, 0x97, 0x94, 0xe8, 0xe7, 0x3e, 0xab, 0x02, 0xf3, 0xef, 0xb1, 0x42, 0xe0, 0x54, 0x65, 0x81, 0x60, 0x65,
- 0x10, 0x25, 0x9a, 0xae, 0xec, 0x0c, 0x45, 0xd9, 0xaf, 0x91, 0x1d, 0xf1, 0xfd, 0xe0, 0xa3, 0x29, 0x0e, 0xb3,
- 0x25, 0xa2, 0x35, 0x3b, 0xe9, 0xaf, 0xc5, 0x44, 0x52, 0x2f, 0xe3, 0x19, 0x2c, 0xe5, 0x05, 0xa9, 0x18, 0x51,
- 0xe1, 0xfa, 0x4e, 0x90, 0xdc, 0xbc, 0x3b, 0xb7, 0x0d, 0xf0, 0xfc, 0x69, 0x09, 0x7e, 0xbb, 0x35, 0xc8, 0xc2,
- 0x74, 0x60, 0x5c, 0x35, 0xfd, 0xef, 0x9c, 0x5f, 0x54, 0xf7, 0x08, 0x33, 0x8e, 0x8d, 0x5e, 0xec, 0x9f, 0xc6,
- 0x90, 0xd1, 0x44, 0xfa, 0xe3, 0x22, 0x82, 0xf7, 0x4f, 0x42, 0xdd, 0xbf, 0x9e, 0xd2, 0x3c, 0x82, 0x54, 0xae,
- 0xfd, 0xbe, 0x92, 0x84, 0x0a, 0x10, 0x6c, 0x99, 0x06, 0x51, 0x24, 0x64, 0xa8, 0x11, 0x08, 0xc2, 0x58, 0x17,
- 0x8f, 0xdf, 0xf2, 0x09, 0x15, 0x2d, 0xce, 0xbe, 0xf5, 0x1e, 0xab, 0x94, 0x75, 0x75, 0x95, 0xd1, 0x87, 0x81,
- 0x7b, 0xaf
+ 0xfd, 0x87, 0xb0, 0xdd, 0x01, 0x99, 0x98, 0x86, 0xbc, 0x0a, 0xe0, 0xf6, 0x65, 0xdd, 0x9e, 0x76, 0x56, 0x0e,
+ 0x62, 0x66, 0xb9, 0xfa, 0x9b, 0x34, 0x34, 0xa6, 0x55, 0x1a, 0xc7, 0xc6, 0xdb, 0x8d, 0x00, 0xd6, 0x1a, 0xe8,
+ 0xf7, 0xd0, 0xcb, 0xf7, 0xf4, 0x26, 0x75, 0x5c, 0x3e, 0xff, 0x2a, 0xfe, 0x29, 0xb2, 0x7f, 0x60, 0x82, 0xff,
+ 0x2d, 0x14, 0x39, 0x17, 0xfe, 0x57, 0x04, 0x75, 0x03, 0x98, 0x97, 0x26, 0x55, 0xbf, 0x25, 0x80, 0x60, 0x5f,
+ 0x00, 0xe5, 0xca, 0xed, 0xc9, 0xa4, 0xf7, 0xb8, 0xd1, 0x51, 0xc0, 0xa4, 0x12, 0x8f, 0x18, 0x88, 0x46, 0x46,
+ 0xd3, 0x70, 0x94, 0x80, 0xcb, 0xf8, 0xc9, 0x40, 0x7c, 0x10, 0x19, 0xb5, 0x09, 0xa0, 0x83, 0x47, 0x47, 0xd8,
+ 0x24, 0x18, 0x6d, 0xec, 0x39, 0xcb, 0x8b, 0x5c, 0x78, 0x4d, 0x8d, 0x8e, 0x2c, 0x06, 0x20, 0x54, 0xbd, 0x6a,
+ 0x94, 0xcf, 0xfd, 0xbe, 0xf5, 0x45, 0x3f, 0x86, 0x3a, 0xf5, 0xed, 0x0a, 0x45, 0xdf, 0xe2, 0xc9, 0x09, 0x36,
+ 0x4d, 0x09, 0x5d, 0xdf, 0x1c, 0x34, 0xee, 0x50, 0x1c, 0xba, 0xf1, 0xc6, 0xc1, 0xf5, 0x56, 0x6b, 0x0e, 0xe2,
+ 0xae, 0x62, 0x89, 0xad, 0x6c, 0x3c, 0xbb, 0x84, 0xb7, 0xf9, 0x55, 0x30, 0x6a, 0x39, 0x84, 0xbb, 0x87, 0x8d,
+ 0xc4, 0x60, 0x99, 0x82, 0x57, 0x73, 0x82, 0x35, 0x71, 0x79, 0x45, 0x53, 0x0c, 0x19, 0x79, 0x50, 0xde, 0x3a,
+ 0x15, 0x02, 0x81, 0xbf, 0xd9, 0x84, 0xbb, 0x4d, 0xed, 0xda, 0x6d, 0xc5, 0xa0, 0x06, 0xad, 0xd7, 0x61, 0x81,
+ 0xde, 0xcd, 0xdb, 0x33, 0x2f, 0x24, 0xf8, 0x0c, 0xe5, 0x28, 0xe8, 0xbb, 0x25, 0x4b, 0x94, 0x7a, 0x55, 0xdc,
+ 0xf2, 0x61, 0x1c, 0xb3, 0xe3, 0xa9, 0xeb, 0x87, 0xe6, 0x26, 0x3b, 0xfd, 0x34, 0x57, 0x2a, 0x1f, 0x0e, 0x70,
+ 0x39, 0x21, 0x0e, 0x36, 0x81, 0x4c, 0xb4, 0xc1, 0xb2, 0xcb, 0xaa, 0x94, 0x36, 0x1f, 0xad, 0x1f, 0x7e, 0x6c,
+ 0xa8, 0x26, 0x3a, 0xb5, 0xbd, 0xe0, 0xa0, 0xc4, 0x29, 0xae, 0x1e, 0xb3, 0xb2, 0x21, 0x56, 0x38, 0x86, 0xb5,
+ 0x41, 0x42, 0xf2, 0x2a, 0x58, 0x64, 0x34, 0xe0, 0xa8, 0x00, 0x12, 0x79, 0x54, 0xd6, 0x1d, 0x86, 0x89, 0xc0,
+ 0x9f, 0x36, 0xac, 0x73, 0xbd, 0xf0, 0x5f, 0x85, 0x84, 0xbb, 0x93, 0x8d, 0x21, 0x9b, 0xea, 0xca, 0x98, 0x4d,
+ 0xd8, 0x5f, 0x0c, 0x8f, 0xf7, 0xf5, 0xc7, 0x2f, 0xc7, 0x45, 0xbf, 0xe9, 0x7d, 0x38, 0x88, 0xad, 0xcc, 0x34,
+ 0x79, 0x4a, 0xf5, 0xf7, 0x4b, 0x3d, 0xe4, 0x12, 0xa4, 0xb4, 0xe2, 0x36, 0xf8, 0xe1, 0xef, 0x93, 0xa3, 0x43,
+ 0x57, 0x26, 0x99, 0x28, 0x90, 0x03, 0x46, 0x33, 0x8d, 0xb9, 0xc5, 0xb5, 0x4e, 0xad, 0xfc, 0xda, 0x9a, 0x6e,
+ 0x1d, 0x5b, 0xf8, 0x93, 0x23, 0x6d, 0x3e, 0x9c, 0xa6, 0xe3, 0x9a, 0x61, 0x89, 0x7e, 0xb1, 0x53, 0x55, 0x92,
+ 0x4f, 0xf8, 0xb2, 0x23, 0xc4, 0xd7, 0x74, 0x49, 0xe4, 0x30, 0x8c, 0xdb, 0xb6, 0xf9, 0x85, 0xff, 0x0e, 0x58,
+ 0x39, 0x51, 0x3e, 0x9c, 0xf4, 0x06, 0x5b, 0x40, 0x85, 0x3a, 0xd9, 0xc9, 0xdd, 0xc0, 0xf8, 0x5f, 0x7a, 0xcd,
+ 0x13, 0x86, 0xdd, 0x28, 0x29, 0x39, 0x6c, 0xad, 0x84, 0x3e, 0xdb, 0xc7, 0x7a, 0x7f, 0x8c, 0x9b, 0x09, 0x3c,
+ 0x62, 0xbd, 0x27, 0xdb, 0x07, 0x27, 0xbd, 0x59, 0x46, 0x79, 0xdb, 0x7c, 0x90, 0xde, 0xc7, 0xf0, 0x99, 0x28,
+ 0x40, 0xf5, 0x2a, 0x20, 0xa9, 0xe6, 0x54, 0xb9, 0x87, 0x74, 0x19, 0xab, 0x09, 0x60, 0x8f, 0xcd, 0xf8, 0x10,
+ 0xda, 0x2d, 0x17, 0x03, 0x96, 0x45, 0x64, 0x5f, 0xd1, 0xec, 0x53, 0xe0, 0x20, 0xa2, 0x09, 0x2d, 0x62, 0x4b,
+ 0xed, 0x5b, 0x6c, 0x1c, 0x71, 0x0c, 0x35, 0x7c, 0x6d, 0x3b, 0x0d, 0x2b, 0x1d, 0xf7, 0xd5, 0x28, 0xd3, 0x17,
+ 0x25, 0x7d, 0xdd, 0x4e, 0x1e, 0xdf, 0x80, 0x20, 0x28, 0x15, 0x2f, 0xdc, 0x12, 0x54, 0x28, 0x54, 0xf8, 0x34,
+ 0x6f, 0x30, 0xd6, 0x93, 0x09, 0x73, 0xde, 0xd7, 0x16, 0x5a, 0x83, 0x28, 0xd1, 0xa6, 0x00, 0xad, 0x78, 0xbc,
+ 0xd0, 0xb8, 0x22, 0x5a, 0x6f, 0xcb, 0xa3, 0x35, 0x55, 0x97, 0xea, 0x10, 0xb3, 0xfd, 0xa4, 0xdb, 0x10, 0xf4,
+ 0x7e, 0x3d, 0x15, 0x50, 0x6a, 0x82, 0x92, 0xba, 0xa6, 0xb6, 0x22, 0x53, 0xef, 0x4f, 0xcc, 0x08, 0x81, 0xbf,
+ 0x91, 0x46, 0x28, 0x8b, 0x1d, 0x94, 0x94, 0xc6, 0x14, 0x3a, 0x71, 0x4f, 0x67, 0x70, 0x55, 0xe0, 0x0a, 0x7c,
+ 0xe9, 0xe9, 0x3e, 0x4e, 0x09, 0xa0, 0xbf, 0x78, 0x70, 0x54, 0x82, 0x1d, 0x95, 0x92, 0x79, 0x9b, 0xad, 0x8c,
+ 0xc7, 0x37, 0x17, 0xfd, 0x2f, 0x5c, 0x59, 0xd2, 0x51, 0x82, 0x38, 0x47, 0xdf, 0x9c, 0x60, 0x82, 0x7b, 0xb1,
+ 0xbe, 0xcf, 0xd2, 0x29, 0xcf, 0x07, 0x49, 0xbb, 0x8e, 0x49, 0x2f, 0x88, 0x74, 0xe0, 0x92, 0x42, 0xde, 0xa9,
+ 0x77, 0xab, 0x3a, 0xec, 0x67, 0x89, 0x8a, 0xe4, 0x40, 0x68, 0x21, 0x2d, 0x7d, 0xa5, 0xfb, 0xec, 0xf7, 0x27,
+ 0x68, 0x4f, 0x6f, 0xb6, 0xa0, 0x35, 0xa1, 0x34, 0x34, 0x83, 0x3d, 0x20, 0xe8, 0xe8, 0x38, 0x57, 0x92, 0xc0,
+ 0x88, 0x3e, 0x62, 0x21, 0xc9, 0x13, 0xd2, 0xcd, 0x84, 0xef, 0x56, 0xb0, 0xb5, 0x8d, 0x33, 0x51, 0xde, 0x8f,
+ 0x35, 0x33, 0x73, 0xe2, 0x8d, 0x6d, 0xee, 0xe1, 0xe4, 0xc8, 0xf5, 0xbd, 0xc8, 0xdc, 0x98, 0x39, 0x72, 0x2e,
+ 0x5a, 0x9d, 0xf3, 0x95, 0x40, 0x88, 0xe8, 0x0a, 0xbe, 0xca, 0x95, 0xd3, 0x88, 0xef, 0xc7, 0x64, 0x35, 0xf5,
+ 0xcf, 0xb7, 0xb0, 0x24, 0xf3, 0x7b, 0x6f, 0x3f, 0xb8, 0x0d, 0x88, 0x23, 0x18, 0xa5, 0x96, 0xf7, 0x0e, 0x7b,
+ 0xbe, 0xb2, 0xfc, 0xf5, 0xdf, 0xa8, 0x02, 0x89, 0xcc, 0xf2, 0xa4, 0x79, 0x28, 0x9a, 0x72, 0x10, 0x0a, 0xae,
+ 0xf2, 0x9a, 0x44, 0xce, 0x15, 0x6f, 0x50, 0x98, 0x7e, 0x9e, 0xe4, 0x15, 0xff, 0x70, 0xc9, 0x43, 0x33, 0x39,
+ 0xbf, 0xc9, 0xc3, 0x6c, 0x26, 0xd4, 0xb8, 0xd4, 0x06, 0x66, 0x30, 0xe6, 0x08, 0x26, 0x63, 0x31, 0x31, 0x31,
+ 0xf7, 0xf1, 0x82, 0x7c, 0x17, 0xeb, 0x6c, 0x17, 0x92, 0x15, 0x6b, 0x31, 0x2d, 0xd1, 0x97, 0x0d, 0xf4, 0x39,
+ 0xae, 0xf6, 0xf1, 0x7e, 0xac, 0x42, 0xa9, 0x7c, 0xe6, 0x77, 0xe6, 0x8e, 0xb2, 0x35, 0x60, 0xd4, 0x17, 0x0d,
+ 0x47, 0xed, 0x86, 0x18, 0x0d, 0x37, 0xba, 0x5b, 0x1c, 0x84, 0x24, 0xcd, 0x39, 0x57, 0x17, 0x04, 0x50, 0x60,
+ 0xe9, 0x87, 0x1c, 0x8b, 0xa6, 0x4f, 0x64, 0x40, 0x8e, 0xad, 0x6f, 0xcf, 0x35, 0x41, 0x72, 0x01, 0xed, 0xb1,
+ 0xa6, 0x39, 0x4a, 0x49, 0xba, 0x12, 0x45, 0x85, 0xee, 0x08, 0x93, 0xef, 0x53, 0x1b, 0x19, 0xd1, 0x33, 0xa5,
+ 0xd8, 0x78, 0xff, 0x6e, 0xff, 0x9f, 0x75, 0x75, 0x14, 0x5c, 0xf8, 0x2f, 0x37, 0x48, 0x45, 0x39, 0x3f, 0x2a,
+ 0xce, 0xe8, 0x76, 0xa4, 0x69, 0x51, 0x12, 0xf4, 0x0d, 0xcc, 0x21, 0xf7, 0x6d, 0x24, 0xbd, 0x20, 0xee, 0x1e,
+ 0x10, 0x1f, 0xbd, 0x69, 0xed, 0xc7, 0x7f, 0x69, 0xb7, 0xa2, 0x5b, 0x59, 0x39, 0xdd, 0x35, 0xdb, 0x30, 0x99,
+ 0x9f, 0x3e, 0xc5, 0x87, 0x8c, 0x88, 0xca, 0x5b, 0x0b, 0xba, 0x6c, 0x0d, 0x87, 0x82, 0x33, 0xc8, 0xdc, 0x8f,
+ 0xb4, 0x5b, 0xc9, 0xf3, 0xb0, 0x50, 0x7c, 0x00, 0xf6, 0xe0, 0xd2, 0xc7, 0xd1, 0x62, 0x85, 0x37, 0x0e, 0xf6,
+ 0x90, 0x4c, 0x9e, 0xca, 0xf1, 0x81, 0x0f, 0x67, 0x04, 0xd2, 0xcb, 0xb8, 0x2e, 0xed, 0x96, 0xbd, 0x19, 0x55,
+ 0xf1, 0x56, 0x7b, 0x48, 0x0b, 0xd4, 0x1d, 0xcb, 0xab, 0x21, 0xba, 0x23, 0x56, 0xd1, 0xe6, 0xb5, 0xa5, 0x4a,
+ 0x01, 0x2b, 0x86, 0xfd, 0xfe, 0x67, 0x7d, 0xd4, 0x69, 0x2d, 0x67, 0x18, 0xad, 0xd2, 0xb4, 0x51, 0x52, 0x5d,
+ 0x9f, 0x44, 0x5b, 0xb3, 0xc5, 0xdf, 0xd8, 0xd5, 0xda, 0x2d, 0xb9, 0xe1, 0x00, 0x63, 0xcf, 0x00, 0xe5, 0x30,
+ 0x3e, 0x98, 0x87, 0x91, 0x54, 0xcc, 0x6a, 0x92, 0x9c, 0x35, 0x14, 0x71, 0x6a, 0xeb, 0xd2, 0x07, 0x2c, 0x01,
+ 0x43, 0xfa, 0x97, 0xe0, 0x0b, 0x8e, 0x23, 0xad, 0x82, 0xd2, 0x45, 0xc4, 0x8e, 0xc9, 0x08, 0xcf, 0xff, 0x98,
+ 0x42, 0x23, 0xde, 0xa4, 0xae, 0x9b, 0x65, 0xc8, 0x11, 0x39, 0xe1, 0xb1, 0xb0, 0xde, 0x17, 0x9c, 0x93, 0x64,
+ 0xd4, 0xfa, 0x74, 0xfb, 0x5b, 0xbc, 0x3e, 0xfd, 0x52, 0xd5, 0x7f, 0x0e, 0x43, 0x08, 0x5c, 0xf9, 0x1a, 0x35,
+ 0xd0, 0xc2, 0x82, 0x61, 0xe2, 0x3a, 0x60, 0xa1, 0xc6, 0xb9, 0xbe, 0x6c, 0xe2, 0x98, 0xbf, 0xc7, 0x42, 0x91,
+ 0x64, 0x99, 0xbd, 0x28, 0x90, 0x8d, 0xe6, 0x0b, 0x36, 0x73, 0xe1, 0xb2, 0x7b, 0x8e, 0x0f, 0xb1, 0x7d, 0xdf,
+ 0xe3, 0x23, 0x1d, 0x5e, 0xc8, 0x5e, 0xbe, 0x14, 0x76, 0xd0, 0x35, 0xe2, 0xb2, 0x6e, 0x90, 0x06, 0x06, 0xba,
+ 0xd3, 0xda, 0x22, 0x83, 0xb8, 0xfb, 0x05, 0xcb, 0xb3, 0xcf, 0x1f, 0xae, 0xb3, 0x92, 0x52, 0x56, 0x70, 0x6c,
+ 0x85, 0x86, 0xe0, 0xa0, 0xa1, 0x98, 0x0e, 0x4d, 0x6d, 0x94, 0x7a, 0x8f, 0x54, 0x2a, 0xe8, 0x61, 0xf9, 0xba,
+ 0x04, 0x78, 0x56, 0xaf, 0x3d, 0x78, 0x89, 0x6e, 0x31, 0x0c, 0xdf, 0x7e, 0x52, 0x03, 0xd7, 0xe4, 0xab, 0x3c,
+ 0x97, 0x92, 0xe2, 0xa8, 0xcc, 0x37, 0xd0, 0x83, 0x73, 0x01, 0x44, 0x82, 0xb9, 0xa4, 0x39, 0x97, 0x7f, 0x78,
+ 0x81, 0x68, 0x89, 0x3b, 0xd6, 0xb9, 0x7c, 0x67, 0xb6, 0xd8, 0x30, 0x15, 0x5f, 0x09, 0x60, 0x72, 0x6b, 0x9d,
+ 0x74, 0x33, 0x58, 0x43, 0xa7, 0x61, 0x1b, 0x21, 0x62, 0xbc, 0x72, 0xda, 0x84, 0xdb, 0x2b, 0x0f, 0x60, 0x13,
+ 0x64, 0x6b, 0x43, 0x0a, 0xb5, 0x54, 0xa0, 0xdf, 0xf0, 0xda, 0x95, 0x35, 0x81, 0xbb, 0xf7, 0x72, 0x27, 0xf6,
+ 0xe1, 0x54, 0xc2, 0x3d, 0x4c, 0x99, 0xc9, 0x45, 0x72, 0xc6, 0x47, 0xaa, 0xb4, 0x17, 0x6f, 0xca, 0xec, 0x0d,
+ 0x55, 0x30, 0xcb, 0xc3, 0x79, 0x99, 0xc5, 0x3b, 0x98, 0x3f, 0x2b, 0xb2, 0xcf, 0xbd, 0xbb, 0x90, 0xb6, 0x4a,
+ 0x46, 0x19, 0x37, 0x7e, 0x0b, 0x7c, 0x0f, 0x7f, 0x67, 0x4c, 0x5e, 0x84, 0xc2, 0xe6, 0xa3, 0x4d, 0x41, 0xd2,
+ 0x97, 0x4f, 0x1a, 0x30, 0x25, 0xf0, 0xfb, 0xb7, 0x45, 0xaf, 0xf1, 0xe8, 0x63, 0xb2, 0x50, 0x61, 0xf2, 0x87,
+ 0xcc, 0x34, 0x54, 0x6b, 0xa7, 0xee, 0x04, 0xa3, 0x3f, 0xaa, 0x63, 0x08, 0xf1, 0xb2, 0x1d, 0xf7, 0xbe, 0x3a,
+ 0xb4, 0x63, 0x1d, 0x01, 0x9a, 0x8a, 0xc3, 0x78, 0xf9, 0x17, 0x1c, 0x3f, 0x6b, 0x9e, 0xcf, 0xee, 0xce, 0x96,
+ 0x84, 0x4e, 0x05, 0xaf, 0x16, 0x03, 0x07, 0x81, 0x77, 0x25, 0xab, 0x67, 0x95, 0xfa, 0x6c, 0xc9, 0xd3, 0xd3,
+ 0x8a, 0xfe, 0xe2, 0xc4, 0xa2, 0x1c, 0x83, 0x3d, 0x71, 0xf1, 0xcc, 0xae, 0x8b, 0xb2, 0x82, 0xcc, 0x12, 0xb9,
+ 0x17, 0xd3, 0xf5, 0x80, 0xd8, 0x06, 0x18, 0x38, 0x12, 0x54, 0xd3, 0x0e, 0x78, 0x0e, 0xfd, 0xd7, 0xbe, 0x20,
+ 0x98, 0x3f, 0x74, 0xae, 0x0a, 0xda, 0x66, 0xa3, 0x02, 0xfc, 0xd6, 0x44, 0x94, 0xde, 0xda, 0xf2, 0x6c, 0xa1,
+ 0xa8, 0x32, 0xf3, 0x9b, 0xee, 0x10, 0x18, 0x35, 0xcd, 0x3b, 0x2d, 0x2f, 0x48, 0x75, 0xff, 0x39, 0xb5, 0x75,
+ 0x2c, 0x79, 0xfa, 0xa1, 0xc7, 0x2e, 0x89, 0x9b, 0xb1, 0x0d, 0x70, 0x07, 0x22, 0x76, 0x75, 0x22, 0x40, 0x1a,
+ 0x79, 0x6b, 0xf0, 0xa1, 0xda, 0x11, 0xda, 0x0e, 0x77, 0x5e, 0x35, 0x7f, 0xec, 0x20, 0x52, 0xed, 0x37, 0x38,
+ 0x35, 0x9b, 0x80, 0x6d, 0xd1, 0x6b, 0x34, 0x1c, 0xf3, 0x89, 0x65, 0x14, 0xc1, 0xcd, 0x4e, 0x4e, 0xd5, 0x58,
+ 0xcc, 0x18, 0x75, 0xb8, 0x79, 0x2a, 0xfd, 0xe5, 0xe6, 0x3f, 0xde, 0xeb, 0x77, 0x0a, 0x2e, 0x10, 0x5a, 0x7a,
+ 0x1e, 0xdd, 0x20, 0x42, 0x4c, 0x04, 0xe5, 0xdd, 0x34, 0x17, 0xde, 0x38, 0x45, 0x38, 0x39, 0x22, 0x15, 0xa8,
+ 0xfc, 0xae, 0x9f, 0x24, 0x88, 0x0e, 0xb7, 0x46, 0xb1, 0x2c, 0x18, 0x2d, 0xce, 0xb7, 0xe6, 0x49, 0x8b, 0xd5,
+ 0xe0, 0x92, 0xff, 0x4b, 0x70, 0xca, 0xaa, 0x3a, 0xff, 0x59, 0xd9, 0xc4, 0x6c, 0x3d, 0x45, 0x0d, 0x79, 0x11,
+ 0x02, 0xff, 0xec, 0xc8, 0xfb, 0xbc, 0xcd, 0xc2, 0xd2, 0xc9, 0xd5, 0x2c, 0x8b, 0x19, 0xb8, 0xfc, 0xda, 0x90,
+ 0x13, 0xb8, 0xc6, 0x96, 0x14, 0xb8, 0x26, 0x83, 0x27, 0x76, 0x35, 0x57, 0x17, 0x91, 0x9d, 0x56, 0xa5, 0x6a,
+ 0x3c, 0x12, 0xe1, 0x1e, 0xd8, 0x18, 0xee, 0xd0, 0x92, 0xc6, 0xa3, 0xae, 0x87, 0x46, 0xe9, 0x14, 0xaa, 0x8c,
+ 0x30, 0x98, 0xf4, 0x45, 0xaf, 0x1a, 0x59, 0x21, 0x7f, 0xaf, 0xfd, 0x0c, 0x36, 0xd8, 0x00, 0x0a, 0xcc, 0xc6,
+ 0x25, 0x6e, 0x8e, 0x48, 0x6d, 0x70, 0x6b, 0x0c, 0xc4, 0xb6, 0xde, 0xad, 0x67, 0x58, 0xe3, 0x3f, 0x08, 0xc3,
+ 0x58, 0xc7, 0x57, 0x78, 0x44, 0xe1, 0xe4, 0x9b, 0x12, 0x79, 0x0d, 0xb4, 0x9d, 0xb8, 0x19, 0x0c, 0x21, 0x6e,
+ 0x90, 0x79, 0x8f, 0x97, 0x99, 0xeb, 0x6d, 0xce, 0x34, 0x13, 0x9e, 0x16, 0x6b, 0x9c, 0xd5, 0x1e, 0x92, 0xc4,
+ 0x8d, 0xa7, 0x3f, 0x67, 0x7a, 0x46, 0xa8, 0x70, 0x08, 0xbd, 0x0a, 0x0e, 0x06, 0xc5, 0xea, 0x84, 0x8e, 0xc1,
+ 0xb6, 0x9a, 0x2e, 0xd8, 0xa3, 0x81, 0x1f, 0x81, 0x76, 0x65, 0xdd, 0x82, 0x47, 0xb9, 0x09, 0x67, 0x18, 0x0b,
+ 0xb8, 0xdd, 0x26, 0x95, 0xb3, 0x30, 0xc0, 0x6d, 0xef, 0xcb, 0xa3, 0xaf, 0xb6, 0x9f, 0xca, 0x80, 0xbb, 0x5f,
+ 0x1f, 0x7c, 0x49, 0x6c, 0xbf, 0xcc, 0x8a, 0xee, 0x19, 0xf0, 0xd2, 0xb7, 0x24, 0xad, 0x6e, 0xa1, 0x5f, 0x22,
+ 0x9d, 0xf4, 0x26, 0xc6, 0x62, 0x34, 0x74, 0xda, 0xff, 0xc5, 0x7b, 0x23, 0xf7, 0x1f, 0xea, 0x71, 0x07, 0xbd,
+ 0x9f, 0x8a, 0x4e, 0xdf, 0xe4, 0xc3, 0xcd, 0x46, 0x72, 0x56, 0x85, 0xd8, 0x35, 0x9c, 0xef, 0x93, 0xb6, 0x02,
+ 0x3b, 0xda, 0x78, 0x44, 0xca, 0x30, 0x79, 0x3b, 0x07, 0x64, 0x75, 0xed, 0x27, 0x0e, 0xf2, 0x78, 0xe8, 0xc0,
+ 0xf2, 0x61, 0xfb, 0xf3, 0xcd, 0x25, 0x8f, 0xca, 0x42, 0x2f, 0xdf, 0x46, 0xcc, 0xa4, 0xa7, 0x5a, 0x2d, 0xbd,
+ 0x1c, 0x77, 0x52, 0x08, 0x3a, 0xfd, 0xea, 0xe3, 0xf0, 0x37, 0x8c, 0xb6, 0x6a, 0xcf, 0x61, 0x2a, 0x26, 0x28,
+ 0xc2, 0x50, 0xd1, 0x4f, 0xbc, 0x72, 0x57, 0x6d, 0x9f, 0x4c, 0x32, 0xb3, 0xa8, 0x2b, 0xca, 0x50, 0x15, 0x64,
+ 0x84, 0xb5, 0x2b, 0xa2, 0x6e, 0x4f, 0x1d, 0x88, 0xc8, 0x48, 0x7c, 0xf4, 0x58, 0xe2, 0x97, 0x5c, 0x31, 0xf4,
+ 0x2d, 0x5f, 0x5a, 0xc9, 0x3d, 0x07, 0x21, 0xc5, 0x69, 0x15, 0xb1, 0x44, 0x90, 0x11, 0x5e, 0x7c, 0xfc, 0xd2,
+ 0x60, 0x6d, 0x3a, 0x92, 0x04, 0x5c, 0x2d, 0x56, 0x2a, 0x0a, 0x6b, 0x9c, 0x4f, 0xf2, 0xc4, 0xb8, 0x60, 0x08,
+ 0x52, 0x2a, 0x9a, 0x55, 0x4c, 0xf0, 0xcc, 0xa9, 0x83, 0xb4, 0x8e, 0x07, 0xc4, 0x30, 0x69, 0xaf, 0x94, 0xfb,
+ 0x3f, 0x3b, 0x1c, 0x97, 0xee, 0xa6, 0xb2, 0x84, 0x56, 0x45, 0x5f, 0x0a, 0xe7, 0x3a, 0x16, 0x4b, 0x8b, 0x54,
+ 0xd4, 0x35, 0x38, 0xd5, 0x01, 0x92, 0xfc, 0x20, 0x8b, 0x0f, 0x2d, 0xc2, 0x97, 0xe6, 0x29, 0x88, 0x0b, 0x35,
+ 0xee, 0x0a, 0x35, 0xd6, 0x93, 0xb2, 0x00, 0x2d, 0xc2, 0xae, 0x35, 0x21, 0x52, 0xdb, 0x48, 0x7f, 0xaa, 0xe8,
+ 0x75, 0xfc, 0xb5, 0x1f, 0x6d, 0xc1, 0x25, 0x69, 0x8c, 0x78, 0x29, 0xf1, 0x4a, 0x0c, 0x3e, 0xbe, 0x9a, 0x1a,
+ 0xd7, 0x8f, 0x61, 0x74, 0xb7, 0xd5, 0x4c, 0xb8, 0xd0, 0x14, 0xd6, 0x32, 0x57, 0x11, 0xde, 0x93, 0x0a, 0x9c,
+ 0x7a, 0x73, 0xeb, 0x28, 0x20, 0xf0, 0x37, 0x4c, 0xa4, 0x90, 0x13, 0xc4, 0xbe, 0x30, 0x19, 0x7a, 0x9b, 0xec,
+ 0x62, 0xef, 0x66, 0x4f, 0x59, 0x91, 0x27, 0x72, 0xb4, 0x5f, 0x5c, 0x0e, 0x0d, 0x8b, 0x3e, 0xc9, 0x5e, 0xaa,
+ 0x92, 0x7a, 0x76, 0xfa, 0xcb, 0x84, 0x53, 0x56, 0xda, 0x3f, 0xfa, 0x35, 0x31, 0xfd, 0xa5, 0xb8, 0x47, 0x7d,
+ 0x68, 0x30, 0x50, 0xc3, 0x6c, 0x5d, 0x18, 0xc0, 0xeb, 0x32, 0x83, 0x54, 0xd8, 0x17, 0xd2, 0x66, 0x4e, 0xcb,
+ 0xad, 0x95, 0x39, 0xb3, 0x34, 0xb0, 0x2a, 0x12, 0xbd, 0x68, 0x74, 0x88, 0xba, 0x9d, 0xc0, 0xbb, 0xb4, 0x0e,
+ 0xd7, 0x2f, 0xd4, 0x5d, 0x40, 0xc6, 0x0f, 0xef, 0x8a, 0xb6, 0x4c, 0x89, 0x4e, 0xed, 0xde, 0x43, 0x2b, 0x2d,
+ 0xd8, 0x7b, 0x96, 0x9c, 0x7b, 0x68, 0xb7, 0x09, 0xb2, 0xa0, 0x2f, 0x11, 0x2c, 0x6e, 0x1f, 0x8f, 0x9b, 0x34,
+ 0x18, 0xc9, 0xd4, 0xf9, 0xeb, 0x49, 0x65, 0x66, 0xe1, 0xe7, 0x17, 0xb3, 0x51, 0x7c, 0x19, 0x13, 0x51, 0x2b,
+ 0x2e, 0x5f, 0x45, 0x94, 0x5a, 0x02, 0x35, 0x82, 0xca, 0xfa, 0x77, 0x11, 0xc9, 0x75, 0xd4, 0x72, 0xf2, 0x99,
+ 0x47, 0x97, 0x26, 0x96, 0x80, 0x8b, 0x33, 0xff, 0xf6, 0xd0, 0x4a, 0x4a, 0xab, 0xde, 0x55, 0x7c, 0x6f, 0xc0,
+ 0xf2, 0x3d, 0x37, 0x54, 0xcf, 0xab, 0x15, 0x66, 0x02, 0x4b, 0x38, 0x04, 0x45, 0x18, 0x08, 0x05, 0x58, 0xd1,
+ 0xed, 0x10, 0xfe, 0xe0, 0xe2, 0xc7, 0x24, 0x30, 0x22, 0xcd, 0x06, 0xd9, 0x02, 0x37, 0x53, 0x21, 0x88, 0x3d,
+ 0x3f, 0x9e, 0x21, 0x77, 0xb5, 0x85, 0xf8, 0x3d, 0x15, 0xc4, 0x00, 0x61, 0x59, 0x07, 0x43, 0x0f, 0x1e, 0x92,
+ 0x9e, 0xba, 0xfc, 0xa0, 0x58, 0xfd, 0x2e, 0x87, 0x93, 0x82, 0xd6, 0x02, 0xf5, 0x84, 0x08, 0x96, 0x8a, 0xa3,
+ 0xf9, 0xd2, 0xc3, 0xf2, 0xad, 0xbc, 0x13, 0xcb, 0xe9, 0x98, 0xed, 0xcd, 0xc5, 0x83, 0xbc, 0x43, 0x91, 0xcc,
+ 0x19, 0x47, 0x14, 0x7e, 0x8c, 0x8e, 0x36, 0x5d, 0x9e, 0x96, 0x8d, 0x97, 0x61, 0xad, 0x73, 0x64, 0x47, 0xed,
+ 0x3e, 0x40, 0x76, 0x99, 0xbe, 0x47, 0xe7, 0x5f, 0xae, 0x4c, 0x88, 0x3e, 0x90, 0x08, 0xd9, 0xc6, 0x35, 0x4b,
+ 0x19, 0xe4, 0x7b, 0xfe, 0x23, 0x04, 0x10, 0x2a, 0x50, 0x37, 0x88, 0x18, 0x72, 0xd0, 0x2a, 0x2f, 0x77, 0xaa,
+ 0x09, 0xe0, 0xf2, 0x49, 0x7a, 0xf2, 0xf9, 0x6b, 0xa5, 0x53, 0x55, 0xd5, 0x28, 0xf9, 0x2c, 0x0c, 0x99, 0x33,
+ 0x31, 0xc6, 0xa5, 0xb2, 0x52, 0x30, 0x42, 0x8e, 0x53, 0xb4, 0x38, 0xd3, 0x89, 0xfd, 0x0f, 0x25, 0x79, 0xbc,
+ 0xac, 0xe3, 0x8c, 0x04, 0xfd, 0x38, 0x67, 0xf0, 0xb5, 0x5f, 0xb1, 0x66, 0xf2, 0xb3, 0xd6, 0x0d, 0x99, 0x66,
+ 0xb6, 0x7b, 0xf4, 0x75, 0xa9, 0xb6, 0x8b, 0xbf, 0x58, 0xf8, 0xcc, 0xe0, 0x2c, 0xf6, 0xaf, 0xae, 0x1a, 0xd1,
+ 0x62, 0x55, 0xec, 0xb5, 0xf7, 0xff, 0x7b, 0x32, 0xe5, 0x81, 0x4d, 0xc1, 0x29, 0x67, 0x84, 0xb9, 0x54, 0x03,
+ 0x35, 0x17, 0x21, 0xcf, 0x91, 0xcd, 0x60, 0x6e, 0x2d, 0x86, 0xe1, 0x16, 0x56, 0x6a, 0x53, 0x9b, 0x98, 0xb8,
+ 0x8c, 0x85, 0x5a, 0x3b, 0xa0, 0xc0, 0x9c, 0xb4, 0xc8, 0x90, 0xda, 0x29, 0xd6, 0xcd, 0xc7, 0x6b, 0x8d, 0x43,
+ 0x95, 0x3d, 0xeb, 0x58, 0x6c, 0x55, 0x9a, 0xf5, 0xa3, 0xe2, 0xb0, 0x6d, 0x00, 0xe7, 0x98, 0xe5, 0xcb, 0x7a,
+ 0xf3, 0x3f, 0x0b, 0x09, 0x47, 0x45, 0x37, 0xc4, 0x98, 0x90, 0x00, 0x39, 0x4a, 0xff, 0x62, 0x01, 0x97, 0xb8,
+ 0x24, 0x41, 0x61, 0xd5, 0xbe, 0xc1, 0xac, 0xa8, 0xe5, 0x36, 0x41, 0x33, 0x2f, 0xef, 0x7d, 0x5e, 0x94, 0x60,
+ 0x76, 0xbf, 0x6c, 0xb3, 0x7a, 0x59, 0x60, 0xd3, 0x78, 0xbc, 0xc6, 0x4d, 0xf5, 0xe0, 0x1d, 0x55, 0x51, 0xf2,
+ 0xed, 0x17, 0x19, 0x03, 0x8e, 0x2e, 0xd6, 0x3f, 0x43, 0x7d, 0x91, 0x5b, 0xc8, 0x0f, 0xf3, 0x03, 0x58, 0x95,
+ 0x67, 0xed, 0x8b, 0xe2, 0x45, 0x84, 0xa5, 0x6d, 0xf8, 0x98, 0x50, 0x7f, 0x89, 0xcf, 0xf2, 0x40, 0x05, 0x8d,
+ 0x09, 0x8d, 0xdd, 0x11, 0xf5, 0x4c, 0x09, 0x71, 0x96, 0x8c, 0x01, 0xca, 0x99, 0x78, 0xfa, 0x50, 0x83, 0x6b,
+ 0xeb, 0x0d, 0x65, 0x1d, 0xee, 0xc2, 0xb2, 0x03, 0x66, 0x60, 0xbd, 0xa1, 0x9d, 0x13, 0x50, 0x8f, 0xeb, 0x0b,
+ 0x9a, 0x9e, 0x26, 0x9a, 0x94, 0x1b, 0x85, 0x6e, 0x4d, 0xbb, 0x0f, 0x6d, 0x72, 0x8f, 0x45, 0xb8, 0x95, 0x18,
+ 0x55, 0x60, 0x07, 0x27, 0x59, 0xb1, 0x73, 0xf3, 0xf8, 0xfb, 0xa6, 0xa1, 0x70, 0xd6, 0xd3, 0x35, 0xea, 0xaf,
+ 0x7d, 0x70, 0x88, 0xcd, 0x73, 0x34, 0x08, 0x63, 0xbd, 0xf8, 0x9d, 0x29, 0x31, 0x12, 0xea, 0x9f, 0xd0, 0x0c,
+ 0x5a, 0x06, 0xa3, 0xbd, 0xf9, 0xd4, 0x36, 0x02, 0x1d, 0x5a, 0x80, 0xe2, 0x66, 0xcc, 0x0b, 0x08, 0xab, 0xef,
+ 0xf7, 0x06, 0x79, 0xcf, 0x90, 0x90, 0x11, 0x31, 0x00, 0xcf, 0x03, 0x37, 0xb7, 0x2b, 0xd1, 0x94, 0x98, 0xfd,
+ 0xe2, 0x21, 0x5f, 0x0f, 0xcc, 0x20, 0xad, 0x8a, 0xf9, 0xf6, 0x77, 0x0e, 0xe8, 0x57, 0x87, 0x69, 0xd8, 0x61,
+ 0x03, 0xb5, 0x57, 0xf0, 0xf2, 0xd8, 0x24, 0x7b, 0x5b, 0x32, 0xc0, 0xdb, 0xa8, 0xc8, 0xff, 0x6c, 0x0b, 0xe4,
+ 0x7d, 0xd1, 0x6a, 0xd5, 0x7e, 0xa1, 0x01, 0x9a, 0x5a, 0xcb, 0x5e, 0x67, 0xa6, 0x1c, 0xdd, 0x20, 0xcf, 0xa7,
+ 0x91, 0x10, 0x47, 0x06, 0xb6, 0x2e, 0xc5, 0xb5, 0x35, 0x75, 0xae, 0xe8, 0xc7, 0xea, 0xb1, 0xb4, 0x27, 0x1b,
+ 0x52, 0x8a, 0x8d, 0x98, 0xe2, 0xc2, 0x6a, 0x17, 0x9d, 0x3d, 0x0d, 0x6e, 0xcc, 0x21, 0x8a, 0xbe, 0x55, 0xcd,
+ 0x19, 0x03, 0x2a, 0x27, 0xb7, 0xfb, 0xdb, 0x1d, 0xc0, 0xf8, 0x33, 0x1d, 0x9c, 0x4d, 0x40, 0x8c, 0x85, 0x16,
+ 0x5a, 0xc3, 0x55, 0xc8, 0xc1, 0x80, 0xe9, 0x6a, 0xb9, 0x88, 0x77, 0xd6, 0xba, 0xdd, 0xc4, 0x57, 0xd6, 0x1e,
+ 0xee, 0x98, 0x3b, 0x46, 0x9a, 0xf2, 0xba, 0x47, 0x0a, 0x81, 0xe9, 0x86, 0x32, 0xad, 0xa8, 0x17, 0xa6, 0x12,
+ 0xf3, 0x13, 0x93, 0xde, 0x7f, 0x52, 0x8d, 0xe2, 0x5d, 0xab, 0xce, 0xf3, 0x5e, 0x40, 0x69, 0xf1, 0x00, 0x9d,
+ 0x26, 0x6a, 0xb5, 0xb7, 0x3b, 0x82, 0xf0, 0x51, 0xb2, 0x8b, 0xea, 0xf0, 0x42, 0xaa, 0x69, 0x4c, 0x3a, 0xc4,
+ 0x4e, 0xb7, 0x35, 0x83, 0x97, 0xec, 0xb6, 0xe9, 0x76, 0x80, 0xbb, 0x88, 0x47, 0x73, 0x77, 0x6f, 0x54, 0x77,
+ 0xf4, 0x93, 0x04, 0xb8, 0x70, 0x77, 0xe0, 0xf1, 0xc3, 0x24, 0x50, 0x20, 0xb7, 0xe5, 0x1c, 0xa1, 0xd2, 0xae,
+ 0xe1, 0x25, 0x65, 0x23, 0xb6, 0x8c, 0x6e, 0x24, 0x97, 0xb1, 0xbe, 0x3b, 0xd3, 0xf5, 0x30, 0xfb, 0xe3, 0x93,
+ 0x2d, 0x70, 0xac, 0xde, 0x5a, 0x6c, 0x34, 0x81, 0xd9, 0xef, 0xee, 0x34, 0xc1, 0x2e, 0xa6, 0xf3, 0xd5, 0xdc,
+ 0x0a, 0x97, 0x3e, 0x75, 0x30, 0x66, 0xc8, 0x1b, 0xef, 0x66, 0xb2, 0x4c, 0x4e, 0xee, 0x9d, 0xa6, 0x43, 0xc3,
+ 0x1e, 0x3f, 0x24, 0x7e, 0x08, 0xa5, 0x2d, 0x47, 0x4c, 0x10, 0x0f, 0xe7, 0x4c, 0xad, 0x45, 0x11, 0xc4, 0x53,
+ 0x99, 0x84, 0xf0, 0x27, 0x50, 0xa7, 0xe1, 0x0b, 0xf8, 0x9c, 0x46, 0xd2, 0x50, 0x26, 0xd8, 0x1f, 0x34, 0x44,
+ 0x1f, 0xdc, 0x70, 0x82, 0x49, 0x2a, 0x57, 0x70, 0xcb, 0x75, 0x50, 0x2d, 0xe2, 0x3b, 0x81, 0xed, 0x32, 0x15,
+ 0x62, 0x55, 0x12, 0x7c, 0xb5, 0xe0, 0xd8, 0xe1, 0xd5, 0x93, 0x02, 0x69, 0xb3, 0x78, 0x8b, 0x3c, 0xde, 0x9f,
+ 0x08, 0xf3, 0x0b, 0xba, 0xd3, 0x6f, 0xd2, 0x43, 0x94, 0xa3, 0xe9, 0x99, 0x7c, 0xa8, 0xcb, 0x7a, 0x19, 0xf8,
+ 0xcf, 0x06, 0x66, 0x4b, 0xf8, 0xd1, 0x96, 0x78, 0x48, 0x45, 0x22, 0xa7, 0xc5, 0x41, 0x86, 0xea, 0xf7, 0x92,
+ 0x55, 0x0a, 0x84, 0xb2, 0x62, 0xa2, 0xc0, 0xe6, 0xce, 0x10, 0x02, 0x2b, 0x0d, 0xe5, 0x50, 0xee, 0x41, 0xc7,
+ 0x2c, 0x03, 0x01, 0xf9, 0xfb, 0xc7, 0x69, 0x6d, 0xf3, 0x78, 0x36, 0xa9, 0x3d, 0x90, 0xe5, 0xf5, 0x26, 0xfc,
+ 0x7c, 0xb0, 0x29, 0x60, 0xce, 0xb9, 0x55, 0x98, 0x87, 0x5f, 0xd6, 0xac, 0xe5, 0x5a, 0x95, 0x4c, 0x06, 0xcb,
+ 0x16, 0x05, 0xf7, 0x6a, 0xd1, 0x31, 0xc3, 0xf9, 0x7e, 0x21, 0x01, 0x66, 0xf1, 0x82, 0x54, 0x08, 0x6c, 0xf3,
+ 0x3c, 0x01, 0xa7, 0xf8, 0x14, 0x2a, 0x95, 0x01, 0xed, 0x66, 0x2e, 0xe3, 0xbc, 0xb4, 0x1e, 0xcd, 0x7b, 0x7e,
+ 0x4a, 0xe1, 0x35, 0xee, 0x6b, 0xef, 0x17, 0x8b, 0x39, 0x48, 0x1c, 0xb1, 0x83, 0x95, 0x63, 0x00, 0xf9, 0x24,
+ 0x69, 0xe2, 0x2e, 0x88, 0xcf, 0x37, 0x26, 0xcf, 0xca, 0x18, 0x2a, 0x99, 0x0d, 0x89, 0xe6, 0xa9, 0x64, 0x8f,
+ 0xf2, 0x84, 0x45, 0xde, 0x02, 0xef, 0x25, 0x5a, 0xdd, 0x42, 0x95, 0x65, 0xf2, 0x6a, 0x24, 0x5b, 0x5d, 0x88,
+ 0x6d, 0x75, 0x45, 0x54, 0x71, 0x98, 0x2c, 0xb7, 0xee, 0x2c, 0x5b, 0x61, 0x5f, 0x51, 0xf6, 0x5a, 0xc3, 0x0e,
+ 0x6f, 0x0e, 0xfb, 0xb0, 0x74, 0xa2, 0x09, 0x0d, 0x6d, 0xc7, 0x77, 0x24, 0x0c, 0xb0, 0x70, 0xc9, 0x35, 0x99,
+ 0x77, 0xe7, 0xef, 0xcd, 0xda, 0x46, 0x52, 0x5d, 0xa3, 0x5f, 0x45, 0x6b, 0x2d, 0x53, 0x93, 0xbe, 0x9b, 0xc6,
+ 0xfc, 0xf9, 0x26, 0xf8, 0x5d, 0x87, 0xdf, 0x9a, 0x53, 0x89, 0x2a, 0x79, 0x3c, 0x21, 0xa5, 0x4c, 0x62, 0x3d,
+ 0x4c, 0xc0, 0x85, 0xab, 0xcc, 0x8f, 0xc5, 0x22, 0x51, 0xd7, 0xb6, 0x0c, 0xc7, 0x69, 0xac, 0xf6, 0x5b, 0x0d,
+ 0xfd, 0x89, 0x35, 0x10, 0x59, 0x99, 0xc0, 0x52, 0x3a, 0xd2, 0x13, 0x2b, 0xe6, 0xe7, 0x12, 0x8c, 0x6b, 0x44,
+ 0x0a, 0x9c, 0x2e, 0x3f, 0x2f, 0x12, 0xdb, 0x8e, 0x94, 0xa3, 0xd1, 0xd6, 0x41, 0x91, 0xab, 0x9d, 0xc2, 0x9d,
+ 0x73, 0xd4, 0x81, 0x3a, 0x39, 0xeb, 0x92, 0x12, 0x09, 0x6f, 0x06, 0xd9, 0x72, 0x07, 0xd4, 0x8d, 0x99, 0x5e,
+ 0xca, 0x6f, 0x28, 0xe7, 0x2c, 0xc9, 0xa8, 0xcf, 0x7b, 0x69, 0xfa, 0x9d, 0x99, 0xdb, 0xfe, 0xfb, 0x27, 0x42,
+ 0x94, 0xfb, 0xfb, 0x87, 0xaa, 0x5a, 0x38, 0x8b, 0xb8, 0xaf, 0x3a, 0xf9, 0x16, 0x4e, 0x70, 0x69, 0x2d, 0xea,
+ 0xe3, 0xcb, 0xf3, 0x04, 0x6e, 0xba, 0x86, 0x0e, 0xa4, 0xc3, 0xdb, 0x33, 0x10, 0xdf, 0x36, 0x49, 0xa1, 0x1a,
+ 0x9e, 0xc3, 0x6e, 0xf4, 0xd6, 0x85, 0x14, 0x2e, 0x19, 0x99, 0x89, 0xf5, 0x63, 0x6b, 0x0a, 0x07, 0x6d, 0xfc,
+ 0x9f, 0x90, 0xac, 0x64, 0xa1, 0x14, 0xbc, 0xa8, 0x8c, 0xa2, 0x9b, 0x48, 0x56, 0xfd, 0xcf, 0x65, 0xeb, 0x8b,
+ 0x8a, 0x71, 0xd7, 0xdf, 0x5e, 0xf5, 0xb4, 0x98, 0xe8, 0x9e, 0xbd, 0x5e, 0x8f, 0xb9, 0xe1, 0xcd, 0x2f, 0xb2,
+ 0x79, 0xbd, 0x82, 0xce, 0x7b, 0x9d, 0xd3, 0xf6, 0xec, 0x7e, 0xa0, 0xa0, 0xc1, 0x88, 0xee, 0x7e, 0x85, 0x70,
+ 0x16, 0x53, 0x9f, 0xfb, 0x64, 0x35, 0xf7, 0xd7, 0xe6, 0x62, 0x6d, 0x1a, 0x46, 0xc9, 0xe9, 0xf2, 0xb7, 0x91,
+ 0x56, 0xb7, 0x5e, 0xd0, 0x5b, 0x0e, 0xd7, 0x62, 0x2e, 0xd3, 0xf4, 0x65, 0x04, 0xd9, 0x63, 0xee, 0x8b, 0x0d,
+ 0x1f, 0xaf, 0x5d, 0xfe, 0x4b, 0x56, 0x4b, 0x15, 0xf6, 0xdb, 0xbc, 0xca, 0xeb, 0x35, 0xbf, 0x32, 0xa5, 0x5e,
+ 0xf4, 0x22, 0x7a, 0xca, 0xbf, 0xd5, 0xbb, 0x0e, 0x5b, 0x81, 0xb7, 0xef, 0xe8, 0x4d, 0x8b, 0x20, 0x09, 0x5d,
+ 0x32, 0x50, 0x29, 0xb1, 0xc2, 0x04, 0xcc, 0x8f, 0xec, 0x5e, 0x48, 0xf0, 0x87, 0x4c, 0xb3, 0x27, 0x2c, 0x5d,
+ 0x4a, 0xc6, 0x73, 0x9d, 0xd7, 0x30, 0xf6, 0x32, 0xc8, 0xc0, 0xb8, 0x33, 0x23, 0xd3, 0x3a, 0x5a, 0x5b, 0x85,
+ 0x3b, 0x54, 0x70, 0x5c, 0xd0, 0xee, 0xbe, 0x65, 0x47, 0xe5, 0x82, 0xcf, 0x9f, 0xd6, 0xd7, 0xf0, 0x09, 0x60,
+ 0x89, 0x43, 0xfc, 0x70, 0xbb, 0xef, 0x13, 0x60, 0xb3, 0x6a, 0x22, 0x29, 0x5c, 0x36, 0xc5, 0xfd, 0xe3, 0x66,
+ 0xba, 0x02, 0x77, 0x12, 0x2d, 0x2f, 0xb9, 0xc3, 0x4c, 0x24, 0x00, 0x74, 0x96, 0x1a, 0xf7, 0x29, 0xcb, 0x90,
+ 0x5a, 0x61, 0x83, 0x09, 0xd3, 0x37, 0x0d, 0x34, 0xb5, 0x89, 0xec, 0x48, 0x80, 0x81, 0x80, 0x94, 0x96, 0x88,
+ 0x8e, 0x91, 0x95, 0xe1, 0x0e, 0x4b, 0x71, 0x88, 0x9c, 0x93, 0x8d, 0x16, 0x2e, 0xc3, 0x32, 0xc1, 0xd5, 0xc9,
+ 0x25, 0x32, 0x53, 0x6f, 0x63, 0x49, 0x2f, 0x0d, 0xe4, 0xc1, 0xf0, 0x93, 0x0c, 0x3b, 0x11, 0x2d, 0xf9, 0x15,
+ 0x1a, 0xc6, 0xfa, 0xb3, 0x1b, 0xd8, 0x18, 0xb5, 0x9d, 0x88, 0x1e, 0xc1, 0xc4, 0x6e, 0xe8, 0x64, 0x80, 0x6f,
+ 0xf9, 0xff, 0x53, 0xc7, 0x30, 0x09, 0xae, 0x8f, 0x64, 0x81, 0xe0, 0xb8, 0x7d, 0xe8, 0xcd, 0xea, 0xb1, 0x48,
+ 0x39, 0x49, 0x45, 0x03
};
-// context = smart_lighting
+// context = simple_context_ar
static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x65, 0x6e, 0x00, 0x09,
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x61, 0x72, 0x00, 0x09,
0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x98, 0x1b, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c,
- 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20,
- 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x61,
- 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x74, 0x6f,
- 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
- 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69,
- 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74,
- 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c,
- 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x74, 0x6f,
- 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
- 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
- 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63,
- 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d,
- 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
- 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
- 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72,
- 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20,
- 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
- 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f,
- 0x6c, 0x6f, 0x72, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74,
- 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
- 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x61, 0x6c,
- 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
- 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20,
- 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20,
- 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68,
- 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
- 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67,
- 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
- 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28,
- 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
- 0x73, 0x5d, 0x20, 0x5b, 0x69, 0x6e, 0x2c, 0x20, 0x61, 0x74, 0x5d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x24, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66,
- 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66,
- 0x66, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
- 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28,
- 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x6f,
- 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
- 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c,
- 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20,
- 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68,
- 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74,
- 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73,
- 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24,
- 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68,
- 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d,
- 0x20, 0x6f, 0x66, 0x66, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65,
- 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
- 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68,
- 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x62, 0x6c, 0x75, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x72, 0x65,
- 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x72, 0x61, 0x6e, 0x67,
- 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x69, 0x6e, 0x6b, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x72, 0x65, 0x64, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2d, 0x20, 0x22, 0x77, 0x68, 0x69, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
- 0x20, 0x22, 0x79, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62,
- 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x62, 0x65, 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x68,
- 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6b,
- 0x69, 0x74, 0x63, 0x68, 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6c,
- 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2d, 0x20, 0x22, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x0a, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
- 0x1d, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x37, 0x00,
- 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00,
- 0x57, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00,
- 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00,
- 0x8d, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x9d, 0x00, 0x00, 0x00, 0xa1, 0x00,
- 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00,
- 0x61, 0x6c, 0x6c, 0x00, 0x61, 0x74, 0x00, 0x62, 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x65,
- 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x6c, 0x75, 0x65, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x00,
- 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x67, 0x72, 0x65, 0x65, 0x6e,
- 0x00, 0x68, 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x00, 0x69, 0x6e, 0x00, 0x6b, 0x69, 0x74, 0x63, 0x68, 0x65,
- 0x6e, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x00, 0x6c, 0x69, 0x76,
- 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x6d, 0x61, 0x6b, 0x65, 0x00, 0x6f, 0x66, 0x66, 0x00,
- 0x6f, 0x6e, 0x00, 0x6f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x00, 0x70,
- 0x69, 0x6e, 0x6b, 0x00, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x00, 0x72, 0x65, 0x64, 0x00, 0x73, 0x65, 0x74,
- 0x00, 0x73, 0x68, 0x75, 0x74, 0x00, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x00, 0x74, 0x68, 0x65, 0x00, 0x74,
- 0x6f, 0x00, 0x74, 0x75, 0x72, 0x6e, 0x00, 0x77, 0x68, 0x69, 0x74, 0x65, 0x00, 0x79, 0x65, 0x6c, 0x6c, 0x6f,
- 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
- 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
- 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
- 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
- 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
- 0x1d, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x25, 0x00,
- 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x1d, 0x00,
- 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
- 0x30, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x44, 0x00,
- 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00,
- 0x52, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x66, 0x00,
- 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00,
- 0x75, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7d, 0x00,
- 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00,
- 0x04, 0x15, 0x02, 0x1f, 0x07, 0x02, 0x20, 0x1c, 0x22, 0x16, 0x07, 0x0b, 0x09, 0x1c, 0x22, 0x16, 0x07, 0x15,
- 0x22, 0x08, 0x0d, 0x17, 0x13, 0x14, 0x15, 0x01, 0x26, 0x03, 0x1f, 0x14, 0x03, 0x15, 0x0c, 0x14, 0x04, 0x15,
- 0x0c, 0x0f, 0x1c, 0x12, 0x17, 0x10, 0x04, 0x15, 0x24, 0x0d, 0x11, 0x17, 0x14, 0x11, 0x08, 0x03, 0x17, 0x15,
- 0x06, 0x1f, 0x1d, 0x15, 0x06, 0x1f, 0x15, 0x11, 0x23, 0x11, 0x18, 0x1c, 0x22, 0x16, 0x16, 0x0d, 0x14, 0x04,
- 0x0e, 0x01, 0x17, 0x04, 0x17, 0x04, 0x1c, 0x03, 0x17, 0x13, 0x04, 0x1c, 0x11, 0x17, 0x13, 0x1b, 0x02, 0x17,
- 0x1f, 0x1c, 0x12, 0x1b, 0x11, 0x18, 0x14, 0x1b, 0x0c, 0x1b, 0x03, 0x15, 0x1c, 0x0b, 0x09, 0x1d, 0x0b, 0x1f,
- 0x1e, 0x03, 0x1f, 0x1d, 0x24, 0x11, 0x08, 0x0a, 0x03, 0x0a, 0x12, 0x1f, 0x03, 0x1f, 0x11, 0x1f, 0x22, 0x1f,
- 0x0c, 0x17, 0x10, 0x24, 0x06, 0x1f, 0x24, 0x06, 0x1f, 0x25, 0x0b, 0x15, 0x19, 0x00, 0x0f, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x12, 0x00,
- 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00,
- 0x18, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x22, 0x00,
- 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
- 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1d, 0x00,
- 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x09, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x10, 0x00,
- 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
- 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
- 0x07, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
- 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00,
- 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
- 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00,
- 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73, 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
- 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
- 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00,
- 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00,
- 0x31, 0x00, 0x00, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x00, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66, 0x00, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0x04, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x64, 0x0a,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00,
- 0x44, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x3c, 0x02,
- 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x58, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0xb8, 0x00,
- 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00,
- 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00,
- 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x90, 0x01,
- 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
- 0x34, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x34, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x5c, 0x01, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x01, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00,
- 0xa4, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd0, 0x01,
- 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0xa4, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00,
- 0x2c, 0x02, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x1c, 0x02, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
- 0x54, 0x02, 0x00, 0x00, 0xc8, 0x02, 0x00, 0x00, 0x3c, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x6c, 0x02, 0x00, 0x00, 0xa4, 0x02, 0x00, 0x00, 0x54, 0x02, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x02, 0x00, 0x00, 0x6c, 0x02,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x02, 0x00, 0x00,
- 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x02,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x02, 0x00, 0x00,
- 0xa4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x02,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00,
- 0xc8, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xf4, 0x02,
- 0x00, 0x00, 0x18, 0x03, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0xf4, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00,
- 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00,
- 0xf8, 0x05, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x88, 0x03, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0xd0, 0x03,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00,
- 0x38, 0x04, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x28, 0x04, 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x4c, 0x04, 0x00, 0x00, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00,
- 0x74, 0x04, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x04,
- 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0xb4, 0x04, 0x00, 0x00, 0xa0, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xc8, 0x04, 0x00, 0x00, 0xb4, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x38, 0x05, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x50, 0x05, 0x00, 0x00, 0x74, 0x05, 0x00, 0x00, 0x38, 0x05,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x05, 0x00, 0x00,
- 0x50, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x05,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0xd4, 0x05,
- 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0xb0, 0x05, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xc4, 0x05, 0x00, 0x00, 0xb0, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xe8, 0x05, 0x00, 0x00, 0xd4, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x28, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x10, 0x06,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00,
- 0x28, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x06,
- 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x64, 0x06, 0x00, 0x00, 0x50, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x88, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x9c, 0x06, 0x00, 0x00, 0x88, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xec, 0x06, 0x00, 0x00, 0x10, 0x07, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0xec, 0x06,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0xc0, 0x08, 0x00, 0x00,
- 0xf8, 0x08, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x20, 0x07,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x6c, 0x07, 0x00, 0x00,
- 0x90, 0x07, 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x48, 0x07,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x07, 0x00, 0x00,
- 0x6c, 0x07, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0xdc, 0x07,
- 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xcc, 0x07, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0xf0, 0x07, 0x00, 0x00, 0xdc, 0x07, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x2c, 0x08, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x08, 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x50, 0x08, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x74, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x08, 0x00, 0x00, 0xb0, 0x08, 0x00, 0x00, 0x74, 0x08,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x08, 0x00, 0x00,
- 0x8c, 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x08,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
- 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd4, 0x08, 0x00, 0x00, 0xc0, 0x08,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x08, 0x00, 0x00,
- 0xd4, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x09, 0x00, 0x00,
- 0xf8, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00,
- 0x6c, 0x09, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x5c, 0x09, 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x6c, 0x09, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xbc, 0x09, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe0, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00,
- 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf4, 0x09, 0x00, 0x00, 0xe0, 0x09,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
- 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x18, 0x0a, 0x00, 0x00, 0x04, 0x0a,
- 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00,
- 0x18, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x40, 0x0a,
- 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x54, 0x0a, 0x00, 0x00, 0x40, 0x0a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00,
- 0x8c, 0x0a, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0xb0, 0x0d,
- 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x05, 0x00, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0xd4, 0x0a, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x80, 0x0b,
- 0x00, 0x00, 0xa4, 0x0b, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xc4, 0x0a, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x0b, 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x0c, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x34, 0x0b, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x70, 0x0b, 0x00, 0x00,
- 0x34, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x60, 0x0b,
- 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x34, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x94, 0x0b, 0x00, 0x00,
- 0x80, 0x0b, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
- 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00,
- 0xa4, 0x0b, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x0b,
- 0x00, 0x00, 0xf4, 0x0b, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00, 0x00, 0xd0, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0c, 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x50, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x78, 0x0c, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0xb4, 0x0c, 0x00, 0x00,
- 0x78, 0x0c, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x0c,
- 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x78, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0c,
- 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00,
- 0x3c, 0x0d, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00, 0x2c, 0x0d, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x06, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x0d, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x54, 0x0d, 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x3c, 0x0d,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00,
- 0x54, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x7c, 0x0d,
- 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x3c, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x0d,
- 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x64, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xc8, 0x0d,
- 0x00, 0x00, 0xec, 0x0d, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xdc, 0x0d, 0x00, 0x00, 0xc8, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x64, 0x0e, 0x00, 0x00,
- 0x28, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x54, 0x0e,
- 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x28, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x0d,
- 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00,
- 0xc4, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xb4, 0x0e, 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xd8, 0x0e, 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_ENGLISH__
-
-#if defined(__PV_LANGUAGE_GERMAN__)
-
-// wake-word = hey computer
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xa9, 0x5b, 0x9a, 0x5d, 0x4f, 0x7b, 0x71, 0x04, 0x94, 0xb2, 0x6c, 0x15, 0x29, 0xbf, 0xde, 0x31, 0x9c, 0xa9,
- 0x74, 0x68, 0x62, 0xfe, 0x9f, 0x16, 0x8d, 0xe3, 0xeb, 0x5e, 0x09, 0x1c, 0xaf, 0x7a, 0xbd, 0x42, 0x32, 0x40,
- 0x7c, 0xbd, 0xe8, 0x62, 0x32, 0xa3, 0x0c, 0xfd, 0x13, 0x16, 0xd9, 0x56, 0x8a, 0x8e, 0x8c, 0xcd, 0xc9, 0x06,
- 0x6c, 0x29, 0x42, 0xe4, 0x78, 0x9a, 0x07, 0x13, 0x77, 0xff, 0x6e, 0x47, 0xa5, 0x5f, 0xd2, 0xec, 0x28, 0x70,
- 0xb5, 0x69, 0x31, 0xc7, 0xe0, 0x98, 0xbd, 0x15, 0x1d, 0xbc, 0x84, 0xe3, 0xe3, 0x5f, 0x6b, 0x51, 0x1f, 0x38,
- 0x2f, 0xe6, 0xd2, 0x23, 0xb4, 0x61, 0x5d, 0xb3, 0x2b, 0xf0, 0x17, 0xf0, 0x63, 0xca, 0x51, 0x61, 0x85, 0xfc,
- 0xab, 0xed, 0xab, 0xc7, 0x16, 0xa0, 0x9e, 0xf4, 0x16, 0xb5, 0xe3, 0x96, 0xda, 0x56, 0x78, 0x2b, 0xea, 0x6e,
- 0x7e, 0x93, 0xb1, 0xdc, 0x91, 0x1a, 0x81, 0x38, 0xfc, 0x3d, 0x8e, 0x8c, 0xfc, 0x23, 0xb1, 0x0d, 0xd0, 0xd6,
- 0xae, 0x90, 0xab, 0x6e, 0x7d, 0xed, 0x0f, 0x7d, 0x14, 0xaf, 0x10, 0xfc, 0xa5, 0x66, 0x57, 0x63, 0x40, 0x82,
- 0xcc, 0x69, 0x1d, 0x8b, 0x55, 0x82, 0xfa, 0x48, 0x4a, 0xa0, 0x63, 0x8b, 0x57, 0x93, 0xc3, 0xe8, 0xb1, 0x52,
- 0x40, 0x14, 0xc6, 0x8a, 0xb7, 0x85, 0x7c, 0x0b, 0x51, 0x76, 0xd6, 0x6c, 0x13, 0x34, 0x87, 0x91, 0x1a, 0xbb,
- 0x7b, 0x26, 0x05, 0xdd, 0xda, 0x82, 0x5a, 0xce, 0xfd, 0xf1, 0xe0, 0x49, 0x28, 0x9a, 0x05, 0xc0, 0x11, 0x30,
- 0x1b, 0x3a, 0x6d, 0xfe, 0x21, 0x79, 0x25, 0x27, 0x9d, 0xfd, 0xa2, 0xc3, 0xc2, 0x5a, 0xc3, 0xa4, 0xf5, 0x39,
- 0xaa, 0x4b, 0x93, 0x78, 0xa0, 0xae, 0x20, 0x90, 0x07, 0xe3, 0x21, 0x4b, 0x60, 0x9f, 0x83, 0x59, 0xe9, 0xdb,
- 0x55, 0x7b, 0xed, 0x34, 0x2a, 0x06, 0x28, 0x16, 0x8d, 0x55, 0xb0, 0x38, 0x2e, 0x46, 0xb3, 0x94, 0xa9, 0x05,
- 0x30, 0x6c, 0x38, 0x41, 0xe8, 0x94, 0xc9, 0x21, 0x52, 0xbf, 0xf8, 0x50, 0x97, 0x56, 0x45, 0xa5, 0x1f, 0x2b,
- 0x55, 0xaa, 0x22, 0x58, 0x79, 0x94, 0x7c, 0x06, 0x2f, 0x30, 0xfb, 0x65, 0x37, 0xdb, 0xb0, 0x24, 0xe7, 0x5e,
- 0xab, 0x21, 0xde, 0x24, 0x9c, 0x56, 0x64, 0x5b, 0x11, 0xf8, 0xaa, 0x64, 0xa5, 0x84, 0x9f, 0xbd, 0xec, 0x56,
- 0x7c, 0xc7, 0x46, 0x15, 0x84, 0x18, 0x26, 0x9c, 0x32, 0xdd, 0xef, 0xd9, 0x93, 0x67, 0x08, 0x76, 0xa7, 0x73,
- 0x4a, 0x9c, 0xbc, 0xc4, 0x16, 0x35, 0x2a, 0x59, 0xec, 0x6c, 0x9f, 0x7e, 0x0f, 0x8d, 0x82, 0x36, 0xbc, 0xaf,
- 0x9f, 0xb0, 0x96, 0x07, 0xb6, 0x8f, 0xda, 0x4b, 0xb5, 0xe3, 0xc3, 0x00, 0x6c, 0x95, 0x43, 0x7d, 0x98, 0xaf,
- 0xa6, 0x7e, 0x38, 0x0e, 0xc1, 0x0c, 0x90, 0x51, 0x83, 0x90, 0x72, 0xaa, 0xe4, 0x50, 0x17, 0x31, 0x4f, 0x0c,
- 0x6e, 0xb7, 0x10, 0x32, 0x42, 0x03, 0xc2, 0x24, 0x57, 0x6d, 0x07, 0x93, 0x23, 0x4c, 0xd8, 0x2e, 0x7d, 0x46,
- 0x17, 0x06, 0x5f, 0xcd, 0x37, 0xa2, 0x0a, 0x0b, 0x9e, 0xb6, 0x7b, 0x82, 0x09, 0xa2, 0x65, 0x41, 0xea, 0x70,
- 0x96, 0x8e, 0x19, 0x88, 0xf6, 0xef, 0xc2, 0x45, 0x69, 0xc2, 0xd8, 0xfd, 0xfe, 0xde, 0x6a, 0x75, 0x47, 0x08,
- 0x60, 0x38, 0xbd, 0x9d, 0xb0, 0xf5, 0x34, 0xca, 0x7b, 0xcb, 0x59, 0x86, 0x6c, 0xa2, 0x1a, 0x76, 0xa9, 0x8a,
- 0x36, 0x97, 0xe7, 0xa9, 0x2d, 0xdf, 0xfe, 0x1f, 0xdf, 0xa1, 0xfd, 0x07, 0x94, 0xe4, 0x09, 0x94, 0x30, 0xa2,
- 0x75, 0x31, 0xb8, 0xce, 0xb0, 0xd6, 0x6d, 0xb9, 0x46, 0xc2, 0xfa, 0xfc, 0xbc, 0xf0, 0x26, 0x24, 0x49, 0x42,
- 0x5d, 0x53, 0x19, 0xd4, 0x58, 0x5e, 0x77, 0x89, 0xdd, 0xad, 0xd3, 0xd7, 0xd7, 0xb8, 0xb9, 0xaa, 0x05, 0x67,
- 0xdb, 0x5f, 0xfe, 0xad, 0xa8, 0x31, 0xc1, 0xb2, 0x86, 0x31, 0x1d, 0x25, 0x60, 0xf6, 0x88, 0xa8, 0x6c, 0x2e,
- 0xee, 0x99, 0xf6, 0x68, 0x1d, 0x2d, 0x2b, 0x30, 0x69, 0xca, 0xd9, 0x05
-};
-
-// context = beleuchtung
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x64, 0x65, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x22, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x20, 0x24, 0x76, 0x72,
+ 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
+ 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x22, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa7, 0xd9, 0x84, 0xd9, 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88,
+ 0xd9, 0x84, 0xd8, 0xa9, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xaa, 0xd9,
+ 0x81, 0xd8, 0xa7, 0xd8, 0xad, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x33, 0x00,
+ 0x00, 0x00, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x00, 0xd8, 0xa7, 0xd9, 0x84, 0xd9,
+ 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88, 0xd9, 0x84, 0xd8, 0xa9, 0x00, 0xd8, 0xaa, 0xd9, 0x81, 0xd8, 0xa7,
+ 0xd8, 0xad, 0x00, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x00, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1e, 0x00,
+ 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x46, 0x00,
+ 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00,
+ 0x7c, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa6, 0x00,
+ 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
+ 0xc4, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xd6, 0x00,
+ 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xea, 0x00, 0x00, 0x00,
+ 0xf1, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x03, 0x01, 0x00, 0x00, 0x07, 0x01,
+ 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x16, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00,
+ 0x21, 0x01, 0x00, 0x00, 0x27, 0x01, 0x00, 0x00, 0x2b, 0x01, 0x00, 0x00, 0x30, 0x01, 0x00, 0x00, 0x36, 0x01,
+ 0x00, 0x00, 0x02, 0x10, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x02, 0x1a, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x20, 0x09,
+ 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10,
+ 0x16, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20,
+ 0x24, 0x03, 0x09, 0x10, 0x08, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03,
+ 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24,
+ 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a,
+ 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a,
+ 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03,
+ 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11,
+ 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x10, 0x08,
+ 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x0c, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a,
+ 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a, 0x0c, 0x0e, 0x21, 0x0e, 0x0e, 0x21, 0x0e, 0x10, 0x0e, 0x21, 0x0e, 0x03,
+ 0x0e, 0x21, 0x0e, 0x1a, 0x0e, 0x21, 0x0e, 0x1a, 0x0c, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x0e, 0x1a, 0x24, 0x10,
+ 0x0e, 0x10, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x18, 0x10, 0x0a, 0x10,
+ 0x11, 0x10, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x11, 0x18, 0x10, 0x0a, 0x11, 0x10,
+ 0x18, 0x03, 0x0a, 0x11, 0x18, 0x03, 0x0a, 0x11, 0x03, 0x0c, 0x18, 0x03, 0x0a, 0x11, 0x1a, 0x0c, 0x18, 0x1a,
+ 0x0a, 0x10, 0x11, 0x18, 0x1a, 0x0a, 0x10, 0x11, 0x10, 0x18, 0x1a, 0x0a, 0x11, 0x18, 0x1a, 0x0a, 0x11, 0x10,
+ 0x18, 0x1a, 0x0a, 0x11, 0x1a, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69,
+ 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x18, 0x00,
+ 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_ARABIC__
+
+#if defined(__PV_LANGUAGE_GERMAN__)
+
+// wake-word = hey computer
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x97, 0x6f, 0x9c, 0x1d, 0x10, 0xb1, 0xbe, 0xcc, 0x81, 0xc4, 0xe7, 0xf1, 0xeb, 0xcd, 0x55, 0xd6, 0x74, 0x17,
+ 0xed, 0x0d, 0x6a, 0xbe, 0x39, 0xf7, 0xc6, 0x32, 0xe8, 0x31, 0x27, 0x37, 0x98, 0xea, 0x12, 0xbb, 0x53, 0xd6,
+ 0xa5, 0x80, 0xe7, 0x7d, 0x67, 0x29, 0x87, 0xf7, 0x09, 0x46, 0xe2, 0x3b, 0x52, 0xbb, 0x64, 0x92, 0x53, 0xb2,
+ 0x3d, 0x09, 0xd4, 0xa8, 0x7a, 0x34, 0x80, 0xfd, 0x6d, 0x5d, 0x33, 0x9e, 0x85, 0xb3, 0x2c, 0xd0, 0xc4, 0x52,
+ 0xe4, 0x9d, 0x46, 0x0c, 0x83, 0x36, 0x48, 0x34, 0xb2, 0xfb, 0x51, 0xad, 0xd4, 0x78, 0x30, 0x87, 0xfd, 0xf6,
+ 0x79, 0x60, 0x3a, 0x4d, 0x53, 0xb8, 0x80, 0x58, 0xa2, 0xf1, 0x68, 0x9e, 0x95, 0x72, 0x9e, 0xbe, 0xd9, 0xa5,
+ 0xdc, 0x15, 0xaa, 0x18, 0x41, 0xc6, 0x9f, 0xfc, 0x09, 0xef, 0x5a, 0x3a, 0x9f, 0xda, 0x40, 0x5d, 0x32, 0xef,
+ 0xad, 0x90, 0x22, 0xa1, 0xc7, 0xd7, 0xa0, 0x19, 0xbf, 0xa2, 0x17, 0xd6, 0xcb, 0x2a, 0x81, 0xa2, 0x1d, 0x02,
+ 0xcf, 0x16, 0xea, 0x2a, 0x29, 0x7a, 0xbc, 0x34, 0x97, 0x83, 0x75, 0x31, 0x7d, 0x7f, 0xf6, 0x1b, 0x72, 0xdb,
+ 0x07, 0xaf, 0xdd, 0xb6, 0xf9, 0x2a, 0xa4, 0x8d, 0x38, 0xe4, 0x43, 0xd0, 0x40, 0x66, 0x68, 0x4a, 0x2f, 0x21,
+ 0x23, 0xb5, 0x22, 0x42, 0x27, 0x5a, 0x03, 0x94, 0x93, 0x6d, 0x99, 0xa7, 0x6f, 0x13, 0x4e, 0x4f, 0x32, 0x6e,
+ 0x8f, 0x5e, 0x36, 0x19, 0xe1, 0x32, 0x08, 0x58, 0xc4, 0xa3, 0xf7, 0x60, 0x17, 0xec, 0xea, 0x78, 0x1d, 0x2b,
+ 0xbc, 0x6f, 0x80, 0x97, 0x88, 0x88, 0x6f, 0xf9, 0xf4, 0x99, 0x15, 0x12, 0x25, 0x54, 0xdf, 0x02, 0xdb, 0x6b,
+ 0x35, 0x04, 0x51, 0xd7, 0x5d, 0x7e, 0xee, 0xef, 0x85, 0x48, 0x55, 0x5c, 0x70, 0x70, 0xbb, 0xc2, 0x8f, 0x92,
+ 0x67, 0x43, 0x81, 0xa1, 0xca, 0x89, 0xf7, 0xa4, 0xd1, 0xa9, 0x86, 0x34, 0x41, 0xfa, 0xc0, 0x04, 0x9b, 0xcd,
+ 0x7e, 0x45, 0xbd, 0x8f, 0x72, 0x06, 0x0c, 0x40, 0x3e, 0x68, 0x62, 0x08, 0x76, 0xca, 0xbe, 0xef, 0xad, 0x18,
+ 0x3f, 0x2c, 0x68, 0x99, 0xfb, 0xb0, 0x9b, 0x4b, 0x64, 0x90, 0x8c, 0x70, 0xfe, 0x9d, 0xb4, 0x99, 0x3f, 0x30,
+ 0x5e, 0x8a, 0xea, 0x72, 0x2d, 0x2b, 0xb6, 0x77, 0x3f, 0x6e, 0xfd, 0x47, 0x7d, 0x1d, 0x44, 0xcb, 0x2d, 0x86,
+ 0x56, 0x95, 0xbf, 0xc9, 0xf8, 0x13, 0x3a, 0x3b, 0xd8, 0x15, 0x29, 0x08, 0x12, 0x34, 0x16, 0xca, 0x01, 0xde,
+ 0x99, 0xc9, 0xe7, 0x1a, 0x56, 0x64, 0x17, 0x2a, 0x1a, 0x24, 0xb8, 0x50, 0x01, 0x5c, 0x89, 0x07, 0x0c, 0x8c,
+ 0x9c, 0x0c, 0x1a, 0x3f, 0xea, 0x05, 0x67, 0x84, 0xd5, 0xc7, 0x6f, 0xe2, 0x3f, 0x92, 0x7c, 0x62, 0x0b, 0xb9,
+ 0xaa, 0xac, 0xa3, 0x68, 0x72, 0xb1, 0xca, 0x68, 0xf4, 0x3d, 0x95, 0x06, 0x14, 0x55, 0x4f, 0xb4, 0x84, 0x3d,
+ 0x5c, 0x49, 0x25, 0x52, 0x0a, 0x3a, 0xf5, 0x8b, 0x2d, 0x5f, 0x3e, 0x3d, 0x71, 0x0d, 0xae, 0xa1, 0x9d, 0x22,
+ 0xc7, 0x6e, 0xcf, 0x94, 0xec, 0xc5, 0xc0, 0x10, 0xbd, 0xc7, 0x54, 0x84, 0x72, 0x9a, 0xf3, 0x2e, 0xd0, 0xe0,
+ 0x29, 0x54, 0xda, 0xe2, 0x69, 0x76, 0x7c, 0x71, 0x5d, 0x1c, 0xb9, 0x7a, 0xe8, 0x5f, 0x19, 0x34, 0xe8, 0x49,
+ 0xa6, 0x61, 0x9c, 0x37, 0x0a, 0x5c, 0xac, 0x4b, 0x25, 0xe1, 0x44, 0x82, 0x0b, 0xe1, 0xe8, 0xbb, 0xdb, 0xae,
+ 0xcd, 0x55, 0x7b, 0xa9, 0xab, 0x94, 0x65, 0x15, 0x79, 0x27, 0x40, 0x83, 0x97, 0x08, 0xc2, 0x22, 0xb0, 0x31,
+ 0x36, 0x3a, 0x1e, 0x7e, 0x7d, 0x2b, 0x78, 0x30, 0x7c, 0x49, 0x1c, 0xa2, 0x65, 0x41, 0x95, 0x28, 0xef, 0x4d,
+ 0xa6, 0xb5, 0xab, 0xd9, 0xc7, 0x87, 0x18, 0xa9, 0x93, 0xb3, 0x78, 0x07, 0xf6, 0x62, 0x15, 0x58, 0x69, 0x50,
+ 0x52, 0xc8, 0x68, 0x37, 0xf3, 0x3e, 0x4e, 0x4b, 0xa8, 0x85, 0x1d, 0xcc, 0x77, 0x0e, 0x9e, 0x4c, 0x13, 0xee,
+ 0x72, 0xb4, 0xf4, 0x8f, 0x47, 0x8e, 0x55, 0x74, 0x45, 0xc6, 0x2f, 0x43
+};
+
+// context = beleuchtung
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x64, 0x65, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f,
0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x66, 0xc3, 0xa4, 0x72, 0x62,
@@ -751,49 +575,511 @@ static const uint8_t CONTEXT_ARRAY[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
-#endif // __PV_LANGUAGE_GERMAN__
+#endif // __PV_LANGUAGE_GERMAN__
+
+#if defined(__PV_LANGUAGE_ENGLISH__)
+
+// wake-word = picovoice
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x1a, 0x68, 0xd0, 0xd2, 0x03, 0xc2, 0x6e, 0xa8, 0x55, 0x24, 0x05, 0xa9, 0xa4, 0x4b, 0xb8, 0x1d, 0x5b, 0x39,
+ 0x6b, 0xc1, 0xb0, 0x5b, 0xe0, 0x23, 0xa6, 0x59, 0x0a, 0xab, 0x04, 0x94, 0xfb, 0xd5, 0x69, 0x30, 0x65, 0x58,
+ 0x41, 0x10, 0x27, 0x73, 0x31, 0x4c, 0xe6, 0x26, 0x51, 0x2b, 0x83, 0x4a, 0x98, 0x6d, 0x3c, 0xf3, 0x34, 0xb2,
+ 0x2b, 0xb2, 0xa6, 0x30, 0x78, 0x76, 0x70, 0x32, 0x82, 0x89, 0x9f, 0xc2, 0xd8, 0x40, 0x06, 0x7e, 0x5c, 0x4f,
+ 0xa6, 0x03, 0xd8, 0x0a, 0x80, 0x37, 0xfe, 0x92, 0x90, 0x0c, 0x9d, 0xd3, 0x77, 0xf6, 0xdc, 0xab, 0x9a, 0x8d,
+ 0x52, 0x1b, 0x5f, 0x15, 0x9c, 0x60, 0x87, 0xba, 0xd0, 0x36, 0xf4, 0x0e, 0xe2, 0x31, 0xef, 0x88, 0x9a, 0x33,
+ 0xd7, 0xaf, 0xb2, 0xdc, 0x62, 0x1d, 0xb2, 0xbb, 0x00, 0x99, 0x1f, 0x6b, 0xd7, 0xd4, 0x60, 0x68, 0xd4, 0x81,
+ 0x7d, 0xcc, 0x08, 0x04, 0xe5, 0x39, 0x47, 0x34, 0xc8, 0x9a, 0xce, 0x73, 0xe8, 0x4f, 0xf3, 0xa5, 0x3c, 0x76,
+ 0x75, 0x96, 0x73, 0x46, 0xc3, 0x4b, 0x9e, 0x00, 0x94, 0x3e, 0xa7, 0x24, 0x71, 0x8a, 0x16, 0xc2, 0x85, 0x66,
+ 0x68, 0xde, 0x07, 0xeb, 0xba, 0xa0, 0xbe, 0x92, 0xf6, 0xd8, 0xb7, 0x73, 0xe7, 0xe0, 0xf0, 0xc8, 0x12, 0x4a,
+ 0x4e, 0xd8, 0x0e, 0xac, 0x3b, 0x55, 0x7e, 0x2a, 0x33, 0x72, 0x65, 0x25, 0xe7, 0x85, 0xce, 0x5b, 0xe1, 0xa2,
+ 0x89, 0x8f, 0xc3, 0xfb, 0x6c, 0xf6, 0x64, 0x58, 0xa3, 0xc9, 0x81, 0x24, 0x0f, 0x9f, 0x2f, 0x2d, 0x00, 0x07,
+ 0x68, 0x03, 0xd7, 0x5d, 0x41, 0x39, 0xe8, 0xbf, 0xc4, 0x0a, 0x84, 0x81, 0x39, 0x5b, 0x82, 0x48, 0x42, 0x7b,
+ 0xa8, 0x52, 0x7b, 0x0b, 0x26, 0xd6, 0x83, 0xd5, 0x2b, 0x33, 0x32, 0x1d, 0x16, 0xab, 0x2c, 0xbe, 0x75, 0xca,
+ 0x69, 0x07, 0x1d, 0x00, 0x1b, 0x56, 0x59, 0xe3, 0xea, 0x87, 0x8f, 0x3f, 0x1d, 0xf4, 0xff, 0xf1, 0xf5, 0xda,
+ 0x57, 0x9e, 0xae, 0xa9, 0xab, 0x3c, 0xfd, 0xc8, 0x0b, 0x95, 0x22, 0x16, 0x45, 0x13, 0xf8, 0x36, 0x18, 0x16,
+ 0xac, 0x8b, 0x60, 0xa3, 0x2d, 0xf0, 0xd3, 0x14, 0x60, 0x97, 0xdd, 0x11, 0x81, 0x52, 0xf5, 0x37, 0xf2, 0xbc,
+ 0xa4, 0x72, 0x2e, 0xc8, 0x8d, 0xbf, 0xa3, 0x9e, 0x5e, 0xfa, 0xef, 0x23, 0x45, 0x91, 0x8a, 0x86, 0x66, 0x13,
+ 0x05, 0x6e, 0x3d, 0xbc, 0xd7, 0xef, 0xe1, 0x44, 0x02, 0x75, 0x65, 0x55, 0xcd, 0x85, 0x3e, 0x31, 0xe2, 0x8b,
+ 0x2b, 0xbd, 0x3f, 0xca, 0x4e, 0xdf, 0xb2, 0xca, 0x4b, 0x45, 0x9f, 0xf0, 0x3d, 0x97, 0x83, 0xe6, 0x0b, 0xcd,
+ 0x2b, 0xd3, 0x0d, 0xdb, 0x57, 0xd1, 0x18, 0xfa, 0xcf, 0x84, 0x50, 0xff, 0xdb, 0xa6, 0x5d, 0x7c, 0x0c, 0x71,
+ 0x8e, 0xb2, 0x36, 0x61, 0x13, 0xa4, 0x41, 0x26, 0xcf, 0x8d, 0xa8, 0xf8, 0x0f, 0xef, 0xb8, 0x2a, 0x4d, 0xf6,
+ 0x6b, 0x09, 0x5e, 0x5f, 0xf8, 0x8e, 0x4e, 0x9b, 0x68, 0x3d, 0x73, 0xa0, 0xdd, 0x1b, 0x8c, 0x56, 0x14, 0x98,
+ 0xf7, 0xc8, 0xd6, 0x99, 0x52, 0xcf, 0x7b, 0x11, 0x70, 0xe2, 0x22, 0x06, 0x7e, 0x0f, 0x0e, 0xd2, 0x5d, 0x58,
+ 0x74, 0xfc, 0x1a, 0xf9, 0xc9, 0x9f, 0xd8, 0x42, 0x0b, 0xe3, 0xa9, 0x28, 0xab, 0xce, 0x6b, 0x19, 0x4b, 0xea,
+ 0x53, 0x8b, 0x4d, 0x53, 0x81, 0xca, 0xec, 0x56, 0x82, 0xa5, 0x63, 0xbb, 0x6a, 0x11, 0x48, 0xe2, 0xc4, 0x4e,
+ 0xee, 0x24, 0x19, 0x16, 0x81, 0xb0, 0xa3, 0xfa, 0xe5, 0x2e, 0x0d, 0x89, 0x0b, 0x2f, 0xe0, 0x03, 0x83, 0x8b,
+ 0x3a, 0x75, 0xf4, 0x3a, 0x7e, 0x7c, 0x87, 0x7a, 0x68, 0x44, 0x5e, 0xb9, 0xd0, 0x50, 0xfc, 0xe3, 0x57, 0xc0,
+ 0xaf, 0xbb, 0x1f, 0xe2, 0x72, 0x3a, 0xc4, 0x9a, 0xa5, 0xf2, 0x7c, 0x8a, 0xe7, 0xad, 0xb8, 0x4b, 0x07, 0xa7,
+ 0xcb, 0xfd, 0x6c, 0x10, 0x13, 0x36, 0xec, 0x46, 0x73, 0x3b, 0xec, 0x84, 0xc3, 0x8f, 0x7a, 0x53, 0xf1, 0x9f,
+ 0x05, 0x92, 0xad, 0x11, 0xad, 0xe2, 0x5f, 0xe6, 0xf7, 0xc1, 0xbe, 0x50, 0x18, 0xf0, 0x25, 0xe0, 0x07, 0x51,
+ 0x7f, 0x5d, 0x42, 0xb9, 0xa8, 0x55, 0x9d, 0x01, 0x32, 0x70, 0xdb, 0x77, 0x7f, 0xe8, 0xa3, 0x94, 0xe8, 0x17,
+ 0x03, 0x1f, 0x22, 0x5c, 0x21, 0x20, 0x35, 0xea, 0x7b, 0xb5, 0xcb, 0xc7, 0x59, 0x8e, 0x08, 0x55, 0x91, 0xdd,
+ 0x35, 0x58, 0xc9, 0x37, 0xa5, 0xfa, 0xcb, 0x7d, 0x3d, 0x74, 0x45, 0xae, 0xe8, 0x1c, 0xd4, 0xe4, 0x96, 0x11,
+ 0x7c, 0x30, 0x27, 0xd7, 0x3a, 0xc2, 0xfb, 0x0c, 0x03, 0xa7, 0xe3, 0xaa, 0xdf, 0xa2, 0x81, 0xbe, 0xae, 0x12,
+ 0x3d, 0x0d, 0x23, 0x58, 0x3a, 0x7c, 0x8a, 0x33, 0x0a, 0xc9, 0xdd, 0x86, 0x8d, 0xaa, 0xf8, 0x76, 0x78, 0x89,
+ 0x33, 0xe0, 0xd7, 0x53, 0xce, 0x36, 0x21, 0x86, 0xf9, 0xe2, 0x6d, 0xda, 0x63, 0xf5, 0x18, 0xfe, 0xff, 0x66,
+ 0x19, 0x5e, 0x46, 0x4c, 0x20, 0xcb, 0x85, 0xf8, 0x93, 0x9e, 0xf5, 0xb3, 0x1a, 0xe3, 0x77, 0x4e, 0xc0, 0xeb,
+ 0xfb, 0xe3, 0xb3, 0xed, 0x23, 0x39, 0xfd, 0xfd, 0x5d, 0xa0, 0x4c, 0x3c, 0xdb, 0x62, 0x1e, 0xf8, 0xbb, 0xd6,
+ 0x43, 0x4a, 0x2c, 0x4c, 0x7c, 0xea, 0x5f, 0xc4, 0xf3, 0x82, 0x3c, 0x22, 0x02, 0x79, 0xd2, 0xb9, 0xa9, 0xaa,
+ 0x4f, 0x9e, 0xdd, 0x0e, 0x4d, 0xb4, 0xdd, 0x09, 0xde, 0x71, 0xd8, 0x9b, 0xdf, 0xd1, 0x0f, 0xeb, 0x34, 0x50,
+ 0xea, 0xc6, 0x31, 0xe7, 0xb2, 0x2b, 0x98, 0x95, 0x0a, 0x3c, 0x39, 0xc2, 0xf2, 0x7a, 0x56, 0x64, 0xfb, 0x15,
+ 0x07, 0x34, 0x3b, 0x93, 0x51, 0xd9, 0x34, 0xad, 0xc5, 0x90, 0x2b, 0x72, 0x39, 0x37, 0x1c, 0xe3, 0xb1, 0x3d,
+ 0x37, 0x0b, 0x5c, 0xa7, 0x78, 0xab, 0x32, 0x0b, 0xf5, 0xb5, 0x99, 0x1b, 0xb6, 0xee, 0x39, 0xb8, 0x2a, 0x12,
+ 0x30, 0x1c, 0xcb, 0xa7, 0xc3, 0x9b, 0xc4, 0xd8, 0x6f, 0x47, 0xea, 0x55, 0xac, 0x59, 0x45, 0x3c, 0x9f, 0xfc,
+ 0xea, 0x7a, 0x0e, 0xa6, 0x59, 0xdd, 0xb7, 0xce, 0x88, 0x77, 0x51, 0xd1, 0x1d, 0xd7, 0xda, 0x7d, 0x62, 0x7d,
+ 0x28, 0xa3, 0x90, 0x13, 0x45, 0x2e, 0x21, 0xc9, 0x6c, 0x12, 0xf3, 0xc9, 0x4e, 0xf9, 0x19, 0x2c, 0x82, 0xf3,
+ 0x72, 0xa7, 0xd6, 0xa5, 0x0b, 0x5d, 0xcf, 0xd9, 0x24, 0x41, 0x1e, 0xf8, 0xac, 0x9f, 0x93, 0xd1, 0xae, 0xc3,
+ 0x1c, 0xb2, 0xde, 0x5a, 0x1c, 0xc1, 0x0e, 0x37, 0x3c, 0x14, 0xca, 0xfe, 0x49, 0x50, 0xd9, 0x98, 0x26, 0x99,
+ 0x81, 0x87, 0xa6, 0x85, 0x09, 0xf0, 0x7c, 0x31, 0xab, 0xbe, 0xd8, 0x7b, 0xb6, 0xa1, 0x6b, 0xef, 0x97, 0x8a,
+ 0xd3, 0xfe, 0xfb, 0x94, 0xc4, 0x05, 0x95, 0x13, 0x6f, 0xfa, 0x13, 0xb7, 0x96, 0x8e, 0x0c, 0xb4, 0xd1, 0xf2,
+ 0x55, 0x08, 0x32, 0x88, 0xb1, 0x5e, 0x53, 0xa4, 0x50, 0xeb, 0x3a, 0x07, 0x7a, 0xc7, 0x47, 0x53, 0xc4, 0xac,
+ 0x3a, 0x34, 0xd1, 0x71, 0x17, 0x9f, 0xc0, 0x33, 0xed, 0xde, 0x4d, 0x8e, 0x1d, 0xfa, 0x63, 0xc2, 0xc5, 0x30,
+ 0x05, 0xff
+};
+
+// context = smart_lighting
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x65, 0x6e, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x98, 0x1b, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c,
+ 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20,
+ 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67,
+ 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x61,
+ 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x74, 0x6f,
+ 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
+ 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69,
+ 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74,
+ 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c,
+ 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x74, 0x6f,
+ 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
+ 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
+ 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
+ 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63,
+ 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68,
+ 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d,
+ 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
+ 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
+ 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
+ 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72,
+ 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20,
+ 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
+ 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f,
+ 0x6c, 0x6f, 0x72, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74,
+ 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
+ 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
+ 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x61, 0x6c,
+ 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x73, 0x74,
+ 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
+ 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20,
+ 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20,
+ 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68,
+ 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
+ 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
+ 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67,
+ 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
+ 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
+ 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28,
+ 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
+ 0x73, 0x5d, 0x20, 0x5b, 0x69, 0x6e, 0x2c, 0x20, 0x61, 0x74, 0x5d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x24, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66,
+ 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66,
+ 0x66, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
+ 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28,
+ 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x6f,
+ 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
+ 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c,
+ 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20,
+ 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68,
+ 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74,
+ 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73,
+ 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24,
+ 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68,
+ 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d,
+ 0x20, 0x6f, 0x66, 0x66, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65,
+ 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
+ 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68,
+ 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x62, 0x6c, 0x75, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x72, 0x65,
+ 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x72, 0x61, 0x6e, 0x67,
+ 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x69, 0x6e, 0x6b, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x72, 0x65, 0x64, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0x77, 0x68, 0x69, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
+ 0x20, 0x22, 0x79, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x74,
+ 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62,
+ 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x62, 0x65, 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x68,
+ 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6b,
+ 0x69, 0x74, 0x63, 0x68, 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6c,
+ 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2d, 0x20, 0x22, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x0a, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x1d, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x37, 0x00,
+ 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00,
+ 0x57, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00,
+ 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00,
+ 0x8d, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x9d, 0x00, 0x00, 0x00, 0xa1, 0x00,
+ 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00,
+ 0x61, 0x6c, 0x6c, 0x00, 0x61, 0x74, 0x00, 0x62, 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x65,
+ 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x6c, 0x75, 0x65, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x00,
+ 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x67, 0x72, 0x65, 0x65, 0x6e,
+ 0x00, 0x68, 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x00, 0x69, 0x6e, 0x00, 0x6b, 0x69, 0x74, 0x63, 0x68, 0x65,
+ 0x6e, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x00, 0x6c, 0x69, 0x76,
+ 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x6d, 0x61, 0x6b, 0x65, 0x00, 0x6f, 0x66, 0x66, 0x00,
+ 0x6f, 0x6e, 0x00, 0x6f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x00, 0x70,
+ 0x69, 0x6e, 0x6b, 0x00, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x00, 0x72, 0x65, 0x64, 0x00, 0x73, 0x65, 0x74,
+ 0x00, 0x73, 0x68, 0x75, 0x74, 0x00, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x00, 0x74, 0x68, 0x65, 0x00, 0x74,
+ 0x6f, 0x00, 0x74, 0x75, 0x72, 0x6e, 0x00, 0x77, 0x68, 0x69, 0x74, 0x65, 0x00, 0x79, 0x65, 0x6c, 0x6c, 0x6f,
+ 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
+ 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
+ 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x1d, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x25, 0x00,
+ 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x1d, 0x00,
+ 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
+ 0x30, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x44, 0x00,
+ 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00,
+ 0x52, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x66, 0x00,
+ 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00,
+ 0x75, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7d, 0x00,
+ 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00,
+ 0x04, 0x15, 0x02, 0x1f, 0x07, 0x02, 0x20, 0x1c, 0x22, 0x16, 0x07, 0x0b, 0x09, 0x1c, 0x22, 0x16, 0x07, 0x15,
+ 0x22, 0x08, 0x0d, 0x17, 0x13, 0x14, 0x15, 0x01, 0x26, 0x03, 0x1f, 0x14, 0x03, 0x15, 0x0c, 0x14, 0x04, 0x15,
+ 0x0c, 0x0f, 0x1c, 0x12, 0x17, 0x10, 0x04, 0x15, 0x24, 0x0d, 0x11, 0x17, 0x14, 0x11, 0x08, 0x03, 0x17, 0x15,
+ 0x06, 0x1f, 0x1d, 0x15, 0x06, 0x1f, 0x15, 0x11, 0x23, 0x11, 0x18, 0x1c, 0x22, 0x16, 0x16, 0x0d, 0x14, 0x04,
+ 0x0e, 0x01, 0x17, 0x04, 0x17, 0x04, 0x1c, 0x03, 0x17, 0x13, 0x04, 0x1c, 0x11, 0x17, 0x13, 0x1b, 0x02, 0x17,
+ 0x1f, 0x1c, 0x12, 0x1b, 0x11, 0x18, 0x14, 0x1b, 0x0c, 0x1b, 0x03, 0x15, 0x1c, 0x0b, 0x09, 0x1d, 0x0b, 0x1f,
+ 0x1e, 0x03, 0x1f, 0x1d, 0x24, 0x11, 0x08, 0x0a, 0x03, 0x0a, 0x12, 0x1f, 0x03, 0x1f, 0x11, 0x1f, 0x22, 0x1f,
+ 0x0c, 0x17, 0x10, 0x24, 0x06, 0x1f, 0x24, 0x06, 0x1f, 0x25, 0x0b, 0x15, 0x19, 0x00, 0x0f, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x12, 0x00,
+ 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x22, 0x00,
+ 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1d, 0x00,
+ 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x10, 0x00,
+ 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
+ 0x07, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
+ 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00,
+ 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
+ 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00,
+ 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73, 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
+ 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00,
+ 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73,
+ 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00,
+ 0x31, 0x00, 0x00, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x63, 0x68,
+ 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x00, 0x63, 0x68, 0x61,
+ 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66, 0x00, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x04, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x64, 0x0a,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00,
+ 0x44, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x3c, 0x02,
+ 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x58, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0xb8, 0x00,
+ 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00,
+ 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x90, 0x01,
+ 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x34, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x34, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x5c, 0x01, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x01, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00,
+ 0xa4, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd0, 0x01,
+ 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0xa4, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00,
+ 0x2c, 0x02, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x1c, 0x02, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x54, 0x02, 0x00, 0x00, 0xc8, 0x02, 0x00, 0x00, 0x3c, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x6c, 0x02, 0x00, 0x00, 0xa4, 0x02, 0x00, 0x00, 0x54, 0x02, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x02, 0x00, 0x00, 0x6c, 0x02,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x02, 0x00, 0x00,
+ 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x02,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x02, 0x00, 0x00,
+ 0xa4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x02,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00,
+ 0xc8, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xf4, 0x02,
+ 0x00, 0x00, 0x18, 0x03, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0xf4, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00,
+ 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00,
+ 0xf8, 0x05, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x88, 0x03, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0xd0, 0x03,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00,
+ 0x38, 0x04, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x28, 0x04, 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x4c, 0x04, 0x00, 0x00, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00,
+ 0x74, 0x04, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x04,
+ 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xb4, 0x04, 0x00, 0x00, 0xa0, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xc8, 0x04, 0x00, 0x00, 0xb4, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x38, 0x05, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x50, 0x05, 0x00, 0x00, 0x74, 0x05, 0x00, 0x00, 0x38, 0x05,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x05, 0x00, 0x00,
+ 0x50, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x05,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0xd4, 0x05,
+ 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xb0, 0x05, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xc4, 0x05, 0x00, 0x00, 0xb0, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xe8, 0x05, 0x00, 0x00, 0xd4, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x28, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x10, 0x06,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00,
+ 0x28, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x06,
+ 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x64, 0x06, 0x00, 0x00, 0x50, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x88, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x9c, 0x06, 0x00, 0x00, 0x88, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xec, 0x06, 0x00, 0x00, 0x10, 0x07, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0xec, 0x06,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0xc0, 0x08, 0x00, 0x00,
+ 0xf8, 0x08, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x20, 0x07,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x6c, 0x07, 0x00, 0x00,
+ 0x90, 0x07, 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x48, 0x07,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x07, 0x00, 0x00,
+ 0x6c, 0x07, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0xdc, 0x07,
+ 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xcc, 0x07, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xf0, 0x07, 0x00, 0x00, 0xdc, 0x07, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x2c, 0x08, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x08, 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x50, 0x08, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x74, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x08, 0x00, 0x00, 0xb0, 0x08, 0x00, 0x00, 0x74, 0x08,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x08, 0x00, 0x00,
+ 0x8c, 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x08,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
+ 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd4, 0x08, 0x00, 0x00, 0xc0, 0x08,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x08, 0x00, 0x00,
+ 0xd4, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x09, 0x00, 0x00,
+ 0xf8, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00,
+ 0x6c, 0x09, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x5c, 0x09, 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x6c, 0x09, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xbc, 0x09, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe0, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf4, 0x09, 0x00, 0x00, 0xe0, 0x09,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x18, 0x0a, 0x00, 0x00, 0x04, 0x0a,
+ 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00,
+ 0x18, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x40, 0x0a,
+ 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x54, 0x0a, 0x00, 0x00, 0x40, 0x0a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00,
+ 0x8c, 0x0a, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0xb0, 0x0d,
+ 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x05, 0x00, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0xd4, 0x0a, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x80, 0x0b,
+ 0x00, 0x00, 0xa4, 0x0b, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xc4, 0x0a, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x0b, 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x0c, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x34, 0x0b, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x70, 0x0b, 0x00, 0x00,
+ 0x34, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x60, 0x0b,
+ 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x34, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x94, 0x0b, 0x00, 0x00,
+ 0x80, 0x0b, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
+ 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00,
+ 0xa4, 0x0b, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x0b,
+ 0x00, 0x00, 0xf4, 0x0b, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00, 0x00, 0xd0, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0c, 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x50, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x78, 0x0c, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0xb4, 0x0c, 0x00, 0x00,
+ 0x78, 0x0c, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x0c,
+ 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x78, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0c,
+ 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00,
+ 0x3c, 0x0d, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00, 0x2c, 0x0d, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x0d, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x54, 0x0d, 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x3c, 0x0d,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00,
+ 0x54, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x7c, 0x0d,
+ 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x3c, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x0d,
+ 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x64, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xc8, 0x0d,
+ 0x00, 0x00, 0xec, 0x0d, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xdc, 0x0d, 0x00, 0x00, 0xc8, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x64, 0x0e, 0x00, 0x00,
+ 0x28, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x54, 0x0e,
+ 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x28, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x0d,
+ 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00,
+ 0xc4, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xb4, 0x0e, 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xd8, 0x0e, 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_ENGLISH__
#if defined(__PV_LANGUAGE_SPANISH__)
// wake-word = hola computadora
static const uint8_t KEYWORD_ARRAY[] = {
- 0xd4, 0xbc, 0x3c, 0xc6, 0x53, 0xe3, 0xa4, 0xc2, 0x2d, 0xa6, 0x98, 0x5b, 0xeb, 0x97, 0xc3, 0xff, 0xec, 0x5f,
- 0xec, 0x07, 0x3a, 0x72, 0x68, 0x85, 0x7d, 0x38, 0xa6, 0x67, 0x39, 0x16, 0x8d, 0xf4, 0x30, 0x8e, 0x79, 0x02,
- 0x5b, 0x65, 0xbc, 0xb7, 0x93, 0x5d, 0x90, 0x8c, 0x4c, 0x91, 0xac, 0x51, 0x10, 0xc5, 0xf7, 0x5a, 0xd6, 0x69,
- 0x1f, 0x8d, 0xb1, 0x2a, 0xbc, 0xfc, 0x71, 0xb7, 0x1e, 0x94, 0xab, 0x26, 0xb7, 0x97, 0x5c, 0x70, 0x49, 0x1e,
- 0x0f, 0x33, 0x36, 0xa0, 0xfb, 0x84, 0xbb, 0x56, 0x3d, 0xb7, 0x22, 0xc9, 0x6b, 0x1b, 0xf8, 0x33, 0x51, 0xd9,
- 0x83, 0xd7, 0x2d, 0x44, 0x2f, 0x89, 0x07, 0x1f, 0x41, 0x75, 0xb1, 0xbc, 0xde, 0x21, 0xa1, 0xac, 0x8b, 0x40,
- 0xf5, 0x56, 0xa0, 0xe7, 0xab, 0x98, 0xf3, 0x03, 0x98, 0x27, 0x10, 0xd3, 0xb2, 0x6f, 0xa0, 0x27, 0x5c, 0x3e,
- 0xa8, 0x08, 0x79, 0xea, 0xf4, 0xce, 0x73, 0xf8, 0x59, 0xc9, 0xf5, 0xf3, 0xf0, 0x60, 0x2d, 0xcc, 0xc1, 0x37,
- 0x12, 0x97, 0x64, 0x0d, 0xa8, 0xf3, 0x7b, 0xcb, 0x76, 0xf0, 0x9e, 0x86, 0xe5, 0x06, 0x15, 0xd7, 0x2a, 0xeb,
- 0xd4, 0x0a, 0xd7, 0x29, 0xde, 0x06, 0x55, 0xdc, 0x7d, 0xd0, 0xd4, 0xc1, 0x44, 0x25, 0x53, 0x30, 0xd7, 0x17,
- 0xe9, 0x13, 0x2a, 0x52, 0x66, 0x6c, 0x1a, 0x8a, 0x66, 0xfd, 0xa9, 0x6d, 0x49, 0x08, 0xf0, 0x10, 0x49, 0x76,
- 0xc5, 0xd8, 0xce, 0xa9, 0x3c, 0xe5, 0xd6, 0xa5, 0xd3, 0xc3, 0x0d, 0x65, 0xa2, 0x3a, 0x1c, 0xf2, 0x37, 0xa1,
- 0xab, 0x2d, 0x26, 0x31, 0xb0, 0x4d, 0xe3, 0xd1, 0xd0, 0xfd, 0x88, 0xf5, 0x7e, 0x1a, 0xd7, 0x15, 0xf3, 0x3b,
- 0xb7, 0xdd, 0xb8, 0x4c, 0x86, 0x99, 0xf0, 0xf3, 0xb1, 0x26, 0x9d, 0x24, 0xf8, 0xd8, 0xdb, 0x4b, 0x5b, 0xc3,
- 0x91, 0x05, 0x27, 0xb3, 0x21, 0x48, 0x9c, 0x8a, 0x1b, 0x95, 0xce, 0xee, 0x7b, 0x54, 0xa2, 0xc4, 0xe8, 0x44,
- 0xe9, 0x1f, 0x1a, 0xa9, 0xff, 0x8e, 0xd1, 0x06, 0xf4, 0xab, 0x8f, 0x4f, 0x6a, 0xec, 0x47, 0xf5, 0x65, 0x7f,
- 0x19, 0x98, 0x6b, 0xbf, 0xfe, 0x51, 0x0b, 0x04, 0x38, 0xb7, 0x76, 0x63, 0x87, 0xb0, 0x90, 0x53, 0x7b, 0x49,
- 0x37, 0x25, 0xe1, 0x2a, 0x67, 0x4b, 0xcd, 0x5d, 0x71, 0x99, 0x1e, 0x50, 0xdf, 0xc9, 0x76, 0xd2, 0x84, 0xda,
- 0x0c, 0xed, 0x88, 0x1d, 0x10, 0xf3, 0x10, 0xcd, 0xfa, 0x73, 0x8d, 0x0c, 0xaa, 0x30, 0xc0, 0xd5, 0x10, 0xb6,
- 0x9d, 0xdb, 0x32, 0x41, 0x6d, 0x71, 0x9e, 0x70, 0xbb, 0xe4, 0x61, 0x87, 0xb0, 0x3a, 0xa5, 0x8b, 0x61, 0xe4,
- 0x18, 0x9a, 0x14, 0x12, 0x77, 0x52, 0x05, 0xbd, 0xd1, 0x0a, 0x75, 0x52, 0x7b, 0xe3, 0xf8, 0xca, 0xee, 0xe0,
- 0xcc, 0xb4, 0xe3, 0x17, 0xec, 0x4b, 0x35, 0x0b, 0x1b, 0x2e, 0x35, 0x83, 0x72, 0x48, 0x8f, 0x7e, 0x2a, 0x2a,
- 0x72, 0x19, 0x71, 0x1b, 0x42, 0x4e, 0x05, 0x31, 0x5d, 0x04, 0xd4, 0xb8, 0xb0, 0x09, 0xd9, 0x6d, 0x6a, 0x85,
- 0xa0, 0xfc, 0xe8, 0x4a, 0x96, 0x4d, 0xed, 0x7e, 0xd7, 0x43, 0x61, 0x17, 0x92, 0x80, 0xa1, 0x94, 0x5b, 0x5b,
- 0xd1, 0x21, 0xe2, 0xa8, 0x7e, 0xd8, 0x55, 0x74, 0x31, 0x65, 0xc8, 0xab, 0x11, 0x43, 0x33, 0xdf, 0xa2, 0x9d,
- 0x3d, 0x39, 0xdf, 0x22, 0x15, 0xac, 0x8a, 0x4b, 0x15, 0xcc, 0xa0, 0x24, 0x94, 0x6d, 0x41, 0x68, 0x18, 0xe2,
- 0xc9, 0x68, 0x13, 0xf3, 0xfa, 0x53, 0xc3, 0xe9, 0xa4, 0x98, 0x45, 0x68, 0x77, 0x7f, 0x60, 0x4a, 0x81, 0x98,
- 0x8b, 0xae, 0xe2, 0x86, 0x60, 0x9d, 0xce, 0x79, 0x9e, 0x1c, 0xc4, 0xa4, 0xc3, 0x7f, 0x7f, 0x10, 0x1b, 0x0a,
- 0x30, 0x6b, 0x6c, 0x50, 0x9a, 0x12, 0xb2, 0x46, 0x75, 0xc5, 0xb3, 0xb8, 0x7b, 0x89, 0x6e, 0xe4, 0xf5, 0xa7,
- 0x52, 0x39, 0x25, 0x48, 0xc2, 0xea, 0x6a, 0xa8, 0x25, 0xe2, 0xe8, 0xbd, 0xf1, 0xe5, 0x1c, 0x4e, 0xae, 0x5f,
- 0xac, 0x26, 0xe9, 0x95, 0xd3, 0x58, 0x3f, 0x8a, 0x67, 0x62, 0x85, 0xa6, 0xb0, 0x1d, 0xa9, 0xe7, 0x31, 0xf5,
- 0x5d, 0x31, 0x25, 0x88, 0x40, 0x7f, 0x83, 0xa6, 0x56, 0x6f, 0xbd, 0x2d, 0x87, 0xd9, 0x97, 0x81, 0x43, 0xc0,
- 0xa0, 0xa6, 0x6b, 0xfe, 0xae, 0x98, 0x7a, 0xc9, 0x8a, 0x00, 0x51, 0xff, 0x8a, 0x47, 0x33, 0x0b, 0x88, 0x95,
- 0xff, 0xa8, 0x11, 0xee, 0x4c, 0x43, 0xf4, 0x89, 0xdf, 0x4d, 0xf5, 0x07, 0xbb, 0x7e, 0x61, 0xaa, 0xcf, 0xd2,
- 0x85, 0xf6, 0xba, 0x20, 0x91, 0xc6, 0x3f, 0x3f, 0xc4, 0xb1, 0xf6, 0xb8, 0x03, 0x54, 0x68, 0x65, 0xef, 0x30,
- 0x59, 0xb3, 0xac, 0xb2, 0xe8, 0x15, 0x43, 0x09, 0x45, 0xc7, 0x07, 0x46, 0x35, 0x17, 0x9a, 0x75, 0x53, 0x5e,
- 0x98, 0x69, 0xf6, 0xf2
+ 0x1c, 0xce, 0x7c, 0xd9, 0xc2, 0x23, 0x16, 0x70, 0x85, 0xf7, 0x93, 0x1a, 0x59, 0xd0, 0x62, 0xce, 0xac, 0x16,
+ 0xd1, 0x3e, 0x05, 0x02, 0x6d, 0x26, 0x65, 0x81, 0xc9, 0xd5, 0xae, 0x93, 0x30, 0x29, 0x02, 0x0a, 0x0d, 0xc3,
+ 0xc9, 0xf7, 0x80, 0xfc, 0x2a, 0x2c, 0x76, 0x68, 0xb3, 0x78, 0x70, 0x64, 0xf6, 0xbb, 0xbe, 0x84, 0xa3, 0xae,
+ 0x4a, 0x9b, 0x96, 0x84, 0x8e, 0x5b, 0xc9, 0x8d, 0x80, 0x6a, 0xd9, 0xf8, 0x20, 0x9a, 0xcf, 0x55, 0x23, 0x33,
+ 0x7c, 0x6a, 0x99, 0x16, 0x0f, 0x04, 0x87, 0x41, 0xef, 0x3f, 0x0f, 0x20, 0xe0, 0xe6, 0xdd, 0x1f, 0x62, 0x0a,
+ 0x0c, 0x13, 0x0d, 0x59, 0x52, 0x1d, 0x6d, 0x59, 0x95, 0xec, 0xf8, 0xe1, 0x08, 0x17, 0x5a, 0xaf, 0x87, 0x6e,
+ 0xdf, 0x24, 0x2f, 0x39, 0x8e, 0xcc, 0x90, 0xbd, 0xd3, 0x3d, 0x7d, 0xba, 0x07, 0xcd, 0xe3, 0x0a, 0xf3, 0x96,
+ 0x31, 0x13, 0x3d, 0xa1, 0x0b, 0x00, 0xb2, 0x54, 0x41, 0xbe, 0x1b, 0x83, 0x5d, 0xbc, 0x44, 0x7c, 0x36, 0x69,
+ 0xd1, 0x87, 0x24, 0xf8, 0x5c, 0x72, 0xe8, 0x65, 0x65, 0x49, 0xae, 0xee, 0xe2, 0xf9, 0x13, 0x40, 0x18, 0x4a,
+ 0xaf, 0x4e, 0xf8, 0xe4, 0x65, 0xe1, 0x4e, 0x5a, 0xb9, 0xcc, 0x32, 0xab, 0x37, 0xfe, 0x82, 0x54, 0xec, 0x7c,
+ 0xb7, 0x1d, 0x09, 0x66, 0x59, 0xd5, 0x47, 0x3f, 0x71, 0xa2, 0xb8, 0x74, 0xe6, 0x41, 0x8b, 0x63, 0x0e, 0xcc,
+ 0xd7, 0xc8, 0x56, 0xa5, 0xe1, 0x06, 0x81, 0x95, 0x45, 0x5c, 0x20, 0x82, 0xdb, 0xe2, 0x5a, 0xba, 0xc6, 0x16,
+ 0x4f, 0x08, 0x51, 0xb5, 0xcd, 0x0c, 0x2f, 0x7c, 0x96, 0xff, 0xfc, 0x5e, 0x21, 0xc0, 0x14, 0xf0, 0x50, 0xa6,
+ 0x7a, 0x09, 0xbb, 0xcf, 0x4b, 0x14, 0x39, 0xc0, 0x03, 0xd3, 0x2c, 0x6a, 0x45, 0xfe, 0xf8, 0xea, 0x77, 0xd4,
+ 0x2b, 0xfb, 0x24, 0x58, 0xd1, 0x73, 0x93, 0x13, 0x3a, 0x32, 0x16, 0x3a, 0xb5, 0x64, 0x97, 0x6f, 0xc7, 0xa6,
+ 0x71, 0xee, 0x47, 0x5a, 0xeb, 0x66, 0xad, 0xb3, 0xf5, 0x1f, 0x0c, 0x14, 0x3a, 0xfc, 0xb4, 0x53, 0xc2, 0xaa,
+ 0xf6, 0x77, 0x1d, 0x0c, 0x6a, 0x6c, 0x78, 0xb8, 0xb5, 0x7d, 0xd2, 0x8b, 0x97, 0x04, 0xbe, 0x0c, 0xa9, 0xa8,
+ 0x6c, 0x48, 0x6b, 0x92, 0x14, 0x44, 0x3c, 0x6e, 0x64, 0x95, 0x0f, 0xf6, 0x0f, 0x5d, 0x74, 0xf8, 0xa6, 0xc4,
+ 0xf4, 0x26, 0x04, 0x38, 0xb5, 0x79, 0x4a, 0xe5, 0x47, 0xb2, 0xc6, 0x5a, 0x82, 0xd6, 0xfd, 0x19, 0xfd, 0xd2,
+ 0xef, 0x7b, 0x29, 0xc1, 0x2c, 0xc7, 0x03, 0xff, 0xa1, 0xfd, 0xf5, 0x91, 0x87, 0x4f, 0x8a, 0x68, 0x40, 0xdd,
+ 0xb4, 0x6d, 0x64, 0xb4, 0x8b, 0x0c, 0x87, 0x54, 0x68, 0x1b, 0xc3, 0x12, 0x52, 0xb9, 0x1f, 0x0d, 0x0b, 0x4b,
+ 0x5a, 0x88, 0x79, 0x6e, 0xdc, 0x1d, 0x45, 0x37, 0xca, 0x44, 0x18, 0xb6, 0x9f, 0x2e, 0xdc, 0x24, 0xcc, 0xb2,
+ 0x20, 0x66, 0x4e, 0x88, 0x4f, 0x3c, 0x1e, 0x52, 0x02, 0x30, 0x58, 0xb7, 0x7b, 0xaa, 0xf4, 0x95, 0xee, 0xbe,
+ 0xbc, 0xbf, 0x2a, 0x8b, 0xe8, 0xff, 0x14, 0xb5, 0xad, 0xc2, 0xfc, 0x1d, 0xef, 0xc8, 0x56, 0x4f, 0xb5, 0xa5,
+ 0x6e, 0xa4, 0x47, 0x27, 0xaa, 0x12, 0xf6, 0x8d, 0x85, 0xc9, 0xb0, 0x16, 0xbb, 0xed, 0x63, 0x64, 0xa3, 0x4d,
+ 0x71, 0x03, 0x2e, 0xa8, 0xf3, 0xdf, 0x1e, 0x03, 0x45, 0x96, 0xae, 0x71, 0xad, 0x0e, 0xf4, 0x1a, 0xec, 0x59,
+ 0xc5, 0x35, 0x7f, 0x4f, 0xbb, 0x30, 0x36, 0xff, 0x81, 0x6f, 0x17, 0xe6, 0xba, 0x1a, 0xb6, 0xb0, 0xfa, 0x52,
+ 0x45, 0xec, 0xd8, 0x8e, 0x2e, 0xef, 0x4c, 0x56, 0xba, 0x3d, 0xa8, 0x84, 0x57, 0xa1, 0x81, 0x08, 0xe0, 0x80,
+ 0x75, 0x01, 0xf3, 0x09, 0x93, 0x14, 0xd4, 0x19, 0xc4, 0xe9, 0x1c, 0xf8, 0x0e, 0xa9, 0x43, 0x02, 0xa3, 0x4d,
+ 0x21, 0xa0, 0x37, 0x35, 0x76, 0x49, 0xb5, 0xf0, 0x2b, 0x7d, 0xd8, 0x65, 0xee, 0x6a, 0xb6, 0x0a, 0x64, 0xe3,
+ 0x16, 0x1c, 0xfa, 0x49, 0x29, 0x6f, 0x4a, 0x0f, 0xab, 0x2c, 0xbc, 0x33, 0x95, 0x6d, 0xcf, 0xc7, 0x0a, 0x7c,
+ 0x4a, 0x89, 0xbc, 0x2d, 0x53, 0x06, 0x84, 0xac, 0x7a, 0x29, 0x8f, 0xea, 0xed, 0x17, 0xbb, 0x11, 0xc3, 0x73,
+ 0x68, 0x4f, 0x42, 0xe7, 0x3a, 0xf6, 0x73, 0x16, 0x00, 0xa8, 0xb9, 0x03, 0x65, 0xb1, 0xb6, 0x37, 0x22, 0x0c,
+ 0xff, 0x54, 0x8a, 0xe5, 0xf4, 0xd0, 0xe9, 0xa9, 0x85, 0x4d, 0x17, 0x6c, 0x21, 0xad, 0x04, 0x72, 0x34, 0x11,
+ 0xfc, 0x35, 0x04, 0xac, 0x46, 0xc4, 0xa0, 0xe9, 0x9e, 0x1d, 0x65, 0x6f, 0xf5, 0xcb, 0xd1, 0xe3, 0x28, 0xcf,
+ 0x5b, 0xc3, 0x9f, 0xa8, 0x7a, 0x59, 0x94, 0xb6, 0xca, 0xbd, 0x32, 0x79, 0x72, 0x41, 0x57, 0xfb, 0x03, 0x21,
+ 0x4d, 0x2a, 0x6c, 0x7c
};
// context = iluminación_inteligente
@@ -986,47 +1272,144 @@ static const uint8_t CONTEXT_ARRAY[] = {
#endif // __PV_LANGUAGE_SPANISH__
+#if defined(__PV_LANGUAGE_FARSI__)
+
+// wake-word = سلام رایانه
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x59, 0x31, 0x28, 0x1e, 0xd6, 0xd3, 0x96, 0x5b, 0xcc, 0x53, 0x9b, 0x26, 0xf2, 0xdd, 0x74, 0xe3, 0xc0, 0x07,
+ 0x05, 0xb1, 0x68, 0x0c, 0x1e, 0x4c, 0x73, 0xac, 0x70, 0xe6, 0x4c, 0x78, 0x98, 0xcb, 0x8e, 0x6e, 0xe2, 0x25,
+ 0x3c, 0xfa, 0xf6, 0x01, 0x0d, 0x8a, 0x82, 0xdd, 0xa8, 0xed, 0x0f, 0x61, 0x9b, 0x18, 0x31, 0xa5, 0x64, 0x52,
+ 0x81, 0xf6, 0xce, 0xc6, 0x7b, 0xf2, 0xb6, 0x49, 0x4f, 0x59, 0x12, 0x86, 0x72, 0xe7, 0xd8, 0x6a, 0xab, 0x54,
+ 0x67, 0x47, 0xbf, 0x29, 0xa0, 0x0e, 0x93, 0x52, 0x9d, 0x76, 0x12, 0x26, 0x1a, 0xb7, 0x36, 0x62, 0xd4, 0xc8,
+ 0x4f, 0x27, 0x62, 0x2f, 0x6e, 0x4e, 0xf8, 0xf6, 0x44, 0x7c, 0x19, 0x36, 0xb0, 0x62, 0x18, 0x04, 0x30, 0xd4,
+ 0x6e, 0x3f, 0xa9, 0x4b, 0xcd, 0xaa, 0x71, 0x23, 0xef, 0xcb, 0x2a, 0x8c, 0x56, 0x6a, 0x5e, 0x18, 0x1e, 0x0a,
+ 0xb1, 0xed, 0x1c, 0x5a, 0xeb, 0x52, 0x83, 0xd6, 0xb2, 0x8c, 0x48, 0xeb, 0x5f, 0x3f, 0xfb, 0xdf, 0x37, 0x80,
+ 0xf5, 0xb0, 0xd4, 0x5b, 0x50, 0x2d, 0x68, 0x8d, 0x84, 0x25, 0xf8, 0x93, 0xa3, 0x52, 0xec, 0x3a, 0x6d, 0x36,
+ 0x2d, 0xa4, 0xb0, 0x25, 0xf2, 0x08, 0xb3, 0x23, 0x79, 0x36, 0x52, 0x04, 0x1b, 0x1d, 0x95, 0x90, 0xb0, 0x6c,
+ 0xdc, 0x5b, 0xe5, 0xb4, 0xd4, 0x42, 0x69, 0x6b, 0xda, 0xad, 0x1f, 0xca, 0xe5, 0xa0, 0xee, 0x90, 0xdb, 0xdf,
+ 0x26, 0xd6, 0x94, 0xcc, 0x13, 0xe5, 0x07, 0xfc, 0x94, 0x34, 0x7e, 0x38, 0x52, 0x67, 0xe6, 0x2a, 0x39, 0xc0,
+ 0xd3, 0x72, 0xc5, 0x2b, 0x0c, 0x6f, 0xcf, 0x57, 0x7a, 0xd3, 0x84, 0xa2, 0x17, 0xf8, 0xea, 0xf0, 0x96, 0xce,
+ 0xa4, 0xdf, 0xa9, 0xe8, 0xa9, 0x2f, 0xea, 0x20, 0xa7, 0xc0, 0xba, 0xee, 0xb0, 0x2b, 0x42, 0xf8, 0x15, 0x76,
+ 0x55, 0x4f, 0x99, 0xb7, 0x01, 0x78, 0xc8, 0xaf, 0x69, 0xa3, 0xad, 0x13, 0xf7, 0x6e, 0x1c, 0xa7, 0xe8, 0x13,
+ 0x3c, 0x3d, 0x1e, 0xd8, 0x8b, 0x8c, 0xc5, 0x34, 0x7c, 0x11, 0x33, 0xae, 0x67, 0x14, 0x64, 0x68, 0x1f, 0xf8,
+ 0x95, 0x66, 0x4a, 0x47, 0xde, 0x58, 0x3a, 0x48, 0x09, 0xad, 0x43, 0xe1, 0x59, 0x71, 0xf6, 0xf1, 0x87, 0xc4,
+ 0x45, 0xd2, 0xf7, 0x62, 0x0c, 0x33, 0xda, 0xa2, 0x77, 0x20, 0x15, 0x45, 0x58, 0x0a, 0xb0, 0x4c, 0x33, 0xe4,
+ 0x33, 0x89, 0xb7, 0x00, 0xa7, 0x94, 0x82, 0xd2, 0x47, 0xae, 0x9b, 0x60, 0xbd, 0x4f, 0xe3, 0xca, 0x7e, 0xc0,
+ 0xc4, 0xcb, 0x8a, 0x9d, 0x8c, 0x15, 0x81, 0x87, 0xd7, 0x4e, 0xec, 0x00, 0x72, 0xe4, 0x1c, 0xd0, 0xb3, 0x41,
+ 0xd2, 0x40, 0x33, 0xca, 0xbc, 0xbc, 0x80, 0x4f, 0x64, 0x3d, 0x32, 0x0f, 0x86, 0x4b, 0x3f, 0x74, 0x17, 0x4b,
+ 0x35, 0xe1, 0x8a, 0x23, 0xc6, 0xcf, 0xca, 0x51, 0x0a, 0xed, 0xdf, 0x4b, 0x3b, 0x5b, 0xa3, 0xfb, 0x98, 0x0e,
+ 0xe4, 0x27, 0x69, 0xfa, 0x14, 0xb7, 0x06, 0x62, 0x10, 0x93, 0x17, 0x0d, 0x85, 0xeb, 0xf0, 0xd7, 0x8e, 0x33,
+ 0xfb, 0x26, 0x1b, 0x57, 0x94, 0xe4, 0x15, 0x9b, 0x47, 0xae, 0xd1, 0x32, 0x66, 0x92, 0x0b, 0x7d, 0x90, 0xc2,
+ 0x7d, 0xde, 0x5a, 0x12, 0x71, 0x25, 0xa8, 0x77, 0x8f, 0x71, 0xf2, 0x14, 0x4f, 0xf0, 0xaf, 0x5d, 0x6d, 0x71,
+ 0xd8, 0xa4, 0x94, 0xc7, 0x1f, 0x5e, 0x21, 0x3a, 0x59, 0x44, 0x03, 0x92, 0xb0, 0xdc, 0xef, 0x06, 0x00, 0x45,
+ 0x78, 0x0e, 0xc6, 0x87, 0xb0, 0x7b, 0xf3, 0xd4, 0xcb, 0x36, 0xa1, 0xe4, 0xda, 0x24, 0x6c, 0x6b, 0x73, 0xb1,
+ 0xfe, 0x72, 0xf4, 0x9b, 0x86, 0x66, 0xf2, 0x2f, 0x37, 0x0e, 0xd3, 0x35, 0x2a, 0xcd, 0xe1, 0xa5, 0x28, 0xba,
+ 0xcc, 0xb7, 0xd8, 0x13, 0x84, 0x4b, 0xa9, 0xa7, 0x29, 0x46, 0x2e, 0x5c, 0x58, 0x1e, 0x4f, 0x29, 0xda, 0x64,
+ 0x7d, 0xd7, 0x5f, 0x7c, 0x1d, 0xc2, 0x34, 0x53, 0xb8, 0xb8, 0xd9, 0x14, 0xb8, 0x0b, 0x65, 0xa1, 0x2c, 0x89,
+ 0x72, 0x46, 0x29, 0x7a, 0x07, 0xba, 0x7d, 0x53, 0xf3, 0x88, 0x41, 0x15, 0xa2, 0xa4, 0x85, 0xa2, 0x94, 0x5a,
+ 0xd3, 0x94, 0xef, 0xf2, 0x27, 0x9e, 0x04, 0xc8, 0x96, 0x4c, 0x46, 0xfe, 0xf3, 0x8b, 0x55, 0xb6, 0xce, 0xbc,
+ 0xc0, 0x71, 0xba, 0xd8, 0x3c, 0xd9, 0x6c, 0x7c, 0xe2, 0xf3, 0x40, 0x6f, 0xec, 0x09, 0x55, 0x5e, 0x9a, 0xb9,
+ 0xdf, 0x9b, 0x05, 0x21, 0xd0, 0x64, 0x9c, 0x22, 0x2d, 0x10, 0x5d, 0xdc, 0x20, 0x63, 0x1b, 0x2d, 0x9a, 0x89,
+ 0x46, 0xf2, 0x3e, 0xb2, 0xb5, 0x49, 0x96, 0x24, 0x79, 0x89, 0x92, 0xf4, 0xd6, 0xee, 0xf1, 0x8d, 0xb6, 0xb2,
+ 0x60, 0x22, 0xda, 0x15, 0xb7, 0xa4, 0xfc, 0x09, 0xce, 0x3f, 0xe9, 0x47, 0x54, 0xad, 0xfe, 0x0a, 0x5c, 0xe2,
+ 0x77, 0x37, 0xab, 0x94, 0x01, 0x3d, 0x43, 0xac, 0xb6, 0x49, 0x39, 0x7d, 0xa0, 0x9f, 0x6e, 0xde, 0x54, 0x79,
+ 0x6f, 0xdd, 0x25, 0xcc, 0x5e, 0xc9, 0x68, 0xbe, 0x08, 0x73, 0x81, 0xe8, 0x42, 0x61, 0x7d, 0xe7, 0x07, 0xbd,
+ 0x05, 0x2c, 0x36, 0x54, 0xb1, 0x17, 0xd4, 0xe0, 0xe2, 0x8c, 0x3d, 0xe1, 0x58, 0xb1, 0xd4, 0x0f, 0x80, 0x7d,
+ 0x1f, 0x97, 0x00, 0xf6, 0x02, 0xca, 0x1b, 0xbf, 0x83, 0x5d, 0xa0, 0x50, 0x44, 0x88, 0xc8, 0x45, 0x36, 0x89,
+ 0xc0, 0x73, 0x80, 0x9b, 0x62, 0x36, 0x4a, 0xdc, 0xfa, 0x94, 0x13, 0x86, 0x86, 0x64, 0x90, 0xbc, 0xa4, 0xae,
+ 0xa9, 0xbe, 0xd5, 0x73, 0xb5, 0x11, 0x76, 0x46, 0x97, 0x48, 0x2f, 0x3f, 0x3f, 0xc5, 0x6c, 0xba, 0x5b, 0xfa,
+ 0xda, 0x89, 0xa2, 0x94, 0xac, 0xf9, 0x8a, 0x71, 0x0c, 0xbc, 0x5a, 0x0c, 0x05, 0x70, 0x1b, 0xd4, 0xbb, 0x38,
+ 0xc8, 0xf8, 0xa0, 0x72, 0xd7, 0x92, 0xfa, 0x2d, 0x2c, 0x4d, 0x24, 0xf9, 0x96, 0x71, 0x5d, 0x48, 0x20, 0xc2,
+ 0xb8, 0x06, 0x6d, 0x01, 0x3a, 0x2d, 0xc3, 0x92, 0x3a, 0x44, 0x13, 0xdb, 0xc9, 0x42, 0x40, 0x71, 0xa1, 0x43,
+ 0x99, 0x75, 0x86, 0x30, 0xc3, 0x90, 0xfb, 0x95, 0x73, 0x1f, 0x8c, 0xc6, 0x43, 0x83, 0x8d, 0xc4, 0xdf, 0x18,
+ 0x9c, 0xdf, 0x1a, 0xf2, 0x98, 0xd8, 0x6c, 0x4c, 0x5c, 0x27, 0xb5, 0x7c, 0x2a, 0xab, 0xf2, 0xfe, 0x86, 0x1c,
+ 0xbc, 0x23, 0x37, 0x4d, 0xc8, 0x63, 0x10, 0xa5, 0x0f, 0xc9
+};
+
+// context = simple_context_fa
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x66, 0x61, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x60, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x20, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x63, 0x6f, 0x66, 0x66, 0x65,
+ 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd9, 0x82, 0xd9, 0x87, 0xd9, 0x88,
+ 0xd9, 0x87, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa8, 0xd8, 0xb1, 0xd9, 0x88,
+ 0x20, 0xd8, 0xa8, 0xd9, 0x87, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa2, 0xd8, 0xb4, 0xd9, 0xbe, 0xd8, 0xb2, 0xd8, 0xae, 0xd8, 0xa7, 0xd9, 0x86,
+ 0xd9, 0x87, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xda, 0xa9, 0xd9, 0x84, 0xd8,
+ 0xa7, 0xd8, 0xb3, 0x20, 0xd8, 0xaf, 0xd8, 0xb1, 0xd8, 0xb3, 0x22, 0x0a, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x26, 0x00,
+ 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0xd8, 0xa2, 0xd8, 0xb4, 0xd9, 0xbe, 0xd8, 0xb2, 0xd8, 0xae, 0xd8, 0xa7,
+ 0xd9, 0x86, 0xd9, 0x87, 0x00, 0xd8, 0xa8, 0xd8, 0xb1, 0xd9, 0x88, 0x00, 0xd8, 0xa8, 0xd9, 0x87, 0x00, 0xd9,
+ 0x82, 0xd9, 0x87, 0xd9, 0x88, 0xd9, 0x87, 0x00, 0xda, 0xa9, 0xd9, 0x84, 0xd8, 0xa7, 0xd8, 0xb3, 0x20, 0xd8,
+ 0xaf, 0xd8, 0xb1, 0xd8, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1d, 0x00,
+ 0x00, 0x00, 0x1d, 0x1f, 0x12, 0x01, 0x1c, 0x1b, 0x1d, 0x10, 0x06, 0x03, 0x11, 0x14, 0x11, 0x03, 0x07, 0x13,
+ 0x01, 0x09, 0x1a, 0x07, 0x0d, 0x06, 0x0e, 0x1d, 0x15, 0x04, 0x01, 0x14, 0x15, 0x00, 0x00, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x6d, 0x61, 0x6b, 0x65,
+ 0x5f, 0x63, 0x6f, 0x66, 0x66, 0x65, 0x65, 0x00, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_FARSI__
+
#if defined(__PV_LANGUAGE_FRENCH__)
// wake-word = bonjour ordinateur
static const uint8_t KEYWORD_ARRAY[] = {
- 0xef, 0x2e, 0x44, 0x7a, 0x25, 0x80, 0x58, 0x42, 0xb3, 0xf2, 0xde, 0xca, 0x89, 0xbc, 0x54, 0x67, 0xe9, 0xdf,
- 0x14, 0x87, 0x1e, 0xf4, 0x1e, 0xae, 0x47, 0xcc, 0x96, 0x3f, 0x74, 0x9b, 0x8b, 0x27, 0x49, 0x6d, 0x1e, 0x78,
- 0x66, 0x07, 0x83, 0x1f, 0xc3, 0x87, 0x5f, 0xf3, 0x0f, 0x4f, 0x6f, 0x00, 0xf5, 0x3e, 0x65, 0x9b, 0xe7, 0xcb,
- 0xe7, 0x55, 0xfa, 0xc1, 0x50, 0xdb, 0xdf, 0x7d, 0x9e, 0xb0, 0xf0, 0xf4, 0x2a, 0x54, 0x4b, 0xea, 0x37, 0xd2,
- 0xc7, 0x9e, 0x19, 0xd0, 0x14, 0xf0, 0x42, 0x80, 0xfd, 0x56, 0x5d, 0x23, 0x14, 0x3a, 0x43, 0x9a, 0xcf, 0xbb,
- 0x67, 0xc9, 0x2d, 0x2b, 0x58, 0x15, 0xb5, 0x31, 0x9a, 0xd7, 0xff, 0xd6, 0x7e, 0x27, 0x4b, 0x6d, 0x11, 0x57,
- 0x45, 0xaf, 0x54, 0x86, 0x5d, 0x97, 0xf9, 0x9f, 0xc0, 0x26, 0x53, 0xce, 0xed, 0x03, 0x69, 0x04, 0x9a, 0x34,
- 0x95, 0x58, 0x64, 0x84, 0x2d, 0x55, 0x49, 0xee, 0x05, 0xf4, 0xb2, 0x1e, 0x97, 0x08, 0x75, 0xe4, 0xd7, 0xd1,
- 0x81, 0x61, 0x4f, 0x7c, 0x1c, 0x40, 0x94, 0x60, 0x18, 0xfb, 0xf4, 0x2d, 0x68, 0xd0, 0xea, 0x1f, 0x0b, 0x38,
- 0xca, 0xcc, 0x91, 0x86, 0x5f, 0xef, 0xcb, 0x0e, 0x33, 0xd8, 0x3f, 0x1c, 0x13, 0x4f, 0x82, 0x74, 0xb7, 0x4c,
- 0xd6, 0x35, 0x07, 0x7c, 0x8f, 0x0f, 0x6d, 0xb9, 0x05, 0xe4, 0xea, 0xce, 0x91, 0x14, 0xc5, 0xf8, 0xee, 0xee,
- 0x36, 0x65, 0x58, 0xae, 0xdb, 0xd3, 0x05, 0xda, 0x52, 0x86, 0xa8, 0xe4, 0x90, 0xca, 0x99, 0xf8, 0x03, 0x94,
- 0xaa, 0x97, 0x02, 0xcc, 0x12, 0xe2, 0x70, 0x43, 0x06, 0x19, 0x23, 0xd7, 0xc7, 0x2b, 0x5f, 0x46, 0x01, 0x05,
- 0xea, 0x61, 0xf9, 0xc8, 0x9b, 0x1e, 0x18, 0x86, 0x8d, 0x8e, 0xb8, 0xab, 0x1b, 0x5b, 0x16, 0x4e, 0x4d, 0xc1,
- 0x16, 0x8b, 0xad, 0xd5, 0xf9, 0x18, 0x18, 0x7c, 0x77, 0x76, 0x43, 0x17, 0xd0, 0x10, 0x1e, 0x6a, 0xb3, 0x18,
- 0x18, 0xbe, 0x81, 0x5b, 0x31, 0x49, 0xef, 0xb6, 0xec, 0xfb, 0x04, 0xab, 0xa9, 0xb5, 0xb3, 0x66, 0xe2, 0xb4,
- 0x84, 0xc4, 0x64, 0xbd, 0x30, 0x89, 0x02, 0x42, 0x85, 0x25, 0xf7, 0x39, 0xdc, 0x10, 0x71, 0x1b, 0x2e, 0xdc,
- 0xd6, 0x2c, 0xc2, 0x68, 0x8e, 0x2c, 0xd0, 0x57, 0xc1, 0xdd, 0xc2, 0xb6, 0x3c, 0x71, 0xac, 0x64, 0x71, 0x62,
- 0x53, 0x51, 0x72, 0xb6, 0x04, 0x5a, 0x75, 0xe8, 0xb0, 0x15, 0x86, 0x17, 0x10, 0xaf, 0x95, 0x92, 0x43, 0xd4,
- 0xf3, 0x31, 0x4d, 0x8d, 0x8c, 0x13, 0xc8, 0xee, 0xac, 0xc2, 0x80, 0x7e, 0x05, 0xb2, 0x7a, 0x97, 0xd5, 0xe1,
- 0xf2, 0x52, 0x42, 0x3a, 0x80, 0x0d, 0x6c, 0x5b, 0x45, 0xb4, 0x8b, 0x4d, 0x53, 0x8d, 0xc1, 0x28, 0x85, 0xcb,
- 0xac, 0x71, 0xf4, 0x8d, 0x13, 0x34, 0x80, 0x6d, 0x1a, 0x81, 0x42, 0xe5, 0x30, 0x99, 0x55, 0x8d, 0x37, 0x37,
- 0xe7, 0x40, 0xc7, 0x14, 0x6a, 0x3d, 0xd6, 0x67, 0x3f, 0x9e, 0x51, 0xf3, 0xa1, 0x71, 0x12, 0x68, 0xba, 0xd7,
- 0x52, 0x3e, 0x41, 0x63, 0xee, 0x67, 0x85, 0xf5, 0xdf, 0x00, 0xe5, 0xa5, 0xe8, 0xe7, 0x58, 0x25, 0x65, 0x3d,
- 0xe3, 0x2e, 0xea, 0x9f, 0x19, 0x63, 0x8e, 0xd1, 0x71, 0x6c, 0x2f, 0x10, 0xe4, 0x8c, 0x5d, 0x4a, 0x3b, 0x92,
- 0x40, 0x3a, 0x9b, 0x55, 0x12, 0x2a, 0xc4, 0xff, 0x64, 0x52, 0x42, 0xab, 0xc5, 0x66, 0x8d, 0x5c, 0x71, 0x1b,
- 0x50, 0x1d, 0x8f, 0x8f, 0x8b, 0xa4, 0x31, 0x91, 0x9d, 0x23, 0xaf, 0x22, 0xa6, 0x50, 0x86, 0x0c, 0xab, 0x4c,
- 0x66, 0x3e, 0x65, 0x2b, 0xf7, 0xe3, 0xd2, 0x63, 0x72, 0x99, 0x60, 0x31, 0x31, 0xa5, 0x3c, 0x13, 0x4c, 0xa4,
- 0x8b, 0xc6, 0x10, 0x22, 0xef, 0x59, 0x8d, 0xb6, 0x34, 0x61, 0x1a, 0x06, 0x85, 0x52, 0xd2, 0xe5, 0x13, 0x23,
- 0x7a, 0x29, 0x26, 0x49, 0xfe, 0x62, 0xde, 0x06, 0xab, 0x53, 0x7b, 0xaf, 0xaf, 0x4a, 0x8d, 0x97, 0xd6, 0x57,
- 0x81, 0xbb, 0xd0, 0x8b, 0x43, 0x6e, 0xc3, 0x20, 0x4b, 0xe7, 0xec, 0x01, 0x1c, 0x47, 0x09, 0x7c, 0x01, 0xa7,
- 0x75, 0x8c, 0xc3, 0x91, 0x01, 0x10, 0xd9, 0x33, 0x61, 0xc7, 0x48, 0xad, 0xff, 0xf8, 0x82, 0x6a, 0xba, 0x34,
- 0xc6, 0x50, 0xf6, 0x3a, 0xa9, 0xc8, 0x6a, 0x82, 0x9a, 0xe0, 0x7f, 0xfb, 0xad, 0xc1, 0x84, 0x1f, 0x69, 0x1f,
- 0x96, 0xb2, 0xdc, 0x4b, 0xc8, 0xb3, 0x67, 0xb1, 0x42, 0x00, 0x71, 0xf4, 0xd6, 0x79, 0xfa, 0xce, 0x7f, 0xc2,
- 0xab, 0x90, 0x24, 0x89, 0x12, 0x13, 0x1d, 0x54, 0x7e, 0x4a, 0x4b, 0x09, 0xaa, 0xe0, 0x25, 0x9a, 0x98, 0x8f,
- 0x07, 0xc3, 0x4d, 0xaa, 0x08, 0x60, 0x59, 0x2d, 0xda, 0xed, 0x99, 0x3b, 0x45, 0xa1, 0x90, 0xe3, 0xd7, 0x6a,
- 0x05, 0xda, 0x92, 0x9b, 0xc3, 0x54, 0xed, 0x04, 0xbb, 0x36, 0xb1, 0x7f
+ 0xbb, 0x5c, 0xb1, 0xe7, 0xbd, 0xc8, 0x3c, 0xc7, 0xa4, 0xbe, 0x37, 0x23, 0xf5, 0xcc, 0xa2, 0x7a, 0x6f, 0x00,
+ 0x62, 0x72, 0x34, 0x7b, 0x73, 0xa2, 0xeb, 0xe8, 0x6c, 0x9d, 0x82, 0xfb, 0x48, 0x63, 0x03, 0xec, 0x3f, 0x7d,
+ 0xf0, 0xae, 0xe5, 0xb1, 0x47, 0x58, 0x8e, 0xf3, 0xbf, 0x7b, 0xd0, 0x77, 0x12, 0xd1, 0xc6, 0x54, 0xda, 0xc3,
+ 0x20, 0xca, 0x7b, 0x20, 0x30, 0xf1, 0x47, 0xe1, 0xdb, 0xca, 0x70, 0x0c, 0x86, 0x79, 0xe5, 0x02, 0x63, 0x7b,
+ 0x5f, 0x48, 0x2e, 0xb1, 0x44, 0x1d, 0xb6, 0xd3, 0x58, 0x2b, 0x7b, 0x50, 0xc8, 0x8a, 0xd4, 0xa0, 0x20, 0x7b,
+ 0x01, 0x0a, 0x84, 0x18, 0xb4, 0x3a, 0xe7, 0x49, 0x86, 0x70, 0xf3, 0xfc, 0x21, 0xc6, 0xc2, 0xeb, 0x65, 0x26,
+ 0x70, 0xa1, 0x7d, 0x7a, 0xeb, 0x26, 0xc2, 0x72, 0x20, 0xdd, 0x32, 0x6d, 0x5b, 0x1e, 0x9f, 0x97, 0x87, 0x7e,
+ 0x0b, 0xf3, 0x2c, 0x50, 0x2b, 0x95, 0x28, 0x62, 0xcd, 0x0f, 0xb5, 0xb5, 0x40, 0x26, 0x22, 0x48, 0xf7, 0x23,
+ 0x8f, 0x95, 0x86, 0xcc, 0xac, 0xcb, 0x80, 0xbb, 0xd8, 0xe2, 0xb4, 0xb7, 0x3c, 0x78, 0xe7, 0x87, 0xac, 0x04,
+ 0xca, 0x48, 0x54, 0xdb, 0xdd, 0x79, 0x23, 0xa3, 0x8a, 0xff, 0x87, 0x26, 0x88, 0x7a, 0x74, 0x64, 0xfa, 0xeb,
+ 0xa0, 0x0b, 0x28, 0x73, 0x43, 0xbe, 0xa7, 0x34, 0xbe, 0xab, 0x35, 0x86, 0x72, 0xac, 0xdb, 0xe9, 0x01, 0x10,
+ 0xb0, 0x6e, 0x7e, 0x75, 0x90, 0x5b, 0x6b, 0xaa, 0xfb, 0x16, 0x31, 0x22, 0x25, 0x1b, 0xa3, 0x48, 0x4d, 0x6a,
+ 0x63, 0xa9, 0x5e, 0x57, 0x33, 0xf2, 0x09, 0x26, 0x29, 0xa7, 0x70, 0xed, 0xd5, 0x15, 0x3f, 0x5e, 0x52, 0x07,
+ 0x03, 0x4b, 0x88, 0x30, 0xea, 0x95, 0x9e, 0xc9, 0xfd, 0x16, 0x94, 0xce, 0x6d, 0xb3, 0x3c, 0xb6, 0x9f, 0x92,
+ 0x21, 0x90, 0xc0, 0xdc, 0xcd, 0xb2, 0x48, 0x6b, 0x27, 0xc0, 0x0f, 0x52, 0xfc, 0x81, 0x99, 0xbd, 0x56, 0x82,
+ 0x67, 0xd4, 0x41, 0x14, 0x0e, 0x06, 0x51, 0xa4, 0x67, 0xba, 0xd0, 0x8f, 0x40, 0xd2, 0x6e, 0x7b, 0xb8, 0xb2,
+ 0x70, 0xd8, 0xb0, 0xf3, 0xf6, 0x16, 0x1a, 0xcd, 0x48, 0xa7, 0x6a, 0xec, 0x3b, 0xe2, 0x2d, 0x13, 0x61, 0xc0,
+ 0xaf, 0x16, 0x92, 0xae, 0xea, 0xea, 0x66, 0xb7, 0xa8, 0x60, 0xd1, 0x16, 0x0e, 0xdd, 0xcf, 0x5f, 0x86, 0xeb,
+ 0xcc, 0xff, 0xeb, 0x74, 0x18, 0x52, 0xbe, 0xc5, 0x58, 0x87, 0x01, 0xda, 0x06, 0x01, 0x91, 0x3c, 0x42, 0xc2,
+ 0xd7, 0x67, 0x5e, 0xe0, 0x74, 0xad, 0x06, 0x59, 0x6a, 0x48, 0x11, 0xb9, 0x61, 0xdc, 0xe2, 0xc8, 0x5c, 0x2b,
+ 0x24, 0x54, 0x95, 0xe7, 0x9f, 0x1b, 0x8b, 0x10, 0x44, 0x0a, 0x1d, 0x26, 0x07, 0xf0, 0x5c, 0xa6, 0x9d, 0x63,
+ 0x51, 0x51, 0x29, 0x09, 0xbd, 0x4a, 0xa1, 0xa2, 0x44, 0x8c, 0x9a, 0x90, 0xd6, 0x1b, 0x74, 0x63, 0x3f, 0xc4,
+ 0xb2, 0x4b, 0x88, 0x67, 0x70, 0xd9, 0x73, 0x3e, 0x29, 0x9b, 0x85, 0xd5, 0x9b, 0x1b, 0x58, 0xf8, 0xee, 0x40,
+ 0x03, 0x83, 0x35, 0xa2, 0xd5, 0x0f, 0x28, 0x40, 0x06, 0xbb, 0xfa, 0xf1, 0x20, 0xa9, 0xc5, 0x33, 0xe6, 0x6a,
+ 0x9d, 0x90, 0xc6, 0xf6, 0x78, 0xaf, 0x8f, 0xc6, 0x00, 0x56, 0xab, 0x64, 0x95, 0x8a, 0xe6, 0xf9, 0x65, 0xfe,
+ 0x7b, 0xa7, 0x75, 0x6b, 0x63, 0x39, 0x03, 0x86, 0xf9, 0xf7, 0x59, 0xf1, 0x56, 0x3a, 0xdb, 0xbd, 0xa3, 0x96,
+ 0xd8, 0xba, 0x8a, 0x46, 0x52, 0xbc, 0xd2, 0x98, 0x87, 0xda, 0xaa, 0xf3, 0x07, 0xcc, 0x10, 0x6c, 0xd5, 0xa7,
+ 0x63, 0xab, 0xc2, 0x2a, 0x2f, 0x62, 0x6b, 0x36, 0xcc, 0x38, 0x0d, 0xc6, 0xd8, 0xac, 0xb1, 0x65, 0x5b, 0x5a,
+ 0x10, 0xc5, 0x8e, 0xe9, 0xfb, 0x46, 0xea, 0xe5, 0xf5, 0xf8, 0xd5, 0x04, 0x9f, 0x0b, 0x4d, 0x98, 0x54, 0xdd,
+ 0xed, 0xb1, 0x35, 0x87, 0x1c, 0xd8, 0x99, 0xe4, 0x5e, 0xd2, 0x0d, 0xb3, 0x4c, 0x0f, 0x44, 0xd0, 0x10, 0x07,
+ 0x87, 0x17, 0xb6, 0x22, 0xe9, 0x2a, 0x70, 0x56, 0x07, 0x33, 0x3c, 0x93, 0xdb, 0x13, 0x4c, 0x2f, 0x17, 0xc0,
+ 0xf5, 0xe4, 0xaf, 0x60, 0x36, 0xd7, 0x61, 0xeb, 0x37, 0x64, 0x4d, 0xb3, 0x96, 0xc8, 0x7d, 0x76, 0x64, 0x98,
+ 0xc6, 0xc5, 0x64, 0x73, 0xeb, 0x11, 0x49, 0x57, 0xc9, 0x4e, 0x60, 0xe8, 0x28, 0x1b, 0x5f, 0x01, 0x5e, 0xff,
+ 0xbb, 0x2a, 0xf9, 0x1d, 0xa8, 0x15, 0x84, 0x5b, 0xb2, 0xd9, 0x68, 0x4f, 0x29, 0x95, 0xa5, 0x33, 0x2e, 0x84,
+ 0x43, 0x87, 0x35, 0x9e, 0x09, 0x2f, 0x07, 0x15, 0x4e, 0xcb, 0x5b, 0x0e, 0x1a, 0x4a, 0x5b, 0xcc, 0xe2, 0x98,
+ 0x63, 0x99, 0xa9, 0xe3, 0x42, 0xe4, 0xa6, 0x8e, 0xbf, 0xd4, 0xb9, 0x54, 0xd6, 0x27, 0xed, 0x0a, 0x73, 0xa7,
+ 0x8e, 0x39, 0xc6, 0x87, 0x8c, 0xc8, 0x5e, 0xda, 0xcd, 0xf1, 0x63, 0xaa
};
// context = éclairage_intelligent
@@ -1206,44 +1589,148 @@ static const uint8_t CONTEXT_ARRAY[] = {
#endif // __PV_LANGUAGE_FRENCH__
+#if defined(__PV_LANGUAGE_HINDI__)
+
+// wake-word = नमस्ते कंप्यूटर
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0xdc, 0xad, 0x59, 0xc4, 0xf5, 0xbf, 0xc7, 0x7a, 0xf7, 0xfa, 0x59, 0xd5, 0x41, 0x65, 0x7f, 0x25, 0x80, 0x0a,
+ 0x66, 0x99, 0x32, 0xb5, 0x28, 0xc3, 0x94, 0xa3, 0xcd, 0xdb, 0xd2, 0x80, 0x61, 0xd5, 0x90, 0x12, 0x09, 0x7e,
+ 0x4f, 0xc1, 0x43, 0xbc, 0x8e, 0x9c, 0x6c, 0x14, 0xbb, 0xe3, 0x48, 0x00, 0xfb, 0xc4, 0x98, 0x96, 0xd0, 0x56,
+ 0x0c, 0xc2, 0x4a, 0x64, 0xf5, 0x04, 0x81, 0xd2, 0x28, 0xda, 0x79, 0xba, 0x20, 0x67, 0xf0, 0xf5, 0x40, 0x1f,
+ 0x63, 0xf3, 0x5d, 0x1b, 0x4a, 0xc8, 0x75, 0xbc, 0x37, 0x00, 0xf1, 0x60, 0x6b, 0x58, 0xa8, 0x37, 0x90, 0x2f,
+ 0x37, 0x29, 0xe1, 0x15, 0xb2, 0xa9, 0x1a, 0x99, 0xa1, 0x5d, 0xbb, 0xf9, 0x0a, 0x9d, 0x9c, 0xa9, 0x69, 0x55,
+ 0xd6, 0xc2, 0x16, 0x46, 0xd6, 0x3d, 0x2a, 0xc6, 0xc4, 0xda, 0x0b, 0x7d, 0x1d, 0x3d, 0x4c, 0x70, 0x26, 0x8d,
+ 0xd9, 0x7a, 0xca, 0x94, 0x46, 0x3b, 0x92, 0xd5, 0x78, 0xee, 0xa6, 0xe3, 0x7b, 0xcb, 0x60, 0xe2, 0xd1, 0x89,
+ 0x32, 0x3f, 0x03, 0x89, 0x35, 0x97, 0x62, 0x64, 0xf1, 0xcb, 0xfe, 0x19, 0x6b, 0xf6, 0xba, 0xe4, 0xdf, 0x44,
+ 0xd4, 0xdc, 0x76, 0xd3, 0x72, 0x49, 0x84, 0xea, 0x54, 0x1d, 0x7b, 0x0f, 0xe3, 0x90, 0x75, 0x47, 0xaa, 0xb9,
+ 0xcf, 0xd0, 0xe4, 0xaf, 0xeb, 0xd2, 0xf9, 0xac, 0xef, 0xe6, 0x76, 0x25, 0x5c, 0x55, 0xc2, 0xbe, 0x13, 0xb9,
+ 0xb1, 0x68, 0x69, 0x3f, 0xd3, 0xb3, 0x25, 0xaa, 0x4a, 0xa1, 0xfd, 0xb8, 0x99, 0x08, 0x3a, 0x13, 0x4b, 0x7d,
+ 0xc8, 0x7a, 0xca, 0xee, 0x5d, 0xd5, 0xd9, 0xd1, 0xc0, 0xaf, 0x2c, 0x6c, 0xeb, 0x18, 0xac, 0x95, 0x69, 0x2a,
+ 0xe7, 0x92, 0x8b, 0x8a, 0xcf, 0xf6, 0x16, 0xd1, 0x44, 0x20, 0xc3, 0x76, 0xe2, 0x38, 0x8b, 0x18, 0xae, 0x85,
+ 0xd9, 0xc6, 0x73, 0x7b, 0xe2, 0xfa, 0xf0, 0x36, 0x2a, 0x9c, 0x9c, 0xb2, 0x0f, 0xc0, 0x8f, 0x7b, 0xaf, 0x3b,
+ 0xda, 0x7b, 0x02, 0x3b, 0x62, 0x1a, 0x9c, 0x16, 0xce, 0x2b, 0x36, 0x9c, 0x5e, 0x04, 0x7f, 0xa9, 0xd0, 0x53,
+ 0xc6, 0x7e, 0xd6, 0x9a, 0x17, 0xac, 0xdd, 0x2e, 0x25, 0x93, 0xc1, 0x72, 0x33, 0x80, 0xdf, 0x7d, 0x22, 0x08,
+ 0x90, 0xd3, 0xda, 0x6c, 0x19, 0x30, 0x9d, 0x3e, 0x90, 0xb4, 0x22, 0x0e, 0xbd, 0x91, 0xc6, 0xf4, 0xb1, 0x8d,
+ 0x0f, 0xf5, 0xa4, 0x93, 0x40, 0xfa, 0xbe, 0xbb, 0x11, 0x76, 0xe2, 0x45, 0x8a, 0x69, 0xd2, 0x65, 0xcb, 0x36,
+ 0xca, 0xa9, 0xc3, 0x06, 0x7d, 0xcb, 0x8f, 0x7b, 0x14, 0xf0, 0xef, 0x63, 0xba, 0xe3, 0x60, 0x24, 0x0d, 0x40,
+ 0xcf, 0x13, 0x47, 0x87, 0x6b, 0x7d, 0x66, 0x7a, 0xae, 0xe6, 0xf9, 0xd7, 0x56, 0x91, 0xad, 0xb1, 0x41, 0xb5,
+ 0x3a, 0x8c, 0x97, 0x04, 0x83, 0xe0, 0x30, 0x00, 0xe8, 0xf7, 0xfe, 0x76, 0xef, 0xff, 0x9c, 0x18, 0x50, 0xee,
+ 0xa8, 0x81, 0x9b, 0x7e, 0x68, 0x6c, 0x9a, 0x21, 0xda, 0x1b, 0xc0, 0xc9, 0xad, 0x07, 0x6c, 0x1b, 0x26, 0x38,
+ 0x78, 0xab, 0x19, 0x1f, 0xa6, 0x80, 0x98, 0x4c, 0x26, 0x4f, 0x51, 0xeb, 0xf2, 0xca, 0x29, 0x0d, 0x54, 0x16,
+ 0x4d, 0xb1, 0xf3, 0x43, 0x62, 0x2c, 0xa3, 0xc8, 0x27, 0xd8, 0xc4, 0x22, 0xc7, 0x42, 0xc5, 0x65, 0x17, 0x4d,
+ 0x8f, 0xbd, 0x98, 0x19, 0x77, 0xa0, 0x3f, 0x15, 0x77, 0x36, 0x7b, 0x9a, 0x79, 0xe7, 0x59, 0x7e, 0xe5, 0xa3,
+ 0x59, 0x66, 0x96, 0xf9, 0x7e, 0xf9, 0x4f, 0x8c, 0x02, 0xfe, 0x4b, 0x69, 0x01, 0x5d, 0xa8, 0x05, 0xe0, 0xeb,
+ 0xb4, 0x14, 0xdb, 0x50, 0x17, 0xb4, 0x94, 0xe5, 0xd3, 0x51, 0x79, 0xa6, 0xfd, 0xe5, 0x14, 0xea, 0xa5, 0x7d,
+ 0x10, 0x11, 0xa5, 0x09, 0xec, 0xec, 0x0c, 0xf8, 0x7e, 0x74, 0xd6, 0xe5, 0x58, 0x91, 0xd1, 0x36, 0x26, 0x44,
+ 0xe6, 0x09, 0xf9, 0xce, 0x41, 0x11, 0xb5, 0x0b, 0xee, 0xe0, 0xf6, 0xe9, 0xa7, 0x87, 0x35, 0x19, 0x11, 0x92,
+ 0x57, 0xc0, 0xa5, 0xfb, 0xb2, 0xd1, 0x44, 0x32, 0x22, 0x59, 0x6a, 0x70, 0x1c, 0xa2, 0xf4, 0x2b, 0x6d, 0x98,
+ 0x9f, 0x57, 0xfe, 0xfc, 0x4c, 0x50, 0x97, 0x82, 0xfe, 0xa1, 0xab, 0x16, 0x62, 0x33, 0xe9, 0x38, 0x29, 0x98,
+ 0xa3, 0x46, 0x75, 0xab, 0xd1, 0xda, 0x73, 0x95, 0x93, 0x87, 0xd8, 0x85, 0x3c, 0x7b, 0x9e, 0x76, 0x1c, 0x35,
+ 0xbb, 0x68, 0x92, 0x4d, 0xa6, 0x78, 0x90, 0x92, 0xcd, 0x82, 0xf7, 0x85, 0x30, 0x96, 0x0e, 0xa0, 0xce, 0x1e,
+ 0x8c, 0xf0, 0x0d, 0x34, 0xef, 0x60, 0xc6, 0xe1, 0x50, 0x48, 0x8a, 0x9b, 0xa1, 0xef, 0xc3, 0xb9, 0xc6, 0x2a,
+ 0x8f, 0xb7, 0xa6, 0xc4, 0x31, 0xa0, 0x55, 0xc1, 0xa8, 0x36, 0x7a, 0xe7, 0x4c, 0x2d, 0x56, 0x5d, 0x3e, 0xa3,
+ 0xda, 0x98, 0xb2, 0x40, 0x1f, 0x51, 0x8f, 0xf6, 0xdc, 0xf4, 0x49, 0x13, 0x4b, 0x05, 0x93, 0x8d, 0x4d, 0x29,
+ 0xa7, 0x5b, 0x27, 0x12, 0xcf, 0x24, 0x00, 0xad, 0x04, 0x18, 0x7c, 0x0f, 0x1f, 0x92, 0xfc, 0xed, 0xcc, 0x26,
+ 0x27, 0x6d, 0x2c, 0xa3, 0xc1, 0xde, 0x52, 0xf6, 0x22, 0x49, 0x85, 0x82, 0xfb, 0x89, 0x86, 0x10, 0xa3, 0x0c,
+ 0xb7, 0xd7, 0x0c, 0x30, 0x86, 0xc0, 0xe4, 0xd3, 0xc7, 0xb2, 0x1e, 0x89, 0x2a, 0x63, 0x53, 0x61, 0xe4, 0x37,
+ 0x1b, 0xfe, 0xd8, 0xf9, 0xcf, 0xdd, 0x9a, 0xcc, 0xef, 0x32, 0x98, 0x1a, 0x85, 0x95, 0x6b, 0x26, 0x50, 0x2b,
+ 0x45, 0xbf, 0x8a, 0x28, 0xfa, 0x7c, 0x59, 0x2c, 0x06, 0xf5, 0x7f, 0x0a, 0x75, 0xc7, 0x52, 0xce, 0x1c, 0x04,
+ 0x13, 0x66, 0x8b, 0x4d, 0x5c, 0x0d, 0x20, 0x8a, 0x75, 0x49, 0xf7, 0x9e, 0x2b, 0x47, 0x40, 0x22, 0x58, 0x32,
+ 0x14, 0x90, 0xc7, 0xa3, 0xc1, 0x0d, 0x68, 0x41, 0x63, 0xce, 0xab, 0x91, 0x60, 0x14, 0x02, 0x33, 0x51, 0x98,
+ 0xef, 0x79, 0xa7, 0x58, 0xa8, 0x91, 0x5c, 0xcd, 0x8d, 0xf1, 0x57, 0x4c, 0xa3, 0x45, 0x9b, 0x3c, 0x95, 0x58,
+ 0x9f, 0x58, 0xb2, 0x43, 0x74, 0xc0, 0x0f, 0x4e, 0x68, 0xa5, 0xd3, 0xbb, 0xa9, 0x47
+};
+
+// context = simple_context_hi
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x68, 0x69, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0,
+ 0xa4, 0xbe, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70,
+ 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4,
+ 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x20, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95, 0x20,
+ 0x24, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x20, 0xe0, 0xa4, 0xa6,
+ 0xe0, 0xa5, 0x8b, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0,
+ 0xa4, 0xb8, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0,
+ 0xa4, 0xac, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5,
+ 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87,
+ 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
+ 0x3b, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95,
+ 0x00, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xa6, 0xe0,
+ 0xa5, 0x8b, 0x00, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0, 0xa4, 0xbe, 0xe0, 0xa4, 0xb8,
+ 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x00, 0xe0,
+ 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0xe0, 0xa4, 0xb8,
+ 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0, 0xa4, 0xac,
+ 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x0e, 0x17, 0x17, 0x0e, 0x19, 0x05, 0x0a, 0x1d, 0x1e, 0x15, 0x05, 0x24, 0x05, 0x1a,
+ 0x2a, 0x16, 0x0e, 0x21, 0x04, 0x24, 0x07, 0x04, 0x21, 0x14, 0x24, 0x28, 0x21, 0x03, 0x06, 0x0e, 0x21, 0x14,
+ 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
+ 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_HINDI__
+
#if defined(__PV_LANGUAGE_ITALIAN__)
// wake-word = ciao computer
static const uint8_t KEYWORD_ARRAY[] = {
- 0x74, 0x54, 0x95, 0x9b, 0x89, 0x7b, 0x24, 0xe3, 0xb1, 0xa6, 0xf4, 0x2e, 0x56, 0x94, 0xbd, 0xc5, 0x87, 0x3c,
- 0x84, 0x91, 0xf9, 0x1c, 0xe1, 0x99, 0x0e, 0xc1, 0x54, 0x31, 0x3f, 0x78, 0xd1, 0x30, 0x33, 0x56, 0x05, 0xaf,
- 0x85, 0x9e, 0x5a, 0xe7, 0xd0, 0x88, 0x2e, 0xac, 0x78, 0xb3, 0x9f, 0x94, 0x44, 0xe9, 0x2f, 0x0c, 0x6e, 0x61,
- 0xb7, 0x24, 0xcd, 0xdb, 0x4e, 0x68, 0xdd, 0x9e, 0xab, 0x21, 0xdb, 0xb8, 0x17, 0x0f, 0xa0, 0x7d, 0x4a, 0x2b,
- 0xf2, 0x19, 0xac, 0x1a, 0x02, 0x6a, 0x21, 0x2a, 0x09, 0x7d, 0x85, 0x68, 0x54, 0x33, 0x05, 0xca, 0x91, 0x62,
- 0xce, 0x0b, 0x0b, 0x58, 0xa0, 0xac, 0x85, 0x49, 0xa8, 0xf5, 0x1d, 0x7e, 0xce, 0x8c, 0x73, 0xfe, 0xbd, 0x98,
- 0xe8, 0x30, 0x28, 0xbe, 0x9e, 0x07, 0xdf, 0x93, 0x34, 0x63, 0x49, 0x09, 0x40, 0x16, 0xfa, 0x64, 0x62, 0x33,
- 0xf9, 0x42, 0x36, 0xcc, 0x89, 0x2f, 0x44, 0xca, 0xd6, 0x3a, 0x8b, 0xd8, 0x3b, 0x60, 0x89, 0x29, 0x13, 0x76,
- 0x5d, 0x52, 0xdc, 0x84, 0x0c, 0xd8, 0x1f, 0x00, 0x5e, 0xfb, 0x6a, 0xc4, 0x55, 0xb9, 0xb7, 0x76, 0xc5, 0xc6,
- 0x0b, 0xb6, 0xc2, 0xfd, 0x76, 0xdd, 0x3a, 0xf8, 0x47, 0xa6, 0xd2, 0xa4, 0xa3, 0x3d, 0x4a, 0xa8, 0x12, 0x0e,
- 0x92, 0xfb, 0x14, 0xbb, 0xee, 0x61, 0x29, 0xbc, 0x4d, 0x3f, 0xcf, 0x00, 0x6f, 0x59, 0x9a, 0x77, 0x03, 0x1f,
- 0x83, 0xdf, 0x63, 0x68, 0x41, 0x84, 0x4f, 0xe0, 0xbe, 0x8f, 0x2f, 0xec, 0x15, 0x15, 0xd2, 0xce, 0x52, 0x98,
- 0x94, 0x61, 0xb6, 0xa0, 0x43, 0xda, 0x11, 0xa6, 0x2a, 0x57, 0x8a, 0x17, 0x17, 0x36, 0x1a, 0xcc, 0xe0, 0xf2,
- 0x21, 0x4d, 0x77, 0x79, 0x59, 0x4b, 0x18, 0x31, 0x90, 0xe6, 0xbc, 0xe4, 0xa6, 0x68, 0x11, 0x15, 0x85, 0x30,
- 0xd9, 0x8c, 0xf9, 0x79, 0xfe, 0x47, 0x9e, 0xc3, 0x93, 0x14, 0xab, 0xf5, 0xf4, 0xcb, 0xad, 0x68, 0xad, 0x0b,
- 0xb6, 0x49, 0xed, 0x6b, 0xbe, 0x2b, 0x44, 0x26, 0xa5, 0x56, 0xa9, 0xaa, 0x3e, 0x93, 0xf0, 0x22, 0x45, 0x63,
- 0xbd, 0x0b, 0xe4, 0x49, 0x9c, 0x60, 0xab, 0xda, 0xf4, 0xaf, 0x28, 0x19, 0xb3, 0x56, 0xa4, 0x93, 0xf9, 0x8c,
- 0xf7, 0xcc, 0xe6, 0x03, 0x24, 0x1c, 0x5f, 0x74, 0xfd, 0xb5, 0x58, 0xfb, 0x7d, 0x2a, 0xba, 0x2b, 0x33, 0xe7,
- 0x59, 0x8f, 0x0b, 0xca, 0xd1, 0x6d, 0x48, 0xd4, 0x7a, 0xb0, 0x64, 0xf4, 0x77, 0x79, 0x2a, 0x8a, 0x6b, 0x16,
- 0x0b, 0x44, 0x14, 0x8a, 0xfb, 0x25, 0x2b, 0x50, 0xc6, 0x94, 0x36, 0xc7, 0x04, 0xef, 0x52, 0x56, 0x66, 0xad,
- 0x85, 0xc8, 0x2d, 0x86, 0x0d, 0xb3, 0xed, 0x08, 0x4a, 0x89, 0x8f, 0x87, 0x75, 0xfc, 0x13, 0xfe, 0xc1, 0x6a,
- 0x97, 0x09, 0xa6, 0xbb, 0x64, 0x45, 0xfc, 0x12, 0x33, 0x7e, 0x90, 0x00, 0x8c, 0x2e, 0x79, 0x87, 0x63, 0xd1,
- 0x6e, 0x31, 0x99, 0x4d, 0xa6, 0x8f, 0xc3, 0x8d, 0xb8, 0x43, 0x42, 0x1e, 0x99, 0x37, 0x7e, 0x49, 0x9a, 0xe4,
- 0x8b, 0x27, 0xea, 0x57, 0x1d, 0x23, 0xf8, 0xe6, 0xd9, 0x4f, 0xd5, 0x29, 0x19, 0x01, 0x65, 0x73, 0xd7, 0x40,
- 0x5f, 0x95, 0xb5, 0x59, 0x69, 0x24, 0x04, 0x94, 0xf9, 0xa8, 0x02, 0x53, 0x0d, 0x82, 0x3a, 0x95, 0x74, 0xae,
- 0x92, 0x9e, 0x57, 0x1f, 0x85, 0x71, 0xef, 0x48, 0xdd, 0x64, 0xd0, 0xb8, 0x1c, 0x32, 0x29, 0x16, 0x02, 0x10,
- 0xd7, 0xe3, 0x34, 0x66, 0x59, 0xcb, 0xba, 0xef, 0xda, 0xba, 0x0c, 0xe8, 0xe8, 0x05, 0x5b, 0x94, 0x70, 0xef,
- 0x74, 0x12, 0x97, 0x38, 0xc4, 0xc7, 0x2c, 0x18, 0x51, 0x2f, 0x8f, 0xe6, 0x0c, 0x18, 0x62, 0xcb, 0x61, 0x20,
- 0x38, 0x44, 0x19, 0x57, 0x31, 0xa5, 0xff, 0xc0, 0x0f, 0xf8, 0x1b, 0x57, 0x02, 0xd9, 0x06, 0x68, 0x3c, 0x02,
- 0x5b, 0x05, 0xdf, 0x24, 0x3e, 0xcd, 0xbc, 0x05, 0x18, 0x91, 0xf6, 0x92, 0x45, 0x4f, 0x8b, 0x46, 0x94, 0x0d,
- 0x8d, 0xf7, 0x37, 0x73, 0xa5, 0x9e, 0xb8, 0x32, 0x7e, 0x70, 0x89, 0x9d, 0x3d, 0x74, 0x98, 0xaf, 0x16, 0xd6,
- 0xd6, 0x18, 0x90, 0x0a, 0xd6, 0x51, 0xc6, 0x80, 0xf1, 0xe9, 0x6f, 0x2d, 0x6e, 0x60, 0x35, 0x5e, 0x76, 0xcd,
- 0xb9, 0x6e, 0xb0, 0x4f, 0x23, 0x4d, 0xe6, 0x64, 0x96, 0xf2, 0xe6, 0x4e, 0x18, 0xf3, 0xe9, 0x61, 0xe9, 0x02,
- 0xcc, 0x2b
+ 0xdf, 0x32, 0x2e, 0x43, 0xc4, 0x4e, 0x14, 0x3c, 0x1c, 0xd3, 0xd0, 0x53, 0x60, 0x28, 0x78, 0x4f, 0x46, 0xa8,
+ 0xf3, 0x57, 0xcb, 0x0f, 0xda, 0x5b, 0xeb, 0xbe, 0xd8, 0x12, 0x85, 0x90, 0xac, 0x1c, 0x21, 0x4a, 0x54, 0x78,
+ 0x7b, 0x04, 0xce, 0x9b, 0xa0, 0x9f, 0x54, 0xb6, 0xca, 0x8c, 0xb7, 0x36, 0x2e, 0x23, 0xc4, 0x15, 0x29, 0xca,
+ 0xd8, 0x79, 0x97, 0x1f, 0xd8, 0xb8, 0xc4, 0xc8, 0xe2, 0xe0, 0xb3, 0xea, 0xd7, 0x26, 0xf3, 0xcc, 0xf9, 0x98,
+ 0xd6, 0x84, 0x52, 0xf1, 0x1a, 0xc8, 0x08, 0x42, 0x7f, 0xbd, 0xb1, 0x6c, 0x53, 0x3a, 0x18, 0xee, 0xee, 0xae,
+ 0x58, 0x11, 0x8e, 0xf6, 0x95, 0x10, 0x6a, 0x86, 0xe0, 0x26, 0x73, 0xe1, 0x5f, 0xc5, 0xa9, 0x7e, 0xc9, 0x67,
+ 0xa3, 0xff, 0xcd, 0xbb, 0x38, 0x80, 0x1d, 0x82, 0x9e, 0x1e, 0x14, 0xb2, 0x19, 0x36, 0x5f, 0xef, 0xe4, 0x16,
+ 0x36, 0x2e, 0x32, 0x50, 0xcb, 0xea, 0x16, 0x55, 0xe1, 0xb1, 0xed, 0x34, 0x9b, 0x97, 0x24, 0x9f, 0x74, 0xdf,
+ 0x85, 0xf1, 0x7c, 0xdc, 0x44, 0x4d, 0x92, 0xb8, 0xb8, 0x4a, 0xfd, 0xa4, 0x1b, 0x69, 0xe3, 0x1b, 0xe1, 0x02,
+ 0x8d, 0x43, 0xba, 0x15, 0x1d, 0xfa, 0xca, 0xf5, 0x87, 0x70, 0xfd, 0xc1, 0x26, 0xcc, 0x92, 0x0f, 0x16, 0x84,
+ 0x29, 0xef, 0x77, 0x88, 0x97, 0x14, 0x6e, 0x8e, 0xb9, 0x16, 0x2c, 0xd0, 0xd8, 0xb5, 0x82, 0x92, 0x18, 0x93,
+ 0xe8, 0xee, 0x3e, 0xd3, 0xcd, 0x0e, 0x1e, 0xb4, 0x56, 0xc3, 0x4d, 0xd5, 0xaa, 0x69, 0xc1, 0x8e, 0x1d, 0x60,
+ 0xd8, 0x8c, 0x29, 0x48, 0x20, 0x63, 0xe7, 0x7e, 0x88, 0xb9, 0xd3, 0x05, 0x7b, 0x07, 0x79, 0xc3, 0x2a, 0x30,
+ 0x3b, 0x9d, 0xe6, 0x6d, 0x65, 0x20, 0x15, 0x62, 0x79, 0x9d, 0xd1, 0x22, 0xd4, 0x32, 0x87, 0x6e, 0x56, 0x85,
+ 0x57, 0x6c, 0xed, 0x56, 0x82, 0xa6, 0xed, 0x6f, 0x3a, 0x12, 0x5c, 0x53, 0xc3, 0x52, 0x76, 0xd1, 0x16, 0x90,
+ 0x6b, 0x87, 0x6d, 0xb8, 0xbf, 0xc9, 0x84, 0xf6, 0xbd, 0xaa, 0x80, 0x24, 0xd7, 0x6b, 0x81, 0x2c, 0xa8, 0xcb,
+ 0x21, 0x08, 0xdd, 0x94, 0x5d, 0x86, 0x2b, 0x0a, 0xcb, 0x2c, 0x5d, 0xa5, 0xfb, 0x1b, 0xda, 0x99, 0x42, 0xcb,
+ 0xef, 0xd4, 0x36, 0x2f, 0xb3, 0xba, 0x46, 0x6e, 0xbf, 0x2c, 0x31, 0x09, 0xc4, 0xe0, 0x0c, 0xbd, 0x18, 0x4d,
+ 0xa5, 0x0e, 0xf2, 0xea, 0x65, 0x2b, 0xb5, 0x57, 0x82, 0x47, 0xda, 0x2e, 0xed, 0xc3, 0xcf, 0xbf, 0x4c, 0xda,
+ 0x60, 0x5c, 0x3a, 0xf5, 0xe2, 0xff, 0x6e, 0x45, 0x71, 0x61, 0xa9, 0xd4, 0x7d, 0x75, 0xcd, 0x1d, 0xcf, 0xcf,
+ 0x83, 0xa2, 0x16, 0xce, 0x58, 0xf1, 0xe0, 0xfe, 0xba, 0x1a, 0x82, 0xe3, 0x77, 0x6f, 0x56, 0x62, 0x68, 0xae,
+ 0xd7, 0x66, 0x64, 0x31, 0x36, 0x58, 0xb1, 0x0f, 0xcb, 0x16, 0x78, 0x4d, 0x6c, 0x46, 0x17, 0xb7, 0xd9, 0xf0,
+ 0x15, 0x80, 0xe7, 0x97, 0x09, 0x25, 0xbe, 0x98, 0xd9, 0xe1, 0x48, 0x37, 0x63, 0x11, 0xd0, 0xf1, 0xd5, 0x00,
+ 0x4c, 0xf4, 0x9a, 0x3e, 0x24, 0xdf, 0x33, 0x03, 0x68, 0x6b, 0x79, 0x31, 0x30, 0x1b, 0xfc, 0x17, 0x18, 0xba,
+ 0x2c, 0x5f, 0x18, 0x65, 0xb3, 0xf7, 0x86, 0x3a, 0xdc, 0x6f, 0x7e, 0x42, 0xfb, 0x3f, 0x16, 0x86, 0x7d, 0x46,
+ 0xb0, 0x8e, 0x9a, 0x05, 0x38, 0x52, 0x56, 0x80, 0xef, 0x3c, 0x65, 0x5b, 0xc2, 0x59, 0x64, 0x18, 0xe7, 0x08,
+ 0xe6, 0x9f, 0x6e, 0x81, 0xa6, 0xb0, 0x96, 0xb6, 0x99, 0x88, 0x20, 0x13, 0x8f, 0x72, 0x93, 0xbb, 0xc8, 0x68,
+ 0x3f, 0x3f, 0xf8, 0xe4, 0x55, 0xfa, 0x41, 0x94, 0x1d, 0xba, 0x30, 0x2c, 0xc5, 0x34, 0x1b, 0x27, 0x0b, 0x20,
+ 0x6d, 0xb5, 0x07, 0x07, 0xf5, 0x59, 0x25, 0x35, 0xcc, 0x11, 0x44, 0x31, 0x56, 0x44, 0x93, 0xf3, 0x84, 0x0a,
+ 0x3e, 0xe4, 0x30, 0xe5, 0x39, 0xcf, 0x8e, 0xe3, 0xb9, 0x7d, 0x94, 0xf1, 0xe7, 0x48, 0xf3, 0x9b, 0x52, 0x61,
+ 0x05, 0x39, 0x91, 0xb7, 0xc2, 0x20, 0x77, 0xe7, 0x2f, 0xfe, 0xd7, 0xbf, 0xfd, 0x9c, 0xab, 0x31, 0xb4, 0x64,
+ 0x03, 0xb7, 0x42, 0xeb, 0x99, 0xeb, 0x10, 0x8d, 0x7c, 0xaa, 0xe2, 0x3a, 0x59, 0x2c, 0x5d, 0xb5, 0xcb, 0xf9,
+ 0x0b, 0xe0, 0xe4, 0x6b, 0x3f, 0x80, 0xa7, 0x8f, 0x0a, 0x7e, 0x7a, 0x2a, 0x50, 0x6b, 0xc9, 0x9c, 0x9b, 0x21,
+ 0x77, 0xcb
};
// context = illuminazione
@@ -1535,53 +2022,53 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_JAPANESE__)
-// wake-word = konnichiwa konpyūtā
+// wake-word = こんにちは コンピューター
static const uint8_t KEYWORD_ARRAY[] = {
- 0xf9, 0x5a, 0xc7, 0xf5, 0xa7, 0xe9, 0x06, 0x3f, 0x00, 0x3a, 0x82, 0x94, 0x96, 0xc2, 0xa7, 0x82, 0xc3, 0x85,
- 0xc3, 0xec, 0xd9, 0x43, 0x14, 0x8f, 0x2a, 0xcf, 0x34, 0x77, 0x17, 0xfc, 0x81, 0x08, 0xf2, 0xb0, 0x16, 0x42,
- 0x3b, 0x2d, 0x95, 0xb3, 0xad, 0x00, 0xfc, 0xbb, 0x15, 0x2e, 0xba, 0x7e, 0x8a, 0x28, 0xfc, 0x46, 0x38, 0x6d,
- 0xeb, 0x07, 0xa7, 0xc3, 0x53, 0x2e, 0x3c, 0xd5, 0x3c, 0x69, 0xc5, 0x1d, 0x46, 0x1f, 0x0e, 0x93, 0x81, 0xc9,
- 0x8a, 0xc8, 0x32, 0xbe, 0x8f, 0xb6, 0xb2, 0x8a, 0x67, 0x1b, 0xc6, 0xba, 0x66, 0xf9, 0x2d, 0x48, 0x74, 0x0f,
- 0x31, 0xb2, 0x1d, 0x59, 0xe8, 0x65, 0x90, 0x0a, 0xea, 0x01, 0x03, 0x2e, 0xaf, 0x95, 0x7b, 0x15, 0x2a, 0xdb,
- 0xa4, 0x36, 0x73, 0x15, 0xe5, 0x23, 0xdc, 0xec, 0x93, 0x4e, 0x16, 0x04, 0x1d, 0x4c, 0x5b, 0x16, 0x25, 0x38,
- 0x61, 0xba, 0xc2, 0x48, 0x52, 0x2c, 0xa2, 0xfb, 0x59, 0xb6, 0x7b, 0x11, 0xc6, 0x5e, 0x96, 0x1b, 0xe4, 0x0d,
- 0x01, 0x8d, 0x22, 0xea, 0xbd, 0x1a, 0xb2, 0x31, 0x70, 0xa9, 0x1b, 0x25, 0x07, 0x0a, 0x17, 0xff, 0xf4, 0xfd,
- 0xdf, 0xf4, 0x0f, 0x60, 0xb7, 0x9f, 0xaa, 0x4c, 0xb9, 0xed, 0x97, 0x16, 0xc5, 0x03, 0x28, 0xef, 0xe8, 0x41,
- 0x2a, 0x45, 0x72, 0x48, 0xa1, 0x8f, 0x2c, 0x89, 0x23, 0x78, 0x50, 0xe1, 0xbe, 0xe1, 0x16, 0x63, 0x1b, 0x9f,
- 0x3b, 0x33, 0xf4, 0x7b, 0xf0, 0xfa, 0xd4, 0xfe, 0x6f, 0x54, 0x69, 0x8b, 0x89, 0x7b, 0x2f, 0x4f, 0x3f, 0x4b,
- 0xf7, 0x8c, 0xed, 0x99, 0x52, 0x87, 0x94, 0x26, 0x04, 0x51, 0xd9, 0x57, 0xab, 0xf7, 0xc3, 0x89, 0xc9, 0x46,
- 0x59, 0xb4, 0x0e, 0xef, 0xa1, 0xf3, 0x7a, 0x30, 0xec, 0x43, 0xfe, 0xf8, 0x7d, 0x9c, 0x94, 0x1f, 0xa2, 0xf2,
- 0x5d, 0x69, 0x01, 0xdd, 0x7f, 0xf7, 0x3c, 0x72, 0x7b, 0xa9, 0xa5, 0x99, 0x0d, 0xe9, 0x46, 0xb1, 0x36, 0x76,
- 0x2f, 0x4c, 0xf6, 0x65, 0x33, 0xb1, 0x0f, 0x90, 0x37, 0x62, 0xd2, 0xb7, 0x5b, 0x5b, 0x8b, 0xef, 0x0e, 0x3f,
- 0x97, 0xcd, 0xbf, 0x1e, 0xba, 0x65, 0x69, 0xaf, 0x99, 0xab, 0xa7, 0x20, 0xe3, 0x4f, 0xf3, 0x26, 0xda, 0x3c,
- 0x06, 0xb9, 0x10, 0xcc, 0x4e, 0x7d, 0xb4, 0x23, 0x51, 0xa4, 0x0b, 0x36, 0x40, 0x46, 0xa5, 0x2b, 0xe7, 0xa8,
- 0xd4, 0x30, 0xdb, 0x92, 0x5a, 0x10, 0x26, 0x23, 0x34, 0x07, 0x89, 0x1c, 0x93, 0xda, 0xf9, 0x0d, 0x5d, 0x59,
- 0xa9, 0x19, 0xfc, 0x02, 0x54, 0xfd, 0x68, 0x6d, 0x8e, 0x25, 0xf9, 0xf5, 0x76, 0xe0, 0x3e, 0x0a, 0x15, 0xce,
- 0x89, 0xdc, 0x53, 0xf6, 0xb7, 0xd3, 0xb6, 0xda, 0xc7, 0xdb, 0x36, 0x03, 0x49, 0xe1, 0x66, 0x43, 0x3c, 0xa8,
- 0x62, 0x31, 0xb9, 0x8e, 0x94, 0xc8, 0x74, 0x30, 0x67, 0x37, 0x27, 0x8f, 0x91, 0x83, 0xda, 0xc0, 0x17, 0xeb,
- 0xb6, 0x87, 0x72, 0x38, 0x2e, 0x21, 0xd7, 0x74, 0x28, 0x8f, 0x20, 0xe6, 0x37, 0x74, 0x7e, 0xe9, 0xa9, 0x48,
- 0x33, 0x42, 0x17, 0x12, 0x3d, 0x47, 0xc3, 0x25, 0x63, 0x26, 0xd0, 0x56, 0xbe, 0xaa, 0x79, 0x14, 0x0b, 0x93,
- 0xc6, 0xf1, 0x9a, 0x31, 0x71, 0x99, 0x22, 0x3d, 0xad, 0x93, 0xeb, 0x2f, 0xc2, 0x7b, 0x89, 0xb2, 0x28, 0xae,
- 0xcd, 0x60, 0xbd, 0x26, 0xc5, 0x71, 0x3c, 0x30, 0x55, 0xc0, 0xc8, 0xbd, 0xf9, 0x9b, 0x47, 0x58, 0x86, 0xcf,
- 0x69, 0x9a, 0x3a, 0xb0, 0x66, 0xc9, 0x04, 0x95, 0x84, 0x5c, 0x10, 0xa7, 0xab, 0x35, 0x82, 0x30, 0xfb, 0xfc,
- 0xe8, 0x8b, 0xab, 0xb0, 0xc1, 0x44, 0xff, 0x28, 0x6b, 0x8a, 0x85, 0xa6, 0xfe, 0x2c, 0x66, 0x70, 0x38, 0x6d,
- 0x79, 0xbb, 0xde, 0x03, 0x1e, 0x17, 0x64, 0x09, 0xbd, 0x0c, 0x86, 0x39, 0xbb, 0x30, 0xdb, 0x2f, 0x45, 0x2b,
- 0x5c, 0x5d, 0xb5, 0x48, 0xa6, 0xa0, 0x6e, 0x06, 0xcf, 0x36, 0x9c, 0xed, 0x3f, 0x5e, 0x22, 0x70, 0xc9, 0x9b,
- 0xaf, 0x29, 0x7b, 0x11, 0xa3, 0x16, 0x45, 0x89, 0xd5, 0x3d, 0x0d, 0xff, 0xfd, 0x3b, 0x06, 0x3d, 0xf9, 0x46,
- 0x3e, 0xa4, 0x0a, 0xcf, 0xa3, 0x0a, 0xb5, 0x95, 0x05, 0xdb, 0xad, 0x0e, 0x8e, 0xb6, 0x36, 0xf2, 0xd6, 0xd1,
- 0xa1, 0xee, 0x48, 0x36, 0xa0, 0xa6, 0xba, 0x7a, 0x9c, 0xd6, 0x28, 0x65, 0xe6, 0xfb, 0xe6, 0x43, 0x81, 0x14,
- 0xdc, 0xd5, 0x3b, 0x4b, 0x2d, 0x4b, 0x8a, 0x3a, 0x2d, 0x23, 0x8b, 0xc0, 0x83, 0x61, 0x5c, 0x68, 0xf2, 0xaf,
- 0xbf, 0x5f, 0x21, 0xc5, 0x8a, 0xa7, 0xa5, 0x97, 0x8d, 0xb8, 0xd2, 0x49, 0x0d, 0xcd, 0x5f, 0x9f, 0x36, 0xc4,
- 0x2c, 0x73, 0xa1, 0xe8, 0xa9, 0xb1, 0x7d, 0x6c, 0xaf, 0x3a, 0x67, 0x8c, 0xe9, 0xf8, 0xa9, 0x1c, 0xd1, 0xc7,
- 0x97, 0x1f, 0xee, 0x6c, 0x38, 0x07, 0x9f, 0x83, 0xec, 0x7c, 0xcf, 0xc2, 0x4c, 0xf7, 0x2d, 0x0f, 0x87, 0x23,
- 0x05, 0x56, 0x08, 0x52, 0xa9, 0xad, 0xab, 0x3f, 0x7f, 0x0a, 0xed, 0xd2, 0xca, 0x6b, 0xb5, 0xb2, 0x47, 0x79,
- 0x33, 0x4a, 0x7e, 0x9c, 0x56, 0x74, 0xe2, 0x3e, 0x57, 0x08, 0xb5, 0x49, 0xa4, 0x60, 0x33, 0xea, 0x9b, 0xe4,
- 0x38, 0x6b, 0x6b, 0x80, 0xde, 0x1c, 0xdd, 0x5d, 0x16, 0xb2, 0x66, 0xd2, 0x8c, 0x96, 0x5f, 0x14, 0x92, 0x87,
- 0xa4, 0x18, 0x42, 0xa8, 0xe8, 0x77, 0x1d, 0x1f, 0xf3, 0xd7, 0x89, 0xa4, 0x33, 0xee, 0xdc, 0x45, 0xa1, 0xe5,
- 0x59, 0x58, 0x62, 0xe3, 0xe2, 0x6b, 0x14, 0xec, 0x5d, 0xbd, 0x0e, 0x37, 0xdd, 0x2b, 0x17, 0xc3, 0xee, 0x30,
- 0x97, 0x15, 0x3a, 0xf2, 0xc9, 0xae, 0x93, 0xaf, 0x51, 0x00, 0x14, 0x2a, 0xe0, 0xf7, 0x1a, 0xd0, 0xee, 0xf5,
- 0x25, 0x0f, 0x19, 0x50, 0x1a, 0x53, 0xc3, 0xf8, 0xc5, 0x0c, 0xfd, 0x50, 0x37, 0x9a, 0xcc, 0x3a, 0xea, 0xe0,
- 0xc6, 0x6a, 0x91, 0x9c
+ 0x0c, 0xd2, 0x22, 0x12, 0xb5, 0x59, 0xe6, 0xf1, 0x07, 0x3a, 0x41, 0x98, 0xb9, 0x0b, 0x68, 0x9d, 0xf6, 0x00,
+ 0x8d, 0x85, 0xb2, 0x2e, 0x0d, 0x94, 0xc1, 0x08, 0x9e, 0x13, 0xc7, 0x50, 0xdc, 0xe3, 0x7a, 0x30, 0x22, 0xe1,
+ 0x19, 0xff, 0x5f, 0xe4, 0xa0, 0xd8, 0x18, 0xea, 0xda, 0xf5, 0x40, 0x1a, 0x7d, 0xc9, 0xe9, 0x32, 0xab, 0x56,
+ 0x95, 0x7b, 0xd0, 0x48, 0xb2, 0xef, 0x4f, 0x93, 0x1d, 0x1c, 0x79, 0x45, 0x55, 0x75, 0x5b, 0xa7, 0x05, 0x99,
+ 0xee, 0x35, 0x32, 0xe4, 0x24, 0x57, 0xb6, 0x1f, 0x8c, 0xef, 0x6e, 0xe6, 0x67, 0x38, 0xaa, 0x8e, 0x84, 0x40,
+ 0x7b, 0x2c, 0xb3, 0xba, 0x6c, 0x3e, 0xbe, 0x4c, 0x35, 0xbf, 0x60, 0x76, 0x2d, 0x56, 0x97, 0x73, 0x3f, 0xa0,
+ 0x92, 0x74, 0xf4, 0x80, 0xba, 0x75, 0x4d, 0x24, 0x35, 0x2d, 0xe5, 0x17, 0xd8, 0x89, 0x9c, 0xc9, 0x7a, 0xbd,
+ 0xf6, 0xc2, 0xaf, 0x0d, 0x68, 0x75, 0xb4, 0x0e, 0x7c, 0x83, 0x95, 0xf3, 0xbf, 0x8d, 0x0d, 0x96, 0x8c, 0xfd,
+ 0xf4, 0xd6, 0x61, 0xa6, 0x1d, 0xb3, 0x2b, 0x8a, 0x0a, 0x3f, 0xcb, 0xac, 0x77, 0x6c, 0x8d, 0x01, 0xc8, 0x96,
+ 0x8d, 0x05, 0x84, 0x6c, 0x34, 0x17, 0x17, 0x09, 0x71, 0xc3, 0x68, 0xd9, 0xe7, 0x55, 0x3a, 0x4d, 0x37, 0x14,
+ 0xe7, 0x0a, 0x87, 0xbc, 0xa2, 0x3c, 0xa2, 0xb5, 0xa7, 0xb2, 0xd7, 0x80, 0x5a, 0x92, 0x99, 0x1a, 0xc8, 0x1c,
+ 0x54, 0xc7, 0x47, 0x62, 0x7d, 0xfa, 0xe5, 0xec, 0xcb, 0x47, 0xb1, 0x74, 0xdd, 0xa4, 0x33, 0x8d, 0xad, 0x67,
+ 0x4e, 0x8a, 0x6e, 0x56, 0x94, 0x7b, 0x9b, 0xcc, 0xf1, 0x28, 0xd0, 0x81, 0xd1, 0xd0, 0xe3, 0x8a, 0xcd, 0xcc,
+ 0x1c, 0x9b, 0xde, 0xc7, 0xac, 0xe9, 0xb6, 0x4a, 0xe1, 0xbe, 0x15, 0xb2, 0x02, 0x19, 0x30, 0x0b, 0x7a, 0x94,
+ 0xcf, 0xf6, 0xa1, 0x71, 0x54, 0xfc, 0xe8, 0x3f, 0xd0, 0xba, 0x7f, 0x7e, 0x52, 0xb8, 0x6a, 0x13, 0x48, 0xa3,
+ 0xbb, 0xc3, 0x23, 0xff, 0xd9, 0x03, 0xdc, 0x6d, 0xe5, 0x97, 0x9e, 0xf1, 0x9d, 0x17, 0x23, 0x33, 0x77, 0x1d,
+ 0xff, 0xbd, 0x86, 0x02, 0x93, 0x8e, 0xf1, 0x56, 0xfd, 0x02, 0xb7, 0x3c, 0x13, 0x07, 0xea, 0x32, 0x6f, 0x11,
+ 0x28, 0x17, 0x53, 0x8a, 0xd6, 0xdc, 0x97, 0x83, 0xd9, 0x22, 0x47, 0xa8, 0x4c, 0x3f, 0xa2, 0xd1, 0x0c, 0x56,
+ 0x68, 0xc4, 0xb3, 0x3d, 0xfa, 0x3f, 0xf0, 0x3f, 0x13, 0xd8, 0xfd, 0x5e, 0x8b, 0x25, 0xd3, 0xb5, 0x0f, 0x10,
+ 0xd9, 0xfe, 0x83, 0xc3, 0x4b, 0x7d, 0x26, 0x86, 0x3f, 0x3d, 0xf3, 0x40, 0xc0, 0x0c, 0xb1, 0x44, 0xfa, 0x19,
+ 0x57, 0xfc, 0x1f, 0xeb, 0x1c, 0x85, 0x4f, 0xc4, 0x9d, 0x10, 0x70, 0x99, 0x21, 0x49, 0xc3, 0x52, 0x29, 0x8d,
+ 0xde, 0xee, 0x73, 0xb6, 0xc1, 0x1e, 0x7a, 0x9b, 0x73, 0x09, 0xc9, 0x43, 0x1e, 0xeb, 0x7a, 0x45, 0x94, 0x52,
+ 0xd9, 0x5c, 0xaa, 0x1c, 0x57, 0xa6, 0x1f, 0x7c, 0xdf, 0x47, 0xe4, 0xd7, 0xeb, 0xab, 0x98, 0x44, 0xbd, 0x38,
+ 0x5f, 0xf6, 0xd2, 0xef, 0xfe, 0xc1, 0xe5, 0xee, 0xd7, 0x9a, 0xc1, 0xc6, 0xdb, 0x62, 0x91, 0xc4, 0x17, 0x67,
+ 0x3a, 0x1c, 0xf3, 0x19, 0xff, 0x2f, 0x9b, 0xed, 0x06, 0xcd, 0x95, 0xd0, 0x68, 0x00, 0x41, 0xc6, 0xcd, 0x2f,
+ 0xd8, 0x5b, 0xd0, 0x28, 0xaf, 0x22, 0x20, 0xbd, 0x5b, 0x9e, 0x3e, 0x79, 0x81, 0xd6, 0x7a, 0xea, 0xc3, 0xc2,
+ 0xab, 0x27, 0xa5, 0xdf, 0x1a, 0xa1, 0x96, 0x90, 0xab, 0xbd, 0x1d, 0x0a, 0xb4, 0x8d, 0x8f, 0x2c, 0x39, 0xab,
+ 0x09, 0xde, 0x8c, 0xe6, 0x81, 0x37, 0x0b, 0xac, 0x0d, 0x3d, 0xca, 0x4b, 0xc4, 0x45, 0x79, 0xb7, 0x11, 0x7b,
+ 0xad, 0x4b, 0xf6, 0x89, 0x9b, 0x97, 0x27, 0xa0, 0x7f, 0x46, 0x4b, 0x77, 0xd1, 0x77, 0xf3, 0xf5, 0x99, 0xc0,
+ 0x4a, 0xec, 0x08, 0x16, 0x2d, 0xa6, 0xde, 0xb8, 0x1b, 0x46, 0x4f, 0xe8, 0x56, 0xb5, 0x76, 0x7d, 0xb7, 0x2f,
+ 0x22, 0xc3, 0x52, 0x72, 0xa6, 0x28, 0xb3, 0x2f, 0x41, 0xe3, 0x32, 0x03, 0xbb, 0x17, 0xc8, 0xc7, 0x26, 0xca,
+ 0x07, 0x3b, 0xf4, 0x7f, 0x73, 0x88, 0xab, 0x86, 0xbe, 0x57, 0x63, 0xfe, 0xa7, 0x84, 0xdb, 0xd1, 0xeb, 0xd3,
+ 0x1a, 0xad, 0xe6, 0xbe, 0x2e, 0x08, 0x15, 0xd2, 0x6a, 0x49, 0xc9, 0x8b, 0x95, 0xb5, 0xa0, 0xc8, 0x9f, 0x56,
+ 0x00, 0x0b, 0xec, 0xfb, 0x27, 0x2e, 0xd3, 0x2a, 0x4e, 0xbf, 0xa9, 0xdc, 0xa9, 0x71, 0xfc, 0xb2, 0x68, 0x18,
+ 0x90, 0x5e, 0x33, 0xb7, 0xcc, 0xbd, 0x6d, 0x66, 0x55, 0x7d, 0xdf, 0x04, 0xfa, 0x81, 0x9e, 0xd3, 0x00, 0xf5,
+ 0x3c, 0xa5, 0x5d, 0x36, 0xf9, 0x83, 0x7f, 0x6f, 0xc0, 0x98, 0x0e, 0xac, 0x51, 0x4a, 0xbe, 0xc0, 0x96, 0x2f,
+ 0x40, 0xee, 0x01, 0x8d, 0x07, 0x1c, 0x4d, 0xc4, 0x34, 0xdf, 0xcb, 0x2d, 0x55, 0xbe, 0x2a, 0x39, 0xa6, 0x90,
+ 0x37, 0xec, 0x5b, 0xe3, 0xfd, 0x7d, 0xe0, 0x3b, 0x9f, 0x52, 0xac, 0x60, 0xce, 0xbe, 0x76, 0x63, 0xe5, 0x4f,
+ 0x9f, 0xec, 0x43, 0xcf, 0x5a, 0xb0, 0xee, 0x78, 0x45, 0x3e, 0xd5, 0x81, 0x56, 0x2c, 0x1a, 0xae, 0xda, 0xbb,
+ 0xf5, 0x1a, 0x29, 0x96, 0xd5, 0x1a, 0x81, 0xcc, 0x2c, 0x6f, 0xc1, 0x76, 0x93, 0x97, 0x10, 0x3d, 0x27, 0xce,
+ 0x1b, 0xa5, 0xc0, 0x04, 0xca, 0xc0, 0xa2, 0x3d, 0x54, 0x41, 0xec, 0x7e, 0x82, 0xb7, 0x8c, 0x76, 0x39, 0x33,
+ 0xb1, 0x14, 0xa3, 0x04, 0x16, 0x4d, 0x87, 0xe5, 0x8a, 0x8d, 0x59, 0x99, 0x11, 0x64, 0x06, 0xee, 0xf2, 0x25,
+ 0xb5, 0xd3, 0xa7, 0xf4, 0x4a, 0x30, 0x97, 0x51, 0xf7, 0x53, 0xbd, 0xa6, 0x06, 0x54, 0xb4, 0x58, 0x50, 0x45,
+ 0x7b, 0xae, 0x41, 0x86, 0xa2, 0x78, 0x50, 0x7d, 0xe4, 0x24, 0xe9, 0xb9, 0xcf, 0x73, 0xba, 0x81, 0x98, 0xa7,
+ 0xa2, 0x0d, 0x43, 0x40
};
// context = sumāto_shōmei
@@ -2002,42 +2489,42 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_KOREAN__)
-// wake-word = annyeong keompyuteo
+// wake-word = 안녕 컴퓨터
static const uint8_t KEYWORD_ARRAY[] = {
- 0xca, 0x3d, 0xa9, 0x17, 0x6d, 0xd1, 0x76, 0x57, 0x8a, 0xdb, 0xe5, 0x85, 0x47, 0x26, 0xfe, 0xad, 0x92, 0x53,
- 0xa4, 0x2f, 0x81, 0xf0, 0x00, 0x14, 0xae, 0xa3, 0xa9, 0x97, 0xb1, 0x61, 0xea, 0x79, 0x9e, 0xc8, 0x76, 0xdd,
- 0xe1, 0x5a, 0x0f, 0x3b, 0x66, 0x8e, 0xd0, 0x24, 0xc9, 0xed, 0x76, 0xcc, 0x68, 0x8e, 0x0d, 0xcb, 0x8e, 0x6a,
- 0xe8, 0xa9, 0x64, 0xc2, 0x19, 0x35, 0x83, 0xb7, 0xd0, 0x62, 0xc3, 0x1d, 0x1b, 0x4f, 0x11, 0x31, 0x9c, 0xbf,
- 0x81, 0x61, 0x87, 0xe2, 0xf1, 0xb5, 0xc4, 0x2f, 0xe8, 0x63, 0x00, 0xc3, 0x1d, 0x26, 0x3a, 0xf6, 0x01, 0x47,
- 0x63, 0x65, 0xf6, 0xe3, 0x51, 0xaa, 0x8a, 0x5f, 0x12, 0xbb, 0xe6, 0xf7, 0x81, 0xb3, 0x4e, 0xb7, 0xa0, 0xb4,
- 0x4e, 0xe5, 0x86, 0xae, 0x18, 0xbb, 0x54, 0x45, 0xc9, 0x52, 0xe4, 0x2e, 0xce, 0x84, 0xcf, 0x49, 0x21, 0xff,
- 0x81, 0xb7, 0xbe, 0x4d, 0x75, 0x8d, 0xa5, 0x74, 0xdb, 0xc6, 0xb9, 0x30, 0xc2, 0xb6, 0x1c, 0xd2, 0x69, 0x67,
- 0xe8, 0x80, 0xab, 0xcd, 0xcd, 0xd3, 0x3e, 0xb4, 0x23, 0xc8, 0xae, 0xd1, 0xba, 0x17, 0xba, 0x95, 0x1c, 0x68,
- 0xba, 0x96, 0xa6, 0x53, 0x14, 0x95, 0x41, 0xf6, 0xd6, 0xc4, 0x78, 0x7d, 0x69, 0xb0, 0xd9, 0xb6, 0x21, 0xe7,
- 0x86, 0xc5, 0xab, 0xc6, 0xeb, 0xf5, 0xf6, 0xd4, 0x98, 0xb6, 0xa7, 0x1a, 0x84, 0x02, 0xfc, 0xcf, 0xc0, 0x15,
- 0x1a, 0x66, 0x6f, 0x25, 0xea, 0x03, 0x79, 0xad, 0x14, 0x15, 0x74, 0x62, 0x8b, 0x7e, 0x53, 0x2f, 0x94, 0xea,
- 0xf8, 0xd6, 0x1f, 0x4d, 0xe6, 0xfd, 0xe3, 0xa0, 0xf7, 0x9a, 0x3f, 0x37, 0x63, 0x6f, 0x48, 0x27, 0xea, 0x86,
- 0xa2, 0x0e, 0x41, 0x8b, 0xe5, 0xd9, 0xcb, 0x1b, 0x9b, 0x50, 0x0f, 0x71, 0xd5, 0xa8, 0x90, 0x0f, 0xac, 0x57,
- 0x7b, 0xc2, 0x81, 0x77, 0x11, 0x8c, 0x31, 0x29, 0x45, 0xc8, 0x51, 0x2d, 0xa8, 0x77, 0x4b, 0xed, 0x0b, 0x31,
- 0x0e, 0x14, 0x3f, 0xd6, 0xa3, 0xb1, 0xb6, 0xc1, 0x54, 0xe1, 0xbf, 0x72, 0xf6, 0xdc, 0xcc, 0x27, 0xeb, 0x47,
- 0x0d, 0x04, 0x8d, 0xe0, 0xf3, 0xe3, 0xb4, 0xaf, 0x73, 0x09, 0x7a, 0x82, 0x58, 0xaa, 0xca, 0x97, 0xc2, 0x82,
- 0x46, 0xbf, 0xad, 0x4b, 0x2d, 0x20, 0x2d, 0xef, 0xf7, 0x21, 0x29, 0x36, 0x3b, 0xa9, 0x87, 0x61, 0x9a, 0x66,
- 0x53, 0xfb, 0xa7, 0x5f, 0x02, 0xc7, 0x60, 0x4c, 0x44, 0x87, 0x54, 0x3f, 0x60, 0xa4, 0x0d, 0xc0, 0x4a, 0x1c,
- 0xa8, 0x50, 0xe0, 0xbd, 0x37, 0x16, 0x95, 0x58, 0xea, 0x10, 0xa5, 0x76, 0xa4, 0x1f, 0x58, 0xbe, 0x1f, 0x01,
- 0xc5, 0x2b, 0x1d, 0x3b, 0x3b, 0xc9, 0xca, 0xbb, 0x52, 0xf3, 0xe8, 0x9c, 0xbf, 0x68, 0xe9, 0xa5, 0x58, 0x42,
- 0x1f, 0x01, 0xfd, 0xe8, 0xc0, 0x7c, 0xff, 0x23, 0xf8, 0xbb, 0x46, 0xcd, 0xf2, 0xc4, 0x92, 0x86, 0x3f, 0xf7,
- 0x43, 0xba, 0x23, 0x53, 0x20, 0x1b, 0x93, 0x11, 0x93, 0xe8, 0x89, 0x5b, 0xfb, 0x95, 0x23, 0xd2, 0x74, 0xab,
- 0xed, 0xed, 0xe9, 0xc9, 0x5e, 0x3e, 0xfd, 0xe2, 0x21, 0xfe, 0x01, 0xf7, 0x11, 0xd6, 0xd2, 0x5a, 0x12, 0x59,
- 0xfa, 0xa1, 0x91, 0x3f, 0x99, 0x15, 0x24, 0x14, 0x53, 0xd5, 0xc2, 0xaa, 0xf3, 0xdc, 0xb5, 0xb3, 0xca, 0x57,
- 0x05, 0x8b, 0x48, 0x3e, 0xbc, 0x94, 0x7d, 0xe7, 0x2f, 0xae, 0x18, 0x54, 0xa8, 0x37, 0x07, 0x83, 0x89, 0x5a,
- 0x06, 0x0c, 0xdf, 0xd6, 0xaa, 0x14, 0x74, 0x4d, 0xdd, 0x25, 0x2b, 0xad, 0x7c, 0xfc, 0x2a, 0xb1, 0x7b, 0x12,
- 0x4d, 0x88, 0xa9, 0x94, 0x50, 0xd8, 0x47, 0x00, 0x35, 0x22, 0x32, 0x9b, 0xf2, 0xf2, 0x1d, 0x9c, 0x28, 0x2d,
- 0x5b, 0xc2, 0x4e, 0x79, 0x7a, 0x9d, 0x76, 0x76, 0xa6, 0xb5, 0x18, 0x54, 0x00, 0xd8, 0x3c, 0x7d, 0x37, 0x82,
- 0x38, 0x20, 0xab, 0x19, 0xce, 0x85, 0xda, 0x1f, 0x49, 0x82, 0x0e, 0x5a, 0x56, 0xfc, 0x12, 0x5a, 0x1c, 0x86,
- 0x9a, 0x00, 0x7d, 0xf3, 0xae, 0xee, 0xa8, 0xe6, 0xe0, 0x82, 0xc6, 0x46, 0x0b, 0x67, 0x2d, 0x2d, 0xc9, 0x00,
- 0x8a, 0x1f, 0xe4, 0x34, 0xdf, 0x3e, 0x7d, 0xdb, 0x15, 0xb4, 0xad, 0x80, 0xc6, 0x21, 0x9e, 0x80, 0xdf, 0xd0,
- 0x77, 0x98, 0xaf, 0xa0, 0xe7, 0xb0, 0xee, 0x8f, 0x38, 0x92, 0x36, 0x8b, 0x24, 0xd9, 0xeb, 0x37, 0xc7, 0xfb,
- 0x20, 0x74, 0x61, 0x63, 0x6c, 0x53, 0xf9, 0x7a, 0x65, 0x26, 0x5c, 0xa0, 0xb0, 0x5b, 0x22, 0x0d, 0x8e, 0x68
+ 0x6f, 0x77, 0x54, 0x89, 0xec, 0xb1, 0x5b, 0x25, 0xad, 0xd5, 0xb5, 0xc1, 0x15, 0x17, 0x09, 0x6e, 0x82, 0xe5,
+ 0x50, 0xb1, 0xde, 0xa4, 0x9f, 0x12, 0x5f, 0x18, 0xb7, 0x19, 0x24, 0xb3, 0x3b, 0xe3, 0xeb, 0x83, 0x09, 0xc2,
+ 0x90, 0x12, 0x93, 0x88, 0xa7, 0x24, 0x40, 0xaf, 0x3f, 0xee, 0xbd, 0x56, 0x6d, 0x13, 0x8f, 0xbb, 0x97, 0xef,
+ 0xae, 0x31, 0x17, 0xd2, 0x14, 0x97, 0xd5, 0x19, 0x7c, 0xf8, 0xa2, 0xd5, 0xc9, 0xda, 0xc7, 0x9f, 0xdc, 0x3f,
+ 0x45, 0x16, 0xbf, 0xf2, 0x14, 0xf3, 0xe6, 0x80, 0xee, 0xd7, 0xc7, 0xdc, 0x4e, 0xc7, 0xcb, 0x8c, 0xf6, 0x21,
+ 0xd8, 0x8a, 0xe2, 0x05, 0x80, 0x73, 0xd9, 0x21, 0x06, 0x84, 0x9b, 0x66, 0x36, 0xd6, 0x3e, 0x00, 0x00, 0x09,
+ 0xbb, 0x51, 0x91, 0x06, 0x4b, 0x93, 0x22, 0xbe, 0xb8, 0x8a, 0x91, 0xa0, 0x4a, 0x43, 0x1b, 0xa8, 0xdd, 0x67,
+ 0xb6, 0xaf, 0x4a, 0xe1, 0xfd, 0x72, 0x16, 0x46, 0xfa, 0x02, 0xf5, 0xcb, 0x93, 0xbd, 0xa4, 0x00, 0xf8, 0x76,
+ 0xf6, 0x4d, 0x3f, 0xab, 0x9d, 0x0a, 0xcf, 0x2f, 0xb6, 0x46, 0x25, 0xa7, 0x50, 0xfe, 0xe5, 0xd6, 0x03, 0xb1,
+ 0x9d, 0x46, 0x67, 0x6b, 0xc1, 0x41, 0xe6, 0x2e, 0x76, 0x0d, 0x9b, 0xc6, 0xb1, 0xe2, 0x43, 0x18, 0x7f, 0x86,
+ 0x99, 0xec, 0x38, 0x5c, 0x1d, 0x87, 0x6f, 0x68, 0x5c, 0xfd, 0x2f, 0xe9, 0x73, 0x62, 0x0b, 0x7e, 0xc2, 0x81,
+ 0xfa, 0xc8, 0x04, 0x8c, 0x2a, 0x86, 0x7f, 0xb2, 0xe6, 0x07, 0xa3, 0xc5, 0xf8, 0x4c, 0xd8, 0xda, 0x44, 0x90,
+ 0x9d, 0x3e, 0x82, 0x27, 0xd6, 0x1d, 0x7a, 0x98, 0x52, 0xeb, 0x0f, 0xf8, 0x0a, 0xb8, 0x9c, 0xd0, 0x49, 0x72,
+ 0xf1, 0x2f, 0x17, 0x9f, 0x85, 0x4c, 0x22, 0xbc, 0x48, 0x36, 0x76, 0x25, 0x39, 0x87, 0x29, 0x1f, 0xfe, 0x27,
+ 0x76, 0x27, 0xe1, 0xf8, 0x36, 0x66, 0x7f, 0x24, 0xca, 0x46, 0x20, 0x83, 0x69, 0xd9, 0x24, 0xb5, 0xd2, 0xcb,
+ 0x1c, 0xcd, 0x3e, 0x68, 0xc4, 0xd9, 0xbd, 0xae, 0x84, 0x31, 0x1f, 0x7e, 0xb1, 0xe1, 0x84, 0xc0, 0x80, 0x59,
+ 0x61, 0xa2, 0x01, 0xa1, 0x97, 0xaf, 0x4a, 0xf8, 0x2a, 0x74, 0x29, 0xdd, 0x75, 0x8d, 0xec, 0xab, 0x89, 0xc9,
+ 0x7f, 0x14, 0x5b, 0xf6, 0xd5, 0x64, 0x5a, 0x02, 0xa1, 0x05, 0x9f, 0x76, 0x89, 0xd4, 0x6c, 0x6b, 0xff, 0x98,
+ 0x16, 0xd7, 0xcb, 0x01, 0xa2, 0x69, 0x12, 0xd2, 0x33, 0x95, 0x94, 0x4e, 0x99, 0x64, 0xec, 0xab, 0x71, 0x59,
+ 0x62, 0x4c, 0x5b, 0x19, 0x5e, 0x1b, 0x4e, 0x64, 0xd6, 0xcc, 0x5f, 0x94, 0xe2, 0x55, 0x6d, 0xd2, 0xd6, 0xec,
+ 0x7b, 0xbd, 0x67, 0xcf, 0x59, 0xc7, 0x71, 0x2d, 0x71, 0x6d, 0x14, 0x02, 0xd1, 0x2c, 0x85, 0x26, 0x2c, 0x60,
+ 0x4c, 0xcc, 0xcc, 0xf8, 0xbf, 0x2f, 0xa8, 0xad, 0x63, 0x2e, 0x37, 0xaa, 0x3d, 0x12, 0xa1, 0xc0, 0xa4, 0x76,
+ 0xb7, 0x15, 0x0b, 0x1a, 0xf3, 0xb9, 0x81, 0x9f, 0x13, 0x9a, 0x7c, 0xc3, 0x66, 0x0a, 0x6b, 0xe6, 0x17, 0x55,
+ 0x47, 0x5e, 0x11, 0x06, 0x2c, 0x22, 0xb9, 0xb9, 0xf4, 0xab, 0x85, 0xa6, 0xae, 0xcd, 0xff, 0x96, 0x56, 0x37,
+ 0x9d, 0xde, 0xfc, 0x64, 0x59, 0xfe, 0xcd, 0xaf, 0x6c, 0x65, 0x37, 0x5c, 0x4e, 0x1e, 0x56, 0xd3, 0xc4, 0x5b,
+ 0x3a, 0x39, 0xe7, 0xdf, 0x03, 0xee, 0x19, 0x3f, 0x13, 0x65, 0x23, 0x14, 0xec, 0x1f, 0xe8, 0x3b, 0x7c, 0x10,
+ 0x30, 0xf0, 0xf5, 0x1c, 0xd7, 0x02, 0x3b, 0x65, 0x50, 0x8f, 0xc6, 0x38, 0x24, 0x5a, 0x46, 0xef, 0x92, 0xa3,
+ 0x29, 0x19, 0xdb, 0x91, 0x1c, 0x1d, 0x28, 0xb0, 0x07, 0xbe, 0xb0, 0x33, 0x67, 0x22, 0xb6, 0x29, 0xba, 0x0e,
+ 0xce, 0x97, 0x66, 0x18, 0x36, 0xd3, 0xb6, 0x9d, 0xa7, 0x74, 0x7f, 0x8f, 0xf0, 0xad, 0x1f, 0x45, 0x42, 0xda,
+ 0x32, 0x6a, 0xbc, 0x89, 0xe7, 0xf1, 0x2b, 0x37, 0x68, 0x96, 0x74, 0x2e, 0x59, 0x22, 0x1a, 0x95, 0x7c, 0x93,
+ 0x88, 0xba, 0x00, 0xea, 0xfc, 0xb3, 0x05, 0x08, 0xba, 0x64, 0xc1, 0x6f, 0xf2, 0xe9, 0x01, 0xd3, 0xa2, 0x79,
+ 0x63, 0x5b, 0x80, 0xac, 0x62, 0x88, 0xb2, 0xe0, 0x6b, 0x0f, 0xda, 0xb9, 0x39, 0x43, 0x3e, 0x56, 0x9e, 0xfc,
+ 0xd4, 0xb7, 0x4f, 0x8e, 0x3c, 0x16, 0x9d, 0x41, 0xbc, 0x57, 0x41, 0x57, 0x9c, 0x92, 0x73, 0xb9, 0x78, 0x09,
+ 0xbf, 0x9d, 0x34, 0x76, 0xba, 0x0c, 0x5a, 0xe0, 0xc8, 0x63, 0x8a, 0x60, 0x3e, 0x76, 0x34, 0x78, 0xdc, 0x01
};
// context = seumateu_jomyeong
@@ -2348,46 +2835,215 @@ static const uint8_t CONTEXT_ARRAY[] = {
0x00, 0x00
};
-#endif // __PV_LANGUAGE_KOREAN__
+#endif // __PV_LANGUAGE_KOREAN__
+
+#if defined(__PV_LANGUAGE_DUTCH__)
+
+// wake-word = hallo computer
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0xf9, 0x03, 0x31, 0xe5, 0x3e, 0x12, 0xd3, 0xc6, 0xb8, 0xa1, 0xe3, 0x5a, 0x5b, 0x3c, 0x24, 0x38, 0xc9, 0x1c,
+ 0xb9, 0xb0, 0xea, 0x3d, 0xb7, 0x25, 0xaa, 0x8f, 0x54, 0x8f, 0xf0, 0xa3, 0x5d, 0xaf, 0xf1, 0x8d, 0x8c, 0x28,
+ 0xa0, 0xba, 0xa9, 0x35, 0x76, 0x7a, 0x5e, 0xe3, 0xb8, 0xb0, 0xc2, 0x5f, 0x1b, 0x0b, 0x33, 0xa1, 0x7e, 0x08,
+ 0x39, 0x89, 0x91, 0xe2, 0xef, 0xfb, 0xce, 0x58, 0xfc, 0xa3, 0xf1, 0x1d, 0x1d, 0x3b, 0x20, 0x02, 0xd3, 0x12,
+ 0x5d, 0xf5, 0xa6, 0x13, 0x0d, 0x3d, 0x26, 0x3b, 0xbb, 0xab, 0x8c, 0x21, 0x53, 0xad, 0x41, 0xc2, 0x81, 0xfd,
+ 0xe4, 0x04, 0x66, 0xa0, 0xe5, 0x21, 0x1f, 0x85, 0x16, 0x25, 0x61, 0x0a, 0xff, 0xe0, 0x57, 0x5e, 0x5f, 0xfd,
+ 0x71, 0x40, 0xa6, 0x26, 0xe2, 0x86, 0x2e, 0xa4, 0xf6, 0x80, 0x55, 0xc7, 0xa7, 0x6f, 0x62, 0x13, 0x74, 0x1b,
+ 0x81, 0x41, 0xb3, 0xc6, 0x0a, 0xdc, 0xc2, 0x6c, 0xc6, 0x6a, 0x63, 0xb4, 0xb0, 0xaf, 0x17, 0x38, 0x6c, 0xf1,
+ 0xd5, 0xac, 0xb2, 0xf5, 0xbc, 0x01, 0x98, 0xa1, 0x43, 0x02, 0xf8, 0x68, 0x7e, 0x41, 0x8b, 0xfc, 0xa3, 0x01,
+ 0x0b, 0x93, 0x55, 0xac, 0x52, 0x7c, 0x9b, 0x77, 0x06, 0x69, 0x76, 0xb5, 0x5a, 0x24, 0x93, 0xdf, 0x67, 0x8a,
+ 0xa2, 0x2e, 0x76, 0xef, 0x50, 0x99, 0x67, 0x96, 0x44, 0x9d, 0xbc, 0x9f, 0x84, 0x83, 0x7f, 0x4a, 0xf0, 0xe0,
+ 0xc4, 0x00, 0x7b, 0xcf, 0x17, 0x0e, 0x87, 0xf8, 0xac, 0xb5, 0x11, 0xdb, 0xfc, 0x9f, 0xb5, 0x5f, 0x65, 0x47,
+ 0x50, 0x0c, 0x6e, 0x74, 0x4b, 0xf8, 0x03, 0xec, 0x7e, 0x2a, 0x82, 0xd6, 0x92, 0xbc, 0x86, 0x62, 0xd9, 0xf5,
+ 0xc6, 0x2b, 0xab, 0x9f, 0xd2, 0xe2, 0x32, 0x74, 0x1d, 0xb6, 0xed, 0x40, 0x3d, 0xa0, 0xd5, 0x70, 0xc4, 0x58,
+ 0xcd, 0x78, 0xbd, 0xc5, 0x55, 0x56, 0x08, 0x44, 0x20, 0x88, 0xd9, 0x4d, 0x24, 0xbc, 0x60, 0x7a, 0xf2, 0x67,
+ 0xaa, 0xa9, 0x3b, 0xe3, 0x49, 0xbd, 0x3a, 0xed, 0xcf, 0xdd, 0xf6, 0x23, 0x87, 0x11, 0x0d, 0xc4, 0xc1, 0x19,
+ 0x41, 0x9d, 0xd5, 0xb0, 0xc9, 0xa7, 0xd5, 0x0f, 0x56, 0x6e, 0xb7, 0x66, 0x16, 0x0a, 0x1d, 0x38, 0xd0, 0x36,
+ 0xbb, 0xbc, 0xcb, 0xfd, 0x7b, 0xab, 0x8e, 0x71, 0x9e, 0xac, 0x7f, 0x3b, 0x08, 0x26, 0xa2, 0xce, 0xf9, 0x90,
+ 0x61, 0xef, 0x6a, 0x93, 0x15, 0x4e, 0x34, 0xb6, 0x8d, 0x92, 0x79, 0x7d, 0xa8, 0xfa, 0x51, 0x6b, 0x8d, 0xbe,
+ 0xd5, 0x8d, 0x33, 0x3c, 0xe0, 0x17, 0xb6, 0x46, 0xbf, 0x31, 0x8c, 0x9b, 0x39, 0x05, 0x19, 0xc7, 0xf6, 0x7f,
+ 0xd6, 0xf8, 0x0b, 0x89, 0x66, 0xf7, 0x28, 0x2c, 0x3a, 0x0c, 0x06, 0x02, 0x45, 0x91, 0x5a, 0x56, 0xd4, 0x98,
+ 0x81, 0x73, 0x14, 0xa3, 0x39, 0x9b, 0xdb, 0xba, 0xc4, 0x96, 0x68, 0xc3, 0x50, 0x00, 0xbf, 0x37, 0x94, 0x46,
+ 0xd6, 0x07, 0x20, 0x3e, 0xa8, 0x85, 0xac, 0xd9, 0x41, 0x5a, 0x96, 0xee, 0x6d, 0x56, 0xe1, 0xac, 0x87, 0x97,
+ 0x82, 0xc5, 0xf4, 0xee, 0x9e, 0x25, 0x31, 0x92, 0xa5, 0x93, 0x21, 0x64, 0x8f, 0xe9, 0x58, 0x12, 0xfc, 0xe8,
+ 0xdb, 0x15, 0xd6, 0x2b, 0x9a, 0xc7, 0x59, 0xb7, 0xd8, 0x36, 0x99, 0x79, 0x99, 0xd7, 0x72, 0x8c, 0x74, 0x25,
+ 0xcf, 0xce, 0xd4, 0xee, 0x5e, 0xf0, 0x5c, 0x2f, 0x5a, 0x9b, 0x70, 0xd7, 0xac, 0x5d, 0x71, 0xb7, 0xb5, 0x7f,
+ 0xf5, 0x7b, 0x45, 0x94, 0x49, 0x86, 0xcc, 0xb7, 0xa7, 0x66, 0xf2, 0x4b, 0x6f, 0x93, 0xbf, 0x7e, 0xfd, 0x71,
+ 0x47, 0xc9, 0x46, 0x00, 0x97, 0x45, 0x2f, 0x9d, 0x87, 0x71, 0xfb, 0xcd, 0x45, 0x53, 0x57, 0x46, 0xcc, 0xb8,
+ 0x1e, 0xfc, 0x9c, 0xe6, 0x18, 0x93, 0xea, 0x2e, 0x55, 0x0a, 0x0d, 0x7b, 0xe3, 0x21, 0x3e, 0x04, 0x15, 0x6e,
+ 0x0f, 0xe0, 0xab, 0xe5, 0x0d, 0x07, 0xb8, 0x19, 0x12, 0xd1, 0x46, 0x4d, 0x6c, 0x0d, 0xb3, 0x46, 0x28, 0xbf,
+ 0xf1, 0x9c, 0x6a, 0x2b, 0xa0, 0x2a, 0xc0, 0xad, 0x5f, 0x8a, 0x0a, 0xfd, 0x55, 0x48, 0xda, 0x69, 0xae, 0xb0,
+ 0x38, 0x8f, 0x4f, 0xfb, 0x74, 0xfe, 0x74, 0xf7, 0xb3, 0x57, 0xaa, 0x48, 0x62, 0x53, 0x2b, 0x28, 0xb5, 0x1b,
+ 0xa1, 0xe2, 0x07, 0x26, 0xf1, 0x9f, 0x75, 0xe3, 0x04, 0xe3, 0xef, 0x9f, 0x40, 0x7b, 0x18, 0xe2, 0xb4, 0x2e,
+ 0x08, 0x20, 0x6f, 0x10, 0x97, 0xb5, 0x34, 0x95, 0xdd, 0x53, 0xbf, 0xbe, 0x0a, 0x1b, 0xd3, 0x52, 0x20, 0x5a,
+ 0x85, 0x6a, 0xbd, 0x72, 0xb9, 0x53, 0xd3, 0x08
+};
+
+// context = simple_context_nl
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x6c, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x84, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x20, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x65, 0x65, 0x66, 0x20, 0x6d, 0x65, 0x20, 0x65, 0x65, 0x6e, 0x20, 0x24,
+ 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73,
+ 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f, 0x73, 0x22,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x22, 0x00,
+ 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00,
+ 0x17, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2c, 0x00,
+ 0x00, 0x00, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x00, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x00, 0x64,
+ 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x00, 0x65, 0x65, 0x6e, 0x00, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f,
+ 0x73, 0x00, 0x67, 0x65, 0x65, 0x66, 0x00, 0x6d, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x20, 0x00,
+ 0x00, 0x00, 0x03, 0x14, 0x05, 0x04, 0x27, 0x04, 0x23, 0x1d, 0x04, 0x26, 0x15, 0x05, 0x23, 0x14, 0x15, 0x16,
+ 0x25, 0x1b, 0x08, 0x10, 0x09, 0x14, 0x21, 0x0f, 0x04, 0x12, 0x15, 0x29, 0x08, 0x09, 0x0f, 0x25, 0x05, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
+ 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
+ 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68,
+ 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_DUTCH__
+
+#if defined(__PV_LANGUAGE_POLISH__)
+
+// wake-word = cześć komputer
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x70, 0x6a, 0x9e, 0x88, 0xb8, 0x82, 0x7c, 0x87, 0xa7, 0x6e, 0x67, 0x28, 0x38, 0x37, 0x8e, 0xbb, 0x21, 0x69,
+ 0x6e, 0xb1, 0xef, 0xde, 0xf3, 0xbd, 0x1b, 0xd1, 0x9f, 0xbf, 0x9d, 0x8a, 0x8f, 0x8a, 0x16, 0x95, 0x35, 0x33,
+ 0xc6, 0xc4, 0x2a, 0x4a, 0x27, 0x2e, 0xd0, 0x53, 0x0a, 0x8c, 0xf3, 0x91, 0x16, 0x64, 0xb6, 0xff, 0x73, 0x57,
+ 0x3d, 0x4d, 0x82, 0x84, 0x6d, 0x28, 0x6f, 0x9e, 0x51, 0x9b, 0xb3, 0x73, 0x26, 0xea, 0x43, 0x5c, 0xbd, 0xc5,
+ 0xa5, 0xbb, 0x47, 0xe8, 0x6f, 0xcb, 0xb1, 0x9e, 0x92, 0x7c, 0x8b, 0x9b, 0x76, 0x0d, 0xd9, 0x12, 0x25, 0x66,
+ 0xd7, 0xdd, 0x20, 0x6b, 0xcf, 0x4a, 0x62, 0x9b, 0xc1, 0xcc, 0x24, 0xf7, 0x70, 0x61, 0xa8, 0xce, 0xdc, 0x77,
+ 0x14, 0x71, 0xbc, 0xd4, 0x1b, 0x52, 0xf6, 0x04, 0x73, 0xd6, 0x71, 0x1c, 0xed, 0x11, 0x6e, 0x98, 0xf2, 0x3b,
+ 0xa1, 0x5e, 0x00, 0x92, 0x99, 0x27, 0xed, 0xe9, 0xd8, 0xf0, 0xe4, 0x89, 0x65, 0x27, 0x1b, 0x31, 0x66, 0xca,
+ 0x2e, 0x39, 0x36, 0xc6, 0xe8, 0x89, 0x06, 0x0f, 0xac, 0xb6, 0x5c, 0x9a, 0xdc, 0x70, 0x1e, 0x06, 0x6c, 0x06,
+ 0x51, 0x35, 0xcd, 0x76, 0x7e, 0x3d, 0xc5, 0x5b, 0x03, 0x49, 0xa8, 0xf6, 0xd5, 0x39, 0xcf, 0x01, 0x19, 0xde,
+ 0x86, 0x05, 0x42, 0x9e, 0x85, 0xa6, 0x6a, 0xa6, 0x08, 0x12, 0x30, 0xa5, 0x6c, 0xb9, 0x99, 0xa9, 0x18, 0xdb,
+ 0xc6, 0xb1, 0x51, 0x65, 0xc1, 0xaf, 0xe8, 0xaf, 0x1e, 0x45, 0x4f, 0x39, 0x60, 0x13, 0xc5, 0xea, 0x79, 0x39,
+ 0x4f, 0x2d, 0xa3, 0xfd, 0x63, 0x3a, 0x64, 0xe0, 0xa0, 0xb7, 0xc3, 0xa1, 0xc4, 0x98, 0xed, 0x43, 0xc4, 0xc8,
+ 0x2b, 0x2d, 0x0d, 0x6d, 0xd1, 0xd3, 0xbe, 0x91, 0x86, 0x53, 0xdf, 0x1a, 0x75, 0x04, 0xeb, 0x79, 0xb7, 0x0a,
+ 0x06, 0x05, 0x6e, 0x81, 0xd4, 0xac, 0xa5, 0x43, 0xcb, 0x11, 0x26, 0x3f, 0x90, 0x9f, 0x6a, 0x49, 0x17, 0x41,
+ 0xef, 0x35, 0x3a, 0x35, 0xf1, 0xaa, 0xe3, 0xc1, 0x82, 0xb6, 0xdb, 0xab, 0xd9, 0x1e, 0xc4, 0xbb, 0xbf, 0xd2,
+ 0xb6, 0x28, 0xb6, 0xcf, 0x35, 0x03, 0x20, 0xfd, 0xca, 0x5c, 0xe3, 0xa0, 0x28, 0xce, 0xa4, 0x8e, 0xcc, 0xb8,
+ 0x1a, 0x91, 0x87, 0x4e, 0x0e, 0xf8, 0x2f, 0x5b, 0x30, 0x8b, 0x79, 0x05, 0x9f, 0x4a, 0x9a, 0xc9, 0xfe, 0xa0,
+ 0x2e, 0xac, 0xa3, 0x52, 0xa3, 0x2c, 0x5f, 0xe6, 0xf5, 0xe4, 0x12, 0xcc, 0xed, 0x35, 0x2e, 0x28, 0x01, 0x56,
+ 0x84, 0x25, 0x96, 0x11, 0x68, 0x8c, 0x75, 0x5c, 0xb4, 0x83, 0x24, 0x23, 0x5f, 0x79, 0x69, 0xd7, 0x3b, 0x80,
+ 0x4c, 0xa5, 0x8b, 0x0b, 0x07, 0x26, 0x38, 0x73, 0x76, 0x17, 0x35, 0x5c, 0x0b, 0x67, 0x64, 0xcc, 0xec, 0xb1,
+ 0x8a, 0x63, 0x64, 0x9e, 0x66, 0xca, 0x3a, 0x17, 0x02, 0xae, 0xb4, 0x57, 0x24, 0x05, 0x83, 0xc7, 0xe2, 0x88,
+ 0xda, 0x36, 0x06, 0x13, 0xe6, 0xc1, 0x29, 0x53, 0xf3, 0xdc, 0x3d, 0x23, 0xa5, 0xc1, 0x41, 0x74, 0x57, 0xe2,
+ 0x4f, 0x9d, 0x01, 0x6d, 0x7d, 0x8c, 0x2d, 0x88, 0x09, 0x5e, 0x7d, 0x3e, 0x5d, 0x38, 0x17, 0xaf, 0x4e, 0x01,
+ 0x6c, 0x2d, 0x7b, 0x50, 0x17, 0x9a, 0x5e, 0xa8, 0x4a, 0x96, 0xa7, 0x84, 0x2a, 0x1c, 0x68, 0xa3, 0x3f, 0x83,
+ 0x1b, 0xb9, 0x2a, 0x02, 0x9f, 0x00, 0x5d, 0x1a, 0x0b, 0x14, 0x72, 0xcf, 0xe0, 0xf3, 0xe2, 0xdc, 0x98, 0xd3,
+ 0x44, 0x3a, 0x54, 0x07, 0xc1, 0x6e, 0x13, 0xdc, 0xad, 0x36, 0x03, 0x9a, 0x97, 0x28, 0x9c, 0x76, 0x55, 0xf0,
+ 0xc4, 0x41, 0xea, 0x6e, 0x05, 0x1b, 0xf5, 0x14, 0x92, 0xde, 0x31, 0x80, 0xec, 0x46, 0x44, 0x58, 0x5a, 0x9b,
+ 0x2f, 0x75, 0xcf, 0x32, 0xd7, 0x59, 0x62, 0x5b, 0x5a, 0x72, 0x1b, 0xa2, 0x5b, 0x5a, 0x6c, 0x3a, 0xe3, 0xe0,
+ 0x85, 0x58, 0x75, 0xb1, 0x3f, 0xb4, 0xde, 0xf9, 0xd7, 0x12, 0x69, 0xed, 0x4f, 0xcb, 0x31, 0x86, 0xa3, 0x5a,
+ 0x4d, 0xfe, 0x89, 0xd2, 0x93, 0x38, 0x68, 0x8c, 0x39, 0x33, 0x7d, 0x34, 0xe5, 0xb8, 0x2e, 0x08, 0x3a, 0x46,
+ 0xd9, 0x97, 0x66, 0xbc, 0x68, 0x49, 0x58, 0x03, 0xda, 0xaf, 0xf0, 0x38, 0x57, 0xe7, 0x8f, 0xc0, 0x9b, 0x6c,
+ 0x7b, 0xc3, 0x34, 0x48, 0x4d, 0x30, 0xdf, 0x53, 0x42, 0x74, 0xe1, 0x2c, 0xca, 0xe7, 0xc2, 0xb0, 0x57, 0xb6,
+ 0xd7, 0x76, 0x4c, 0x24, 0x7d, 0x28, 0xfc, 0xae, 0xd4, 0x1b, 0xff, 0xf1, 0x1a, 0xed, 0x9f, 0x6b, 0x04, 0xbf
+};
+
+// context = simple_context_pl
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x70, 0x6c, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79,
+ 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x61, 0x6a, 0x20, 0x6d, 0x69, 0x20, 0x24, 0x76, 0x72,
+ 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
+ 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x74, 0x72, 0x75, 0x73, 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x61, 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x22, 0x00,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00,
+ 0x14, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x62, 0x61,
+ 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x00, 0x64, 0x61, 0x6a, 0x00, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x00,
+ 0x6d, 0x69, 0x00, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79, 0x00, 0x74, 0x72, 0x75, 0x73,
+ 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00,
+ 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02, 0x01, 0x0d, 0x01, 0x0d, 0x1c, 0x16, 0x20, 0x03, 0x01,
+ 0x09, 0x0c, 0x01, 0x0b, 0x08, 0x0d, 0x01, 0x0c, 0x08, 0x10, 0x0e, 0x0f, 0x01, 0x1f, 0x21, 0x1c, 0x0d, 0x20,
+ 0x11, 0x0f, 0x15, 0x10, 0x0a, 0x01, 0x07, 0x0a, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70,
+ 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_POLISH__
#if defined(__PV_LANGUAGE_PORTUGUESE__)
// wake-word = olá computador
static const uint8_t KEYWORD_ARRAY[] = {
- 0xe5, 0x2b, 0xd9, 0x42, 0x17, 0x72, 0xbb, 0xf0, 0x38, 0x86, 0x9a, 0xd2, 0xfd, 0x6d, 0x37, 0x35, 0x21, 0xe8,
- 0x38, 0xcd, 0xf2, 0xd4, 0x95, 0x62, 0x4f, 0x44, 0x0e, 0xcc, 0x42, 0x95, 0xd5, 0x89, 0x04, 0x32, 0x59, 0x25,
- 0x09, 0x42, 0x87, 0x11, 0x6e, 0x45, 0xbf, 0x05, 0xf3, 0x41, 0x49, 0x24, 0xf6, 0xb5, 0x1f, 0x23, 0xd2, 0x4b,
- 0xad, 0x3f, 0xb3, 0x4a, 0xd7, 0x02, 0xb5, 0x35, 0x08, 0xb2, 0x64, 0x80, 0x0f, 0x6a, 0x8f, 0xa0, 0xa4, 0x99,
- 0x75, 0xcf, 0xcd, 0xcd, 0xda, 0x2d, 0x44, 0x40, 0x59, 0x36, 0x7b, 0x31, 0xc2, 0xee, 0xab, 0x61, 0x34, 0x1a,
- 0x5b, 0xbb, 0x12, 0xa1, 0x30, 0xcd, 0x8f, 0xb5, 0xb9, 0x8f, 0x16, 0x71, 0xa7, 0x24, 0x15, 0x70, 0x7e, 0xb5,
- 0x76, 0x55, 0xfd, 0x63, 0xf0, 0x48, 0x16, 0xe7, 0x9c, 0x73, 0xcd, 0xe6, 0xab, 0xf2, 0x6f, 0x06, 0xc5, 0x9c,
- 0x4a, 0x68, 0x75, 0x7b, 0xe5, 0x45, 0x47, 0xd2, 0x1a, 0x0a, 0x41, 0x09, 0xd7, 0x37, 0x3a, 0xd4, 0x17, 0x02,
- 0xe6, 0xe2, 0xa5, 0x0f, 0x3c, 0x57, 0x7d, 0xa8, 0xb7, 0x8d, 0xd0, 0x0e, 0x29, 0xda, 0x90, 0xda, 0x56, 0x1f,
- 0x7d, 0xb3, 0xa4, 0x7d, 0x72, 0x88, 0xe0, 0x54, 0xad, 0x58, 0xf8, 0xc0, 0xbd, 0xef, 0xb4, 0xc9, 0x9b, 0x38,
- 0x57, 0x2c, 0xdf, 0x4e, 0x09, 0x25, 0xb6, 0x5f, 0x00, 0x93, 0x8a, 0x58, 0xc3, 0xcf, 0x82, 0x7c, 0x18, 0xf1,
- 0x47, 0x68, 0xc9, 0xc4, 0xcd, 0x7a, 0xed, 0x7d, 0x4f, 0x32, 0x7c, 0x59, 0x37, 0xac, 0x54, 0x18, 0x72, 0x57,
- 0x4d, 0x1b, 0x8f, 0xdb, 0x5a, 0xfa, 0xda, 0xa1, 0x04, 0x3e, 0xea, 0x59, 0x95, 0xc1, 0x65, 0xee, 0xc3, 0xf3,
- 0x96, 0x80, 0x68, 0x0f, 0x6b, 0x94, 0x51, 0x2e, 0xfe, 0x55, 0x94, 0x1f, 0x1f, 0x5b, 0x71, 0x21, 0xba, 0xa1,
- 0x41, 0x21, 0xdb, 0x32, 0x26, 0xb6, 0x43, 0xe6, 0x96, 0x2c, 0xd7, 0x00, 0x35, 0x37, 0xfc, 0x44, 0x02, 0xb2,
- 0xa9, 0x5d, 0x82, 0x0b, 0xb4, 0xcd, 0xc1, 0x3f, 0x9d, 0x95, 0x25, 0x5c, 0x04, 0x3f, 0x6f, 0x47, 0x21, 0x21,
- 0xe8, 0xf8, 0x29, 0x34, 0x3d, 0x91, 0xbc, 0x20, 0x18, 0x21, 0x6d, 0x93, 0xac, 0x20, 0xe3, 0xc4, 0x25, 0xeb,
- 0x09, 0x97, 0xa9, 0x71, 0xa3, 0x89, 0xc7, 0xfc, 0x38, 0x30, 0x15, 0x47, 0x18, 0x30, 0x5f, 0xd2, 0x87, 0x89,
- 0x0a, 0x61, 0x84, 0x04, 0x23, 0x38, 0x26, 0xb0, 0x93, 0xa8, 0x74, 0x1e, 0x73, 0x38, 0xcb, 0x31, 0x88, 0xe4,
- 0x6d, 0x67, 0x46, 0x5e, 0x17, 0x04, 0x74, 0x8f, 0xa8, 0xf9, 0x8a, 0x5b, 0x9b, 0x36, 0x64, 0x80, 0xc5, 0xb2,
- 0x7f, 0xb3, 0xfa, 0xc9, 0xdb, 0x67, 0xc9, 0xa5, 0xdc, 0xf2, 0xc6, 0x86, 0xb9, 0x83, 0xb3, 0xb0, 0x18, 0x6e,
- 0xb9, 0xe8, 0x95, 0x49, 0x8c, 0x1f, 0x67, 0xc7, 0xb4, 0x95, 0x44, 0x65, 0xd7, 0xde, 0xf0, 0x4f, 0xce, 0xe2,
- 0x76, 0xf2, 0xc6, 0x7c, 0xc9, 0x3b, 0x29, 0x04, 0x73, 0x70, 0x4b, 0x91, 0x8e, 0x12, 0x61, 0x54, 0xf8, 0xe8,
- 0x29, 0x2f, 0xd1, 0xac, 0xc1, 0xe4, 0xa1, 0x17, 0x34, 0x8d, 0x48, 0xdf, 0xa3, 0xb6, 0xfb, 0xf5, 0x98, 0xba,
- 0xa1, 0x17, 0x74, 0xbe, 0x29, 0x50, 0xc2, 0xe3, 0xc9, 0x6f, 0xfe, 0xf0, 0xc1, 0x7d, 0x4d, 0x10, 0x66, 0x6c,
- 0x4d, 0x83, 0x99, 0x5c, 0x8d, 0xa9, 0x8c, 0xeb, 0xbd, 0xf4, 0x19, 0x33, 0xc9, 0xfb, 0xb1, 0x74, 0xc2, 0xa9,
- 0x75, 0x8f, 0x45, 0x0a, 0x4a, 0x39, 0xed, 0xaa, 0xac, 0x39, 0xc9, 0xef, 0x57, 0xe1, 0x8e, 0xf4, 0xe0, 0x01,
- 0xde, 0x84, 0x7d, 0x54, 0x39, 0x43, 0x8e, 0x27, 0x5e, 0x56, 0x4a, 0xab, 0x46, 0xc9, 0xbc, 0x3a, 0x06, 0xf7,
- 0x65, 0x74, 0x29, 0x2c, 0x4c, 0xac, 0xc7, 0xad, 0x66, 0x56, 0xbb, 0xa8, 0xcc, 0x2b, 0xaa, 0x87, 0x48, 0x93,
- 0x7f, 0x3d, 0xdd, 0x9b, 0x38, 0xe4, 0xb0, 0x22, 0x43, 0xa8, 0x59, 0x31, 0x63, 0xb0, 0xb1, 0x01, 0xe0, 0xa4,
- 0x20, 0x14, 0xe9, 0x1f, 0x59, 0x5f, 0x4a, 0x87, 0xfa, 0x81, 0x8f, 0x82, 0xd5, 0x5d, 0x96, 0xf5, 0xe7, 0x9d,
- 0x38, 0x49, 0x80, 0x65, 0x51, 0x09, 0x59, 0x0e, 0x71, 0x5e, 0x77, 0xce, 0xd7, 0xa7, 0x8a, 0x19, 0x94, 0x5f,
- 0xdc, 0x73, 0x9f, 0x31, 0xed, 0xf2, 0x29, 0x7c, 0xc6, 0xf2, 0xb4, 0x59, 0xf5, 0x16, 0x80, 0xef, 0x3d, 0x14,
- 0xd6, 0xa9, 0x03, 0x62, 0xee, 0x91, 0x4b, 0x84, 0x0d, 0xe0
+ 0x4b, 0x18, 0x62, 0x21, 0xfb, 0xc5, 0x95, 0x04, 0xad, 0xd7, 0xc2, 0x2b, 0x76, 0x8e, 0x69, 0x6f, 0x15, 0x34,
+ 0x46, 0x41, 0xbf, 0x7f, 0x94, 0xf9, 0x26, 0xf3, 0x23, 0xf4, 0xb5, 0x93, 0x53, 0xe6, 0x22, 0x1d, 0x8c, 0x40,
+ 0x07, 0xb2, 0x1f, 0xcd, 0xad, 0xe3, 0xa9, 0xc1, 0x09, 0x8d, 0x4e, 0x65, 0xd0, 0x21, 0x6f, 0x30, 0x7b, 0xd8,
+ 0xaa, 0xe8, 0xce, 0xdf, 0xcc, 0x11, 0xe5, 0x62, 0xf0, 0xb1, 0x01, 0x94, 0xd7, 0x78, 0xe5, 0x5f, 0x31, 0x62,
+ 0xe2, 0x89, 0xbf, 0x1d, 0x41, 0x82, 0xdb, 0xc5, 0x9c, 0x3c, 0x0a, 0x15, 0x90, 0x64, 0xb4, 0x3c, 0x0b, 0xa4,
+ 0x42, 0xc4, 0x43, 0x66, 0x06, 0x8f, 0x9d, 0xc7, 0xb3, 0x4f, 0xb2, 0x2b, 0x1e, 0x64, 0xe0, 0xd7, 0xc6, 0x00,
+ 0x94, 0x96, 0xa4, 0x3b, 0xdf, 0x52, 0xfe, 0x3b, 0xb1, 0x87, 0x38, 0x29, 0x96, 0x20, 0x0d, 0xd9, 0x29, 0x8f,
+ 0xe2, 0x15, 0x0d, 0x78, 0xbf, 0xbe, 0x5c, 0x00, 0x44, 0x92, 0x03, 0xcf, 0x02, 0x67, 0xb1, 0xe5, 0x49, 0x81,
+ 0x26, 0x04, 0x47, 0x43, 0xc2, 0xd2, 0x5d, 0xd7, 0xd2, 0x48, 0x9e, 0xcb, 0x26, 0x11, 0xfc, 0x5c, 0x2b, 0x26,
+ 0x57, 0x4a, 0x9a, 0xa4, 0xe9, 0x8c, 0xa2, 0x93, 0x02, 0x2a, 0x5b, 0x07, 0x0b, 0x10, 0xce, 0x5e, 0x6d, 0x07,
+ 0xb1, 0xc3, 0x4e, 0x2f, 0xad, 0xc4, 0x34, 0x2b, 0xb0, 0xe3, 0x50, 0x14, 0xb6, 0x0e, 0x08, 0x79, 0x00, 0x06,
+ 0xed, 0xa7, 0x98, 0x2c, 0xc4, 0x85, 0x08, 0x99, 0x21, 0x10, 0x7c, 0xe6, 0x0a, 0x92, 0xe4, 0x35, 0xa7, 0x45,
+ 0xb5, 0x56, 0x55, 0x67, 0x58, 0x68, 0xb1, 0xc9, 0x9f, 0xb1, 0x72, 0x5d, 0xcb, 0xcc, 0x76, 0x26, 0xf8, 0x52,
+ 0xc9, 0x16, 0xa8, 0x45, 0x69, 0xfb, 0xe6, 0xef, 0xbb, 0x34, 0x01, 0x59, 0x08, 0xbf, 0xf5, 0xcf, 0xf7, 0x83,
+ 0x3f, 0x1e, 0x13, 0x4f, 0x20, 0x2f, 0x40, 0x89, 0x65, 0x81, 0x5c, 0x87, 0x39, 0xb4, 0x10, 0x07, 0xb0, 0x87,
+ 0xc8, 0x55, 0x85, 0x8c, 0xbc, 0x41, 0xdd, 0x18, 0x76, 0xec, 0x70, 0x4e, 0x61, 0xaf, 0x0e, 0x28, 0x55, 0x66,
+ 0x18, 0x4e, 0x8c, 0x4d, 0x00, 0x82, 0x62, 0xb8, 0x22, 0x66, 0x69, 0xa8, 0x4b, 0xfa, 0x4e, 0x92, 0x9c, 0x76,
+ 0xfc, 0x83, 0x48, 0x0d, 0x26, 0x0d, 0xf7, 0xf3, 0xde, 0x49, 0x4e, 0xb4, 0xf9, 0x9d, 0xfb, 0xab, 0x62, 0xe2,
+ 0x2b, 0xa1, 0x25, 0xeb, 0x1e, 0x24, 0x24, 0x5c, 0xec, 0x64, 0x6d, 0xe5, 0xe6, 0xc6, 0xa1, 0xbe, 0x64, 0x71,
+ 0x7b, 0xa8, 0x5d, 0x01, 0xb1, 0x30, 0x22, 0x86, 0x34, 0xc5, 0x12, 0x37, 0xa3, 0x7c, 0x1d, 0x0a, 0x7c, 0xb8,
+ 0xea, 0x23, 0xe8, 0xfc, 0x4b, 0xa2, 0xed, 0x70, 0x3b, 0x14, 0xfb, 0x95, 0xb2, 0xec, 0x57, 0x12, 0x9d, 0xb9,
+ 0x34, 0x41, 0xa0, 0x48, 0x01, 0x38, 0xc7, 0x74, 0xd9, 0x42, 0x69, 0x25, 0xe9, 0xb6, 0x35, 0x49, 0x9c, 0xf5,
+ 0x89, 0x96, 0xd2, 0x94, 0x27, 0xbd, 0x36, 0x32, 0x57, 0x03, 0x12, 0x67, 0x22, 0x8e, 0xe3, 0xc7, 0x89, 0x07,
+ 0x5e, 0xfd, 0x19, 0xe9, 0x07, 0x28, 0x7b, 0xbd, 0x09, 0x7d, 0x32, 0xbc, 0x22, 0xce, 0x50, 0x96, 0x9d, 0x0f,
+ 0x4f, 0xd2, 0x5a, 0xe9, 0x92, 0x77, 0xbb, 0xc8, 0xd0, 0x04, 0x22, 0x3e, 0x8b, 0x95, 0x95, 0x40, 0xc8, 0x7e,
+ 0xc2, 0x2b, 0x91, 0x50, 0x47, 0x21, 0x49, 0xe9, 0x78, 0xcb, 0xef, 0xc7, 0xdd, 0x34, 0x10, 0xcb, 0x27, 0xac,
+ 0x66, 0xdb, 0x80, 0x44, 0xfa, 0xc2, 0x45, 0xd0, 0x1f, 0x7b, 0xc3, 0xe8, 0x2c, 0x97, 0x71, 0xac, 0x52, 0x1c,
+ 0x78, 0x73, 0x2f, 0xa7, 0x99, 0xc5, 0xd4, 0xa0, 0x42, 0xb5, 0x71, 0x1a, 0x50, 0x2f, 0x1d, 0xbe, 0x6e, 0xc0,
+ 0x5e, 0x8e, 0x5d, 0xc8, 0xd1, 0x92, 0x87, 0xa6, 0xe5, 0x4f, 0xdf, 0x06, 0xf8, 0xc3, 0x1d, 0x42, 0xd6, 0xd8,
+ 0x71, 0x54, 0x9d, 0x48, 0xb7, 0x76, 0x81, 0x35, 0x67, 0x4b, 0x13, 0x76, 0xcb, 0x62, 0x34, 0xe7, 0x30, 0x8a,
+ 0xe9, 0x40, 0x5a, 0x0f, 0xf7, 0xf8, 0xb5, 0x13, 0x8e, 0x85, 0x87, 0x54, 0xf5, 0xdd, 0x87, 0x87, 0x07, 0xd8,
+ 0xc4, 0xa5, 0xa2, 0x29, 0xb5, 0x0d, 0xb4, 0x5c, 0xd3, 0x43, 0xd6, 0xbb, 0x0b, 0x1c, 0xb5, 0xa2, 0x57, 0x65,
+ 0xa4, 0xe6, 0x30, 0x43, 0xb2, 0x31, 0x4c, 0x5c, 0xdf, 0xb4, 0x4e, 0x24, 0xe3, 0x19, 0x83, 0x03, 0x1b, 0xca,
+ 0x0b, 0xa8, 0x56, 0xc1, 0xc5, 0xc7, 0xde, 0xc2, 0x34, 0x3d
};
// context = luz_inteligente
@@ -2663,49 +3319,49 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_RUSSIAN__)
-// wake-word = privet kompyuter
+// wake-word = привет компьютер
static const uint8_t KEYWORD_ARRAY[] = {
- 0x37, 0x85, 0x26, 0x81, 0xea, 0x15, 0xb1, 0x70, 0x5e, 0x97, 0xbb, 0x61, 0x4d, 0xdd, 0x40, 0x32, 0xab, 0x59,
- 0x49, 0xc5, 0xe9, 0x0c, 0xef, 0xf1, 0xe5, 0x2a, 0x52, 0x27, 0x17, 0xcb, 0xb7, 0x1d, 0x56, 0x0c, 0xe2, 0x68,
- 0xf0, 0x6c, 0x5d, 0x52, 0x8e, 0x0e, 0xc6, 0x13, 0xa3, 0xab, 0xc2, 0xf9, 0x80, 0x8b, 0xb3, 0x32, 0xd2, 0x81,
- 0x93, 0xf2, 0x4f, 0xa7, 0x4f, 0x5d, 0x17, 0xd1, 0xcc, 0xf2, 0xa9, 0x1e, 0xdf, 0x98, 0x6e, 0xaf, 0x4c, 0xf3,
- 0x18, 0x10, 0xc6, 0x86, 0xc8, 0x28, 0xd2, 0x95, 0x12, 0xb6, 0x16, 0xf1, 0xe0, 0x9c, 0xff, 0xaf, 0x6c, 0xdf,
- 0x6d, 0x90, 0xd9, 0xc4, 0xec, 0xab, 0xa8, 0x68, 0x1b, 0x18, 0xa1, 0x0e, 0x58, 0x81, 0x3f, 0x8e, 0x8d, 0x71,
- 0xca, 0x2d, 0x8e, 0xef, 0x66, 0x75, 0xde, 0xb4, 0x34, 0x6d, 0x16, 0x90, 0x7b, 0xfb, 0x4d, 0x10, 0xa6, 0x89,
- 0xe8, 0x99, 0x99, 0x12, 0x10, 0xa8, 0x42, 0xb7, 0x23, 0xad, 0x3e, 0xa6, 0x5f, 0xb3, 0x6d, 0xc7, 0x0a, 0xf1,
- 0x8d, 0x2b, 0x59, 0x5b, 0xcb, 0xaf, 0x19, 0xbf, 0x7e, 0x7c, 0xd8, 0x4f, 0xad, 0x36, 0x95, 0xb2, 0x07, 0x4c,
- 0x87, 0xb5, 0x53, 0x64, 0x95, 0x11, 0x3d, 0xad, 0x22, 0x33, 0xf3, 0x89, 0x71, 0xb6, 0x9f, 0x9c, 0x68, 0xe8,
- 0xf4, 0x1a, 0x9f, 0xfe, 0x4e, 0x46, 0xf7, 0xc7, 0x39, 0x32, 0x6c, 0x94, 0x6e, 0xfd, 0x18, 0x92, 0x93, 0xcf,
- 0xdb, 0xdf, 0xbf, 0xcc, 0x55, 0x18, 0x64, 0x0a, 0x12, 0xf8, 0x35, 0x38, 0xbf, 0xa7, 0xd2, 0x08, 0x6c, 0x98,
- 0xc6, 0x51, 0x0f, 0xd5, 0xbc, 0x14, 0xf6, 0xac, 0x27, 0xd2, 0xef, 0xc8, 0xfa, 0x7c, 0x09, 0x4d, 0x61, 0xfa,
- 0xd2, 0xc0, 0xaa, 0x7d, 0xa4, 0x07, 0x4a, 0xa0, 0x9f, 0xe4, 0xfa, 0x5a, 0x15, 0x0d, 0x17, 0xd6, 0x72, 0x1d,
- 0x7a, 0x4b, 0x47, 0x1e, 0x8a, 0xaa, 0xfc, 0x81, 0x71, 0x4f, 0xdf, 0x84, 0x39, 0x0d, 0x22, 0x46, 0x67, 0x4f,
- 0x49, 0x68, 0x92, 0xfe, 0x39, 0x8d, 0xb2, 0x00, 0xf1, 0x7b, 0xae, 0x17, 0x41, 0x5f, 0x4f, 0x24, 0xba, 0x66,
- 0x74, 0x94, 0x40, 0x61, 0xa3, 0x94, 0x1c, 0x5a, 0xa5, 0xb9, 0x27, 0xa9, 0x8e, 0x3f, 0xc0, 0x25, 0xc6, 0xb3,
- 0x06, 0x60, 0x07, 0x16, 0x32, 0xb6, 0xe2, 0x1a, 0x83, 0x6a, 0x76, 0xd4, 0x03, 0xd9, 0x91, 0x1c, 0x89, 0x6e,
- 0xa5, 0xa4, 0x51, 0xf2, 0x0f, 0xfd, 0x0d, 0x69, 0xb9, 0x42, 0x92, 0x80, 0x97, 0x1f, 0x78, 0xfe, 0x18, 0xb0,
- 0x50, 0xbf, 0xd6, 0xdc, 0x1f, 0xc0, 0x62, 0x08, 0x3c, 0x30, 0x5d, 0xf7, 0x77, 0x53, 0x4f, 0xb7, 0xc3, 0xb5,
- 0xac, 0xa0, 0x6d, 0x2f, 0xf3, 0x2b, 0xc9, 0x30, 0xcc, 0x0e, 0xbd, 0xfe, 0xd1, 0x00, 0xb7, 0x80, 0x22, 0x11,
- 0x5b, 0x1e, 0x69, 0x05, 0xa1, 0xba, 0xc3, 0xd5, 0x03, 0xc6, 0x02, 0xd6, 0xd4, 0xee, 0x92, 0x1a, 0xfb, 0x3c,
- 0xfa, 0xd1, 0x85, 0xc5, 0x51, 0x8f, 0x4e, 0xc2, 0x19, 0x78, 0xbc, 0x99, 0x63, 0xee, 0x54, 0xee, 0x97, 0x09,
- 0x2b, 0x40, 0x12, 0x60, 0x8a, 0x32, 0x73, 0xa2, 0xf9, 0x2a, 0x5c, 0xb9, 0x7f, 0x4a, 0x37, 0x8c, 0x4e, 0x8b,
- 0xeb, 0x7a, 0x62, 0x12, 0x36, 0x4c, 0x4f, 0xba, 0xbb, 0xd8, 0x80, 0x01, 0x97, 0x18, 0x36, 0x98, 0x2b, 0xcf,
- 0xc3, 0xae, 0xb7, 0x61, 0x01, 0x07, 0x1a, 0x62, 0xe4, 0x80, 0x54, 0xf3, 0x10, 0x55, 0x7c, 0x76, 0x16, 0x47,
- 0x9f, 0xd1, 0x79, 0xe0, 0x6e, 0x85, 0xaa, 0x47, 0xab, 0xe6, 0x5c, 0xaf, 0x35, 0xb7, 0xf1, 0xe9, 0x0c, 0xb0,
- 0xea, 0xd7, 0x4c, 0x7f, 0x59, 0x64, 0x3f, 0xe5, 0xc4, 0x60, 0x65, 0xbd, 0xf9, 0x7a, 0xd5, 0x60, 0x00, 0x91,
- 0xab, 0x4e, 0x88, 0x9b, 0x83, 0xc5, 0x53, 0x66, 0xcc, 0x46, 0x49, 0xf2, 0xca, 0xf0, 0x85, 0x84, 0x4c, 0xcf,
- 0xbe, 0x08, 0xc0, 0xfc, 0xf4, 0x16, 0x94, 0x5c, 0x89, 0x55, 0xc7, 0x50, 0x31, 0x16, 0x43, 0x64, 0xcf, 0x59,
- 0x7d, 0x8b, 0x3d, 0x0d, 0x28, 0x89, 0x6b, 0x2c, 0xf2, 0x46, 0x76, 0x47, 0x0c, 0xbb, 0xfe, 0xfb, 0x88, 0x6e,
- 0xf6, 0x6a, 0x1a, 0x09, 0x42, 0x01, 0xa1, 0x3c, 0x65, 0xe0, 0xad, 0xe3, 0xbd, 0x9e, 0xa8, 0x06, 0x7b, 0x96,
- 0x98, 0xed, 0xc9, 0x91, 0xa4, 0x76, 0x9a, 0x02, 0x60, 0x5b, 0x9c, 0xc6, 0xd8, 0xab, 0xd9, 0x30, 0xc0, 0xcc,
- 0x4e, 0x76, 0xc7, 0x6c, 0x43, 0x11, 0x44, 0x94, 0xe4, 0xa3, 0x07, 0x46, 0x72, 0xe2, 0x37, 0xf9, 0x72, 0x70,
- 0x9b, 0x0a, 0x2b, 0xe2, 0xa6, 0x7e, 0xe4, 0x13, 0x07, 0x16, 0x4e, 0x8e, 0x1a, 0x94, 0xd6, 0x13, 0x9d, 0x53,
- 0xb6, 0xca, 0x50, 0x25, 0x20, 0xbc, 0x4f, 0x60, 0xa7, 0x38, 0x08, 0x8a, 0x40, 0xa6, 0xb8, 0x57, 0xa9, 0x68,
- 0x21, 0xb6, 0x48, 0xbe, 0x07, 0xab, 0x4f, 0xb9, 0xde, 0xc6, 0x4c, 0x8b, 0x71, 0xa7, 0xc1, 0xd1, 0x06, 0x3c,
- 0x3a, 0xe2, 0xa9, 0x68, 0x7f, 0x4f, 0x25, 0xa4, 0x2a, 0x07, 0xfa, 0x0c, 0xbf, 0x2e, 0xbe, 0x2f, 0xb2, 0x74,
- 0x57, 0xa6, 0x75, 0x34, 0x81, 0x91, 0xd1, 0x7a, 0x1c, 0x23, 0xe0, 0x55, 0xc1, 0xbf, 0x14, 0x1f, 0x57, 0x17,
- 0x44, 0x2a, 0x46, 0x3e, 0x44, 0xbc, 0xca, 0x95, 0x63, 0xfb, 0x6e, 0x87, 0xcb, 0xee, 0x24, 0x4c, 0x3a, 0xbc,
- 0x82, 0xd8, 0xc2, 0x4c
+ 0x9f, 0xc5, 0x7c, 0x5d, 0x85, 0x85, 0x5a, 0xb1, 0x37, 0x3c, 0xa4, 0xaa, 0x68, 0x10, 0x92, 0x2f, 0x72, 0x1a,
+ 0xab, 0x1f, 0x48, 0xd0, 0x5d, 0x0c, 0x8d, 0x4d, 0xf7, 0x6d, 0x33, 0xb7, 0x01, 0x33, 0x1a, 0x91, 0xa0, 0x8b,
+ 0x26, 0x38, 0x1c, 0x0b, 0x35, 0xa3, 0xcf, 0xe1, 0x46, 0x18, 0xf1, 0xce, 0xbf, 0x18, 0x08, 0xb5, 0x08, 0x28,
+ 0x24, 0xc7, 0x9d, 0xe3, 0xec, 0x2c, 0xdf, 0xae, 0x20, 0xd8, 0xaf, 0x2a, 0x44, 0x5c, 0x8a, 0x64, 0x10, 0x1d,
+ 0x4b, 0xd7, 0x03, 0x00, 0x8b, 0x6c, 0x1d, 0x54, 0xa1, 0xbc, 0xec, 0xba, 0xb7, 0x6a, 0x78, 0x11, 0xf6, 0xe5,
+ 0xb4, 0xb7, 0xcd, 0x36, 0xee, 0x85, 0x6d, 0x11, 0x37, 0x9f, 0xea, 0x73, 0xa0, 0xcd, 0x35, 0x31, 0xb8, 0x98,
+ 0xe7, 0x8e, 0xa5, 0x0e, 0x53, 0x4f, 0x6b, 0x98, 0xfd, 0x06, 0x1a, 0xf2, 0x3b, 0x1a, 0x22, 0x5c, 0x9f, 0xcd,
+ 0xa9, 0x96, 0x8f, 0x45, 0x87, 0x3b, 0x20, 0x1d, 0x70, 0x2d, 0xa3, 0x4c, 0x56, 0xad, 0x99, 0x41, 0xa5, 0x97,
+ 0xf4, 0x8f, 0xe8, 0x61, 0xa2, 0xe2, 0xb9, 0xa0, 0xd0, 0x00, 0xfd, 0xe8, 0xe8, 0x37, 0x38, 0x69, 0x82, 0x2f,
+ 0xee, 0x56, 0x07, 0x93, 0x4e, 0xfa, 0x7f, 0xf4, 0x2e, 0x02, 0xe1, 0x75, 0xf4, 0x4c, 0x3b, 0x68, 0xce, 0xb1,
+ 0x8c, 0x5a, 0xf1, 0x41, 0xca, 0x12, 0x50, 0xad, 0x6e, 0x49, 0x0f, 0x80, 0xb6, 0xf4, 0xe1, 0x4f, 0x00, 0x42,
+ 0x00, 0x46, 0x96, 0x82, 0x39, 0x4a, 0x9d, 0xa0, 0x14, 0x02, 0xac, 0x03, 0x7e, 0xb8, 0xd8, 0x31, 0xd4, 0x7e,
+ 0xfd, 0x84, 0x34, 0x8c, 0x69, 0x72, 0x78, 0x9b, 0x14, 0xae, 0xe0, 0xa0, 0x41, 0x43, 0xbc, 0x1c, 0xeb, 0x15,
+ 0xaf, 0xf3, 0x32, 0x37, 0xe1, 0x8b, 0x87, 0xdb, 0x08, 0xb7, 0x7c, 0xa1, 0xf5, 0x63, 0x1e, 0x05, 0x94, 0x1e,
+ 0xf2, 0xb8, 0x7b, 0x84, 0x44, 0x76, 0x19, 0x35, 0xdc, 0x3d, 0x97, 0x39, 0x20, 0x51, 0x45, 0x3a, 0x95, 0x91,
+ 0x2f, 0x02, 0x74, 0x57, 0x12, 0xef, 0xca, 0x11, 0xe4, 0xe2, 0x15, 0xbb, 0xb2, 0xd4, 0x4a, 0x4f, 0x2d, 0xa6,
+ 0x10, 0x50, 0x81, 0xa1, 0x1c, 0xd9, 0x07, 0x08, 0x38, 0xb4, 0xe5, 0xf4, 0xd1, 0x29, 0x75, 0xb1, 0x50, 0x94,
+ 0xe7, 0x15, 0x6d, 0x71, 0xff, 0x7c, 0xe5, 0xc6, 0xd5, 0xeb, 0xb1, 0x43, 0x44, 0xb9, 0x34, 0xb7, 0x21, 0x9f,
+ 0x9a, 0xc1, 0xbc, 0x1d, 0x1e, 0xb0, 0x12, 0x25, 0x0e, 0x22, 0x5c, 0x7a, 0xe1, 0x5c, 0x9f, 0x07, 0x2d, 0xaf,
+ 0x93, 0x07, 0x37, 0x53, 0x83, 0xf6, 0xb6, 0xb3, 0x9a, 0xce, 0xca, 0x1c, 0x40, 0x47, 0xf9, 0x29, 0x11, 0x07,
+ 0xaa, 0xd0, 0x91, 0x08, 0xd5, 0x31, 0xa1, 0x53, 0x71, 0x75, 0x74, 0x54, 0xa6, 0xfc, 0xe9, 0xc1, 0xca, 0x84,
+ 0x7c, 0x28, 0xb9, 0xb9, 0xa2, 0x4d, 0x34, 0xfb, 0xb1, 0x0b, 0xdd, 0x36, 0x71, 0xc5, 0x51, 0xaa, 0xa9, 0x8c,
+ 0xd8, 0xbf, 0x98, 0xe2, 0xea, 0x95, 0x79, 0x27, 0xcc, 0x91, 0xf8, 0x24, 0xb9, 0x04, 0x56, 0x05, 0x76, 0x78,
+ 0xf6, 0x9a, 0x31, 0x20, 0xed, 0x31, 0xc2, 0x58, 0x30, 0xc5, 0x6d, 0xec, 0x79, 0xe5, 0x6b, 0xc2, 0xd2, 0x16,
+ 0x1a, 0x47, 0x92, 0xdb, 0xe7, 0x74, 0x6a, 0xf0, 0x7c, 0x53, 0x73, 0x5f, 0x9b, 0x54, 0x62, 0x31, 0x6a, 0x25,
+ 0x1e, 0x4d, 0x5d, 0x97, 0xf5, 0xbc, 0xbd, 0x50, 0x9d, 0x5e, 0x81, 0x2a, 0xc4, 0xfd, 0x31, 0xd9, 0x23, 0x87,
+ 0x18, 0xc0, 0xa1, 0xa2, 0x0a, 0xe5, 0x1b, 0xf9, 0xce, 0xb5, 0x1a, 0x3d, 0xcd, 0xe8, 0xc6, 0xde, 0x23, 0x1d,
+ 0x7a, 0x08, 0x6e, 0x87, 0xaa, 0x1d, 0x3b, 0x25, 0x5d, 0x83, 0xbe, 0x2b, 0x59, 0x57, 0x89, 0xcd, 0xac, 0xa4,
+ 0x4c, 0xf4, 0x67, 0x3e, 0x0a, 0xf7, 0x1b, 0x28, 0x4f, 0x06, 0x3e, 0xe5, 0xb3, 0x48, 0x5a, 0xd7, 0x4f, 0x9f,
+ 0x90, 0x5b, 0x53, 0x1e, 0x75, 0xe3, 0x78, 0x0d, 0x25, 0xb8, 0xfe, 0x54, 0x15, 0xc5, 0xad, 0x72, 0xca, 0xb7,
+ 0x54, 0x39, 0xe5, 0x1b, 0x43, 0x9c, 0x72, 0x60, 0x96, 0xff, 0x8d, 0x7c, 0xb8, 0xdf, 0xe9, 0x34, 0x54, 0x3f,
+ 0x92, 0x68, 0x0e, 0xe1, 0xea, 0x1c, 0x4f, 0x11, 0x4b, 0xc0, 0x2b, 0xc7, 0x62, 0x75, 0xe4, 0xc2, 0xc5, 0x65,
+ 0xf2, 0xd2, 0xa4, 0x41, 0x93, 0xfb, 0x92, 0x14, 0x26, 0x9d, 0x0a, 0x71, 0xbe, 0x16, 0x19, 0x71, 0xd5, 0xda,
+ 0xf9, 0x27, 0x83, 0x06, 0x12, 0xeb, 0xeb, 0x9a, 0x18, 0x22, 0xc8, 0x88, 0x49, 0x9a, 0x3e, 0x51, 0xca, 0x1d,
+ 0xa2, 0x52, 0x85, 0xb9, 0xdc, 0x92, 0x8c, 0xf2, 0xbe, 0x53, 0x5f, 0x3b, 0x31, 0x39, 0x84, 0x71, 0x9a, 0x72,
+ 0xb6, 0xcf, 0xbf, 0x77, 0x04, 0xaa, 0x10, 0xc4, 0xa0, 0x31, 0xb9, 0x92, 0xd6, 0x97, 0x7c, 0xb8, 0x09, 0x5d,
+ 0xd5, 0x03, 0xad, 0x8a, 0x1b, 0x58, 0x61, 0x04, 0xbc, 0xdf, 0x6f, 0x70, 0x8f, 0xf0, 0xac, 0xe5, 0x7e, 0x22,
+ 0xb9, 0xf2, 0x21, 0x06, 0xd0, 0x48, 0x26, 0xcd, 0x01, 0x2b, 0x5b, 0xa7, 0x2c, 0x3a, 0xc9, 0x7f, 0x6c, 0xdd,
+ 0x05, 0x1a, 0x91, 0x5e, 0xa7, 0x3e, 0x53, 0x3d, 0x31, 0x86, 0xad, 0xaf, 0x4e, 0xd6, 0xfc, 0x22, 0x1d, 0xb1,
+ 0x05, 0x7a, 0x58, 0x05, 0x33, 0xdc, 0x3a, 0x58, 0x78, 0xcc, 0x4a, 0xbb, 0x9c, 0xb8, 0x35, 0x3d, 0xbf, 0x27,
+ 0x75, 0xfe, 0x3f, 0x5b
};
// context = simple_context_ru
@@ -2752,461 +3408,38 @@ static const uint8_t CONTEXT_ARRAY[] = {
#endif // __PV_LANGUAGE_RUSSIAN__
-#if defined(__PV_LANGUAGE_DUTCH__)
-
-// wake-word = hallo computer
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xbc, 0xb9, 0x24, 0xa6, 0xc0, 0x74, 0x10, 0x7f, 0xe4, 0x49, 0x9f, 0xe0, 0x69, 0x77, 0x3d, 0xd3, 0x7e, 0x20,
- 0x32, 0x30, 0x04, 0xa0, 0xe2, 0xdd, 0x5f, 0x2d, 0x08, 0x39, 0x70, 0x6e, 0xb4, 0xac, 0x48, 0xc2, 0x84, 0x95,
- 0xc2, 0xee, 0xab, 0x0b, 0xa4, 0x5c, 0x2d, 0x96, 0x53, 0x03, 0x00, 0xf3, 0x37, 0xb2, 0xd5, 0x8a, 0x2e, 0x47,
- 0xb4, 0x0b, 0x73, 0x8c, 0x80, 0x06, 0x95, 0xf6, 0xa3, 0xf2, 0x16, 0xde, 0x92, 0xcc, 0x45, 0x69, 0xd6, 0x8f,
- 0xc1, 0xd6, 0x4a, 0xa8, 0xaa, 0xb8, 0x80, 0x8f, 0xc2, 0xc5, 0x8a, 0x50, 0xfb, 0xa3, 0x70, 0xf2, 0x3e, 0xcf,
- 0x7a, 0xb4, 0x19, 0x20, 0xbd, 0xf7, 0xb6, 0xc6, 0x7c, 0xe1, 0xbb, 0xcd, 0x25, 0x63, 0x3b, 0x73, 0x65, 0x31,
- 0x92, 0x75, 0xf6, 0x30, 0xd2, 0x14, 0x9d, 0xc7, 0x58, 0x29, 0x4c, 0xdf, 0x71, 0x5b, 0x63, 0x3e, 0x22, 0x4e,
- 0x6b, 0x53, 0x18, 0x71, 0x9f, 0x79, 0xb5, 0x20, 0xa9, 0xba, 0x45, 0x00, 0xd0, 0xa0, 0xfd, 0x2a, 0x31, 0xa6,
- 0x84, 0x20, 0x18, 0xe9, 0x3d, 0x6b, 0x2e, 0x5c, 0xcd, 0xf8, 0x06, 0xed, 0x19, 0x86, 0x8f, 0x30, 0xd4, 0xf8,
- 0x78, 0xd4, 0x71, 0x6a, 0x05, 0x4b, 0xf2, 0x7c, 0xf5, 0x01, 0x12, 0x06, 0x71, 0x9f, 0xda, 0x25, 0x03, 0xb9,
- 0x7f, 0x23, 0xfb, 0x9c, 0x43, 0x31, 0x6f, 0x79, 0xac, 0xc2, 0xdf, 0xf5, 0x0e, 0xc0, 0xed, 0x1c, 0xa7, 0x49,
- 0xbc, 0x62, 0x0f, 0x55, 0x26, 0x5e, 0x83, 0x86, 0xc8, 0xd6, 0xf7, 0xde, 0x22, 0x81, 0xe4, 0x9d, 0xd5, 0xde,
- 0x57, 0xbb, 0x02, 0x3f, 0x4c, 0x6e, 0xe4, 0x3f, 0x19, 0x5f, 0x3a, 0x00, 0x56, 0x85, 0x4f, 0x43, 0xa6, 0x28,
- 0x16, 0x9d, 0x06, 0xeb, 0xb3, 0x44, 0x99, 0xa0, 0x85, 0x31, 0xd8, 0x9d, 0x04, 0x6a, 0x54, 0x13, 0x07, 0x78,
- 0x60, 0x96, 0x49, 0x45, 0x27, 0xc7, 0x39, 0x86, 0x81, 0x12, 0xf2, 0xa6, 0x9a, 0x85, 0x5a, 0x32, 0xf5, 0x2e,
- 0xe8, 0xdd, 0x48, 0x89, 0x0b, 0x33, 0xf6, 0x07, 0xb3, 0xa8, 0x01, 0xf0, 0xbd, 0x8c, 0x1a, 0x8c, 0x91, 0x80,
- 0xeb, 0x46, 0xc1, 0xcd, 0x07, 0x64, 0x74, 0xc6, 0x88, 0xa4, 0xcb, 0xe5, 0xe2, 0x7c, 0x94, 0xa2, 0x9f, 0xfe,
- 0xe4, 0x22, 0xef, 0x2f, 0x0f, 0x40, 0xd8, 0x54, 0xca, 0xe7, 0xdb, 0xcf, 0xcd, 0x1d, 0x65, 0xbf, 0xd4, 0x69,
- 0xcf, 0x49, 0x12, 0x41, 0x29, 0x4e, 0x2e, 0xce, 0x44, 0xeb, 0xb8, 0x65, 0x4d, 0x6f, 0xdc, 0x4b, 0xd8, 0x22,
- 0x01, 0xb3, 0x52, 0xbe, 0xe8, 0xef, 0xa0, 0x8b, 0xf2, 0x49, 0x74, 0x17, 0x00, 0x63, 0x15, 0x23, 0xdb, 0xf5,
- 0xd4, 0xc0, 0x6f, 0x9f, 0x12, 0xeb, 0x8e, 0xf2, 0x64, 0x69, 0x2b, 0xe4, 0xe7, 0x0d, 0x08, 0xad, 0xc9, 0x3b,
- 0x0d, 0xbb, 0x1e, 0x4b, 0x52, 0xb6, 0x5c, 0xa0, 0x9b, 0x4b, 0x2e, 0x69, 0x3d, 0xab, 0x42, 0x87, 0x23, 0xfe,
- 0x3b, 0x8a, 0x9a, 0xf5, 0x17, 0x82, 0xb4, 0x23, 0x24, 0x00, 0x00, 0x44, 0xba, 0xd2, 0xb9, 0x53, 0x79, 0x36,
- 0xf0, 0x72, 0xb5, 0x05, 0x74, 0x1d, 0xfa, 0x37, 0x14, 0x00, 0xd9, 0x29, 0x7b, 0x51, 0x72, 0x44, 0xd9, 0xcc,
- 0x58, 0xde, 0xaa, 0x81, 0x92, 0x9c, 0x50, 0xd4, 0x13, 0x39, 0x7b, 0x2d, 0x0a, 0xbb, 0xc0, 0x21, 0x5a, 0xce,
- 0x0b, 0xe9, 0x67, 0x3e, 0xf4, 0x41, 0xd0, 0x0f, 0x46, 0x99, 0x22, 0x62, 0x37, 0xc3, 0xa1, 0xbf, 0x8c, 0x28,
- 0xa6, 0xc5, 0x86, 0xc3, 0x1d, 0x2f, 0xd2, 0xaf, 0x60, 0x94, 0x28, 0x5e, 0xc3, 0x6f, 0xf0, 0xe0, 0x1a, 0x55,
- 0xb4, 0x04, 0x82, 0xa3, 0xf8, 0xbd, 0x20, 0x58, 0xdb, 0x91, 0x6b, 0x09, 0xc5, 0x28, 0x39, 0xe3, 0x83, 0x2e,
- 0xcf, 0xe7, 0x74, 0xc8, 0x1d, 0x55, 0x69, 0x5e, 0x81, 0x43, 0xe8, 0x69, 0xc3, 0x22, 0xe4, 0x8c, 0x7a, 0xd7,
- 0x92, 0x22, 0xf4, 0x9a, 0x4d, 0x99, 0xbd, 0x21, 0x70, 0xda, 0xec, 0x70, 0x4d, 0x3b, 0xca, 0x13, 0x92, 0xe1,
- 0xfd, 0xf3, 0xdb, 0x1d, 0x43, 0x7f, 0x30, 0xc7, 0xe7, 0x92, 0x7d, 0xbd, 0xa9, 0x19, 0x57, 0x43, 0xe3, 0x79,
- 0xcd, 0xb5, 0xe0, 0xc3, 0x27, 0x44, 0xff, 0xff, 0x91, 0x44, 0xef, 0x77, 0x0a, 0x89, 0x4f, 0xd2, 0xad, 0xfc,
- 0x5e, 0xeb, 0xb3, 0xe6, 0x12, 0x57, 0xdd, 0xd6, 0xe6, 0x51, 0xd2, 0x60, 0x8a, 0x44, 0x89, 0xdf, 0x64, 0xda,
- 0x11, 0x88, 0x95, 0x7c, 0x9d, 0x0d, 0x4f, 0x25, 0x77, 0x2e, 0xae, 0x8e, 0xa8, 0xf0, 0xa1, 0x54, 0xe4, 0x88,
- 0x86, 0x74, 0x75, 0x1f, 0x90, 0xd6, 0x0b, 0xfd
-};
-
-// context = simple_context_nl
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x6c, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x84, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x20, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x65, 0x65, 0x66, 0x20, 0x6d, 0x65, 0x20, 0x65, 0x65, 0x6e, 0x20, 0x24,
- 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73,
- 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f, 0x73, 0x22,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x22, 0x00,
- 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00,
- 0x17, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2c, 0x00,
- 0x00, 0x00, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x00, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x00, 0x64,
- 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x00, 0x65, 0x65, 0x6e, 0x00, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f,
- 0x73, 0x00, 0x67, 0x65, 0x65, 0x66, 0x00, 0x6d, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00,
- 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
- 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x20, 0x00,
- 0x00, 0x00, 0x03, 0x14, 0x05, 0x04, 0x27, 0x04, 0x23, 0x1d, 0x04, 0x26, 0x15, 0x05, 0x23, 0x14, 0x15, 0x16,
- 0x25, 0x1b, 0x08, 0x10, 0x09, 0x14, 0x21, 0x0f, 0x04, 0x12, 0x15, 0x29, 0x08, 0x09, 0x0f, 0x25, 0x05, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
- 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
- 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68,
- 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_DUTCH__
-
-#if defined(__PV_LANGUAGE_HINDI__)
-
-// wake-word = namaste putra
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xfc, 0x11, 0xf1, 0xd0, 0x6c, 0x2a, 0xd0, 0x4f, 0xf5, 0x04, 0xa7, 0xe2, 0x01, 0x65, 0xe4, 0xdd, 0x03, 0x86,
- 0x54, 0xb1, 0x7b, 0x49, 0x3a, 0x79, 0x4d, 0xe7, 0x1c, 0x64, 0x0e, 0x0b, 0xa7, 0xb7, 0xe4, 0x8b, 0x7f, 0x04,
- 0x97, 0xa7, 0x63, 0x79, 0xaa, 0x85, 0x1a, 0x08, 0x71, 0x80, 0x58, 0x43, 0x57, 0x25, 0xe6, 0x7c, 0x96, 0x59,
- 0xb7, 0x66, 0xd6, 0x11, 0x77, 0x90, 0x90, 0xd9, 0xf8, 0x24, 0xfa, 0x78, 0xeb, 0xdb, 0xba, 0xdc, 0xe5, 0x99,
- 0xd5, 0xca, 0x95, 0x07, 0xfa, 0xd3, 0xe0, 0xe8, 0x83, 0x82, 0x62, 0xb0, 0x6c, 0x62, 0x35, 0xec, 0x9a, 0x3b,
- 0x62, 0x04, 0x30, 0xc0, 0x02, 0x72, 0x54, 0xb8, 0xed, 0x14, 0x1a, 0x58, 0xd0, 0xf9, 0x5a, 0x57, 0x07, 0x31,
- 0x15, 0xe6, 0xc1, 0x7c, 0x62, 0xa2, 0xa8, 0x7d, 0xcc, 0x1b, 0xf0, 0x25, 0xd8, 0x39, 0x38, 0x54, 0xbc, 0xfd,
- 0x2a, 0x68, 0xac, 0x7e, 0x46, 0x57, 0xc5, 0x7f, 0x7f, 0x29, 0x2c, 0x4b, 0x99, 0x7a, 0x6d, 0xa7, 0x07, 0xdc,
- 0xeb, 0x6b, 0x87, 0x90, 0x7f, 0x17, 0xab, 0x2a, 0x9e, 0x5c, 0x73, 0x07, 0xfe, 0xc8, 0x48, 0xa8, 0xc0, 0x07,
- 0x58, 0x10, 0xd8, 0x60, 0xcc, 0xa4, 0x4a, 0x2a, 0x5d, 0x0d, 0x6a, 0xcd, 0xe1, 0xc9, 0x65, 0x48, 0xce, 0x13,
- 0x27, 0x7d, 0xed, 0x4f, 0x8f, 0x1a, 0x9e, 0x21, 0x83, 0xb7, 0x39, 0x0c, 0x5f, 0xcf, 0xb5, 0x75, 0xc6, 0x1d,
- 0x61, 0x18, 0x4a, 0xe2, 0x3e, 0x6d, 0xa0, 0x56, 0xe8, 0x19, 0xe2, 0xad, 0xcf, 0x4b, 0x80, 0x25, 0x71, 0x76,
- 0xd1, 0x58, 0x62, 0x0b, 0x35, 0x6f, 0x6b, 0xaf, 0xfd, 0x26, 0x62, 0xde, 0xfd, 0x5e, 0x3a, 0xac, 0x08, 0x9d,
- 0xde, 0x24, 0x83, 0x89, 0xef, 0x79, 0xb8, 0xdb, 0x5d, 0x72, 0x4f, 0x50, 0x0b, 0x34, 0xe3, 0xe2, 0x8e, 0x34,
- 0xe3, 0x5e, 0x11, 0xbd, 0x09, 0x04, 0x21, 0x89, 0xf6, 0xc9, 0x0c, 0x38, 0xae, 0xee, 0xa7, 0x00, 0x5e, 0xf3,
- 0x89, 0x57, 0x5b, 0xe6, 0x08, 0x5d, 0x15, 0x0b, 0x4d, 0x00, 0x6d, 0x82, 0x04, 0xa6, 0xd4, 0x9a, 0x82, 0x35,
- 0xff, 0xc4, 0x68, 0xff, 0xcf, 0x28, 0x8a, 0xb0, 0x0e, 0x92, 0x05, 0xad, 0x06, 0x36, 0x95, 0x50, 0xd0, 0xdc,
- 0x94, 0x8c, 0xc6, 0xc2, 0x88, 0x96, 0x96, 0x8a, 0x46, 0x58, 0x72, 0xb0, 0x91, 0x51, 0x9b, 0x3d, 0x04, 0x5c,
- 0x96, 0x73, 0x6f, 0x01, 0x2f, 0xcd, 0x50, 0xa2, 0x64, 0x48, 0xa5, 0xd9, 0x48, 0x58, 0x06, 0x94, 0xf3, 0xf7,
- 0xc0, 0xb7, 0x5e, 0x53, 0xe7, 0x7c, 0x00, 0x1d, 0x24, 0x1f, 0x03, 0x93, 0xbf, 0x1d, 0xc1, 0xf0, 0x18, 0xd9,
- 0x8c, 0x6e, 0xb4, 0x93, 0xa2, 0x4f, 0x31, 0xfa, 0x58, 0x2d, 0xe9, 0x0b, 0xf7, 0x61, 0xa8, 0x10, 0x99, 0xea,
- 0x85, 0x0b, 0x9d, 0xb1, 0xce, 0xd0, 0x7f, 0x78, 0x22, 0xdf, 0xb5, 0x03, 0x9b, 0xd8, 0xa1, 0x6c, 0xad, 0xdd,
- 0xf6, 0x06, 0x75, 0x2d, 0x20, 0x9a, 0x92, 0x6a, 0xc6, 0x57, 0x17, 0x78, 0x43, 0x26, 0xea, 0x19, 0xfd, 0x16,
- 0xdf, 0xb4, 0x4e, 0xf6, 0x86, 0x0a, 0x9f, 0xf8, 0x78, 0x3d, 0x49, 0x43, 0xc8, 0xdf, 0xd7, 0xd1, 0x42, 0xb6,
- 0x49, 0x5c, 0x6a, 0x07, 0x05, 0xf5, 0x7b, 0x18, 0xb9, 0x5e, 0xda, 0xe9, 0xcf, 0x45, 0x02, 0xfa, 0x2b, 0x68,
- 0x49, 0x21, 0x10, 0xd3, 0x70, 0x11, 0x64, 0xd4, 0xda, 0xcc, 0x83, 0xdc, 0xa3, 0x71, 0xbb, 0xf2, 0x48, 0x91,
- 0xac, 0xd4, 0x50, 0xf2, 0x63, 0x88, 0x66, 0x04, 0xc8, 0xcf, 0x13, 0xf4, 0x39, 0x80, 0x0b, 0xa6, 0xf5, 0xd9,
- 0x0a, 0x8c, 0xb7, 0x9c, 0xcc, 0xc8, 0x13, 0xb4, 0x9a, 0x74, 0x93, 0xeb, 0x2b, 0x94, 0xad, 0x94, 0xc9, 0xcf,
- 0xab, 0xad, 0x78, 0xad, 0x44, 0xf1, 0x85, 0x6f, 0xe7, 0x5b, 0x7e, 0x83, 0x74, 0xb6, 0xdb, 0xaf, 0x79, 0xe5,
- 0xb3, 0xab, 0x4c, 0x78, 0xbd, 0xb6, 0x1c, 0x7c, 0xfe, 0x3e, 0x8b, 0x31, 0xe4, 0x28, 0x3f, 0x16, 0xbb, 0xf3,
- 0xe2, 0x90, 0x15, 0xfe, 0x79, 0x2d, 0x56, 0xc5, 0xc0, 0xbf, 0x43, 0x33, 0x05, 0xe3, 0x94, 0x31, 0x9f, 0x2e,
- 0x1a, 0x40, 0xa7, 0x80, 0xb1, 0xbe, 0x69, 0x60, 0xea, 0xc3, 0x59, 0xc3, 0x52, 0x46, 0x8c, 0xc7, 0x9e, 0xa6,
- 0x59, 0x3d, 0x13, 0x33, 0x6f, 0xda, 0xbf, 0x30, 0xf9, 0xb5, 0x3c, 0xb5, 0xb9, 0x9a, 0x59, 0x53, 0xe6, 0x7e,
- 0x6d, 0x7f, 0xd5, 0xb4, 0xeb, 0xe3, 0x47, 0x5c, 0x4d, 0xfe, 0x04, 0xac, 0xc2, 0xa3, 0x4d, 0xd7, 0x75, 0xb9,
- 0x95, 0x79, 0x90, 0xf1, 0x55, 0xb0, 0xc3, 0x4d, 0xed, 0x44, 0x22, 0x33, 0x0f, 0x5c, 0x75, 0xf8, 0x91, 0x29,
- 0x83, 0x46, 0x68, 0x84, 0x82, 0x87, 0x59, 0x3e, 0x86, 0x27, 0xf3, 0x7d, 0xe5, 0x4c, 0x9e, 0x43, 0xc4, 0x9d,
- 0xc0, 0x9e, 0xc5, 0x20, 0xc4, 0x7c, 0x33, 0x4b, 0x1c, 0x53, 0xbc, 0x68, 0x83, 0xea, 0x33, 0xac, 0xb9, 0x78,
- 0x32, 0xb3, 0x45, 0x41, 0x63, 0x5e, 0x7e, 0x16, 0x75, 0x0b, 0xb2, 0x22, 0x4d, 0x92
-};
-
-// context = simple_context_hi
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x68, 0x69, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0,
- 0xa4, 0xbe, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70,
- 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4,
- 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x20, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95, 0x20,
- 0x24, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x20, 0xe0, 0xa4, 0xa6,
- 0xe0, 0xa5, 0x8b, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0,
- 0xa4, 0xb8, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0,
- 0xa4, 0xac, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5,
- 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87,
- 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
- 0x3b, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95,
- 0x00, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xa6, 0xe0,
- 0xa5, 0x8b, 0x00, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0, 0xa4, 0xbe, 0xe0, 0xa4, 0xb8,
- 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x00, 0xe0,
- 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0xe0, 0xa4, 0xb8,
- 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0, 0xa4, 0xac,
- 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
- 0x20, 0x00, 0x00, 0x00, 0x0e, 0x17, 0x17, 0x0e, 0x19, 0x05, 0x0a, 0x1d, 0x1e, 0x15, 0x05, 0x24, 0x05, 0x1a,
- 0x2a, 0x16, 0x0e, 0x21, 0x04, 0x24, 0x07, 0x04, 0x21, 0x14, 0x24, 0x28, 0x21, 0x03, 0x06, 0x0e, 0x21, 0x14,
- 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
- 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_HINDI__
-
-#if defined(__PV_LANGUAGE_ARABIC__)
-
-// wake-word = coffee
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xd5, 0x50, 0x75, 0xd2, 0x3e, 0x9a, 0x61, 0xe9, 0xf5, 0xd8, 0xba, 0xd9, 0x44, 0x1b, 0xf9, 0x81, 0xc8, 0xe3,
- 0x17, 0x2a, 0x3f, 0xdc, 0xd2, 0x0c, 0x3c, 0x13, 0x4d, 0x91, 0xbd, 0xc3, 0x7d, 0x86, 0x88, 0xa4, 0x80, 0xab,
- 0x44, 0x0f, 0x3e, 0xa6, 0xc5, 0x06, 0x1e, 0xd8, 0x10, 0x3a, 0xc1, 0x30, 0x86, 0xba, 0xaf, 0xa7, 0xb9, 0x01,
- 0xfa, 0x8b, 0x69, 0x3a, 0xe4, 0xa8, 0xc7, 0x9a, 0xc8, 0xf4, 0x54, 0xf9, 0x4b, 0x5b, 0xed, 0x6e, 0xdf, 0xda,
- 0xfc, 0x48, 0x92, 0xda, 0xb6, 0x8d, 0x4b, 0xfd, 0x19, 0x18, 0x22, 0x0c, 0x20, 0xa5, 0x59, 0xaf, 0x12, 0x9c,
- 0x1a, 0x96, 0xb2, 0xf6, 0x2a, 0x62, 0x81, 0x53, 0x46, 0x6c, 0x73, 0x85, 0x37, 0x9e, 0xf4, 0xce, 0x35, 0xcb,
- 0xec, 0x39, 0x54, 0x4d, 0x04, 0x5f, 0xed, 0x83, 0xd1, 0xba, 0xf7, 0x3a, 0x74, 0x21, 0xb9, 0x21, 0xdc, 0xc1,
- 0x24, 0x7c, 0x90, 0xf7, 0x00, 0x4f, 0x0b, 0x68, 0x7f, 0x23, 0xea, 0x14, 0x75, 0xb1, 0x32, 0xb7, 0xcc, 0xfb,
- 0x10, 0xc1, 0xd1, 0xf2, 0x33, 0x8e, 0xd3, 0x58, 0x38, 0xad, 0x77, 0xe7, 0xc4, 0x4f, 0x68, 0x9c, 0x58, 0x82,
- 0x01, 0x8b, 0x96, 0x4c, 0xfd, 0x54, 0xbc, 0xae, 0xe4, 0x24, 0xa9, 0x50, 0xe9, 0xc3, 0xb4, 0x40, 0x53, 0x0f,
- 0x4d, 0xa5, 0x67, 0x3e, 0xfa, 0x13, 0xf2, 0x82, 0xa4, 0x01, 0x11, 0xa9, 0x8d, 0xa0, 0xa6, 0x05, 0x47, 0x46,
- 0x56, 0x40, 0x0b, 0x96, 0x08, 0x6c, 0x57, 0xf0, 0xd5, 0x0e, 0xdc, 0x13, 0x67, 0xae, 0xfb, 0xbf, 0xea, 0x01,
- 0x36, 0x61, 0x74, 0x0b, 0x75, 0x80, 0x3f, 0x48, 0xbe, 0x96, 0x62, 0x9a, 0xc6, 0xde, 0x36, 0x3a, 0xe4, 0x13,
- 0x41, 0xb2, 0xbf, 0xdd, 0x87, 0x13, 0x2d, 0x8d, 0x7f, 0xad, 0x9a, 0x2e, 0xef, 0x18, 0x33, 0x06, 0xca, 0xdf,
- 0x23, 0x30, 0x43, 0x4f, 0x89, 0x53, 0x19, 0x55, 0xce, 0x32, 0x0a, 0xef, 0x0c, 0x50, 0xab, 0xa8, 0x9a, 0x8c,
- 0x8f, 0xee, 0x72, 0x92, 0x9d, 0x37, 0xca, 0xdb, 0x23, 0x8f, 0x6e, 0x67, 0x74, 0xba, 0x2c, 0x67, 0x98, 0xe2,
- 0x26, 0x55, 0xf9, 0xb9, 0xf2, 0x77, 0xf2, 0xfb, 0x4d, 0xbd, 0x5b, 0xf1, 0x97, 0xe3, 0x79, 0x0d, 0xbc, 0x88,
- 0xbf, 0xca, 0xfd, 0xdf, 0x08, 0xe4, 0xa1, 0x12, 0x3c, 0xa4, 0xc0, 0x84, 0x55, 0xb2, 0xcc, 0x0a, 0xb5, 0xfb,
- 0xde, 0x9d, 0xd5, 0x44, 0x80, 0x6a, 0x8c, 0x4e, 0xc9, 0x38, 0x2c, 0x88, 0x2f, 0x4f, 0xa0, 0xab, 0x24, 0x5b,
- 0xa1, 0x1c, 0x0a, 0x41, 0x59, 0xc9, 0x17, 0x45, 0xa4, 0x54, 0x77, 0xcd, 0xef, 0x39, 0x29, 0x55, 0xb1, 0x23,
- 0x05, 0xda, 0x1b, 0x0d, 0xcd, 0x3e, 0x2a, 0xbf, 0x2f, 0xb6, 0x44, 0x8a, 0x50, 0x08, 0xd6, 0x76, 0x67, 0x49,
- 0xbf, 0xfc, 0xff, 0xdd, 0x8c, 0xc8, 0x20, 0x1c, 0x87, 0x2b, 0x06, 0x9e, 0x62, 0x56, 0xf5, 0x01, 0x43, 0x4e,
- 0x46, 0x53, 0x2c, 0x31, 0x2a, 0x63, 0x57, 0xc6, 0x7f, 0x3b, 0xf5, 0x12, 0x59, 0x1b, 0xe7, 0x4b, 0x1e, 0x18,
- 0xe5, 0xb5, 0x0f, 0xcc, 0x47, 0x79, 0x85, 0x50, 0xb6, 0x0e, 0xab, 0xd7, 0xc0, 0x3d, 0xb1, 0x83, 0x8f, 0xed,
- 0x7f, 0xe5, 0xd9, 0x56, 0xc0, 0x3a, 0xd2, 0x4b, 0x34, 0x6e, 0x0f, 0x5a, 0x69, 0xab, 0x8b, 0x8a, 0xcd, 0xa8,
- 0x4d, 0x75, 0x4d, 0x04, 0x56, 0x01, 0x89, 0x74, 0xe6, 0x9e, 0x30, 0xbc, 0xa1, 0x65, 0x10, 0x34, 0x8e, 0x88,
- 0x16, 0x89, 0xd4, 0x54, 0xf9, 0x16, 0x8b, 0xb5, 0x45, 0xea, 0xc1, 0x2f, 0xd7, 0x1b, 0x0f, 0xe9, 0x98, 0x3b,
- 0xc3, 0xf5, 0x37, 0xb8, 0x7f, 0x2e, 0x1b, 0x25, 0x5e, 0x24, 0x35, 0xab, 0x02, 0x72, 0x7c, 0xba, 0xf7, 0xdf,
- 0x8b, 0xab, 0x45, 0xce, 0x75, 0x57, 0xfc, 0x9e, 0x04, 0x03, 0x51, 0x76, 0x1d, 0x68, 0x4b, 0x59, 0x18, 0x93,
- 0x49, 0xb8, 0x41, 0x00, 0xa6, 0x5b, 0x43, 0x79, 0x07, 0xfe, 0x9b, 0x52, 0x96, 0xca, 0x7c, 0x0b, 0x5d, 0x4b,
- 0x2b, 0x9c, 0xea, 0xe0, 0x6e, 0x2b, 0xde, 0x0a, 0x34, 0x96, 0x3f, 0xeb, 0x06, 0xa4, 0x18, 0x70, 0x74, 0x23,
- 0x49, 0xed, 0x7c, 0x72, 0x30, 0x8d, 0xa4, 0x23, 0xe1, 0xec, 0x52, 0x05, 0xd5, 0x4c, 0xe3, 0xaa, 0x0f, 0x77,
- 0x91, 0xe6, 0x37, 0x74, 0xd0, 0x78, 0xc8, 0x3c, 0xd0, 0x2b, 0x86, 0xd3, 0x6a, 0x9f, 0x95, 0xe5, 0xf2, 0x47,
- 0x1f, 0xdc, 0xbc, 0x00, 0xb6, 0x9e, 0x3d, 0x75, 0x1f, 0x38, 0x31, 0x8f, 0x0f, 0xdc, 0x5d, 0x81, 0x4d, 0x70,
- 0x1a, 0x6e, 0x5e, 0x17, 0xb5, 0x8c, 0x2d, 0xe1, 0x38, 0x3b, 0x19, 0x1e, 0xbb, 0xe4, 0xb8, 0x84, 0x47, 0x54,
- 0xc8, 0x87, 0x47, 0x8a, 0x33, 0xef, 0x33, 0x84, 0x0c, 0x8f, 0x11, 0x89, 0x33, 0xc1, 0x3c, 0x06, 0xe0, 0xdf,
- 0x04, 0xbe, 0x82, 0x5c, 0xb3, 0x1a, 0x4f, 0x06, 0x9d, 0x38, 0x90, 0x9b, 0xd2, 0x04, 0x79, 0x1b, 0x00, 0xed,
- 0xf8, 0x64, 0x3c, 0xd3, 0x3b, 0x51, 0x3e, 0x96, 0x2b, 0x59, 0xef, 0x5b, 0xeb, 0x28, 0xf7, 0x3b, 0x4a, 0x57,
- 0xa2, 0xba, 0xee, 0x1f, 0xbb, 0xd0, 0xf8, 0x88, 0xea, 0xf2, 0xa6, 0xd6, 0xbf, 0xea, 0x0f, 0xf0, 0xe1, 0xcf,
- 0x5c, 0xd1, 0xae, 0x24, 0x99, 0x9b, 0x43, 0xa1, 0x1b, 0x6e, 0xa9, 0xc9, 0xe2, 0x0d, 0xef, 0xa2, 0x58, 0xe8,
- 0x97, 0xe9, 0xa0, 0x24, 0x28, 0x28, 0xaf, 0x5a, 0x60, 0xf6, 0x1f, 0x83, 0x73, 0x75, 0xe8, 0x93, 0x96, 0xcc,
- 0xd8, 0xc8, 0xa4, 0x69, 0x82, 0xb9, 0xe4, 0x12, 0xa9, 0x4d, 0x87, 0xaf, 0x11, 0xe0, 0x55, 0x31, 0x20, 0xf9,
- 0x72, 0x93, 0x2d, 0xbd, 0xbe, 0xf1, 0x52, 0xa2, 0x8e, 0x2e, 0x40, 0x42, 0x07, 0xd7, 0x47, 0x6c, 0x52, 0xef,
- 0x57, 0x4c, 0xfd, 0xf0, 0x2f, 0x36, 0xb0, 0xa4, 0xf3, 0x10, 0xce, 0x70, 0x39, 0x66, 0xa1, 0x56, 0x60, 0x35,
- 0xf2, 0xe3, 0x0f, 0xae, 0x31, 0xed, 0xb8, 0x73, 0xd6, 0x75, 0x03, 0x78, 0xdd, 0xbf, 0x3b, 0xbe, 0x01, 0x76,
- 0x81, 0x4b, 0x0e, 0x48, 0x5b, 0x08, 0xd6, 0x58, 0x9f, 0x0f, 0xff, 0xf9, 0x51, 0x98, 0xad, 0x46, 0x8d, 0x1e,
- 0xa7, 0xaf, 0x79, 0x86, 0x1e, 0x12, 0xc7, 0x42, 0xab, 0x8b, 0xdc, 0x72, 0xcf, 0x5d, 0xfc, 0xe4, 0x8d, 0x14,
- 0x62, 0x52, 0xed, 0xb2, 0x5e, 0x5a, 0xc3, 0x3f, 0x29, 0x31, 0x36, 0x3e, 0x3e, 0xc1, 0xb1, 0x08, 0xc7, 0x18,
- 0x71, 0x12, 0xf4, 0x1b, 0xa4, 0xd5, 0x1c, 0xa7, 0x7d, 0x16, 0xb2, 0x07, 0x54, 0xcd, 0xd0, 0x76, 0x0b, 0xb4,
- 0x3c, 0x24, 0x30, 0xb4, 0xf6, 0xc4, 0x75, 0x1d, 0x91, 0xa9, 0x00, 0x23, 0xbf, 0x28, 0x1c, 0x7a, 0x63, 0x81,
- 0x75, 0x40, 0x0a, 0x4c, 0x8b, 0xc1, 0x13, 0xf5, 0x43, 0xe2, 0x98, 0x4c, 0x53, 0xc4, 0x12, 0xe5, 0x49, 0x77,
- 0x92, 0x36, 0x3c, 0x95, 0xd7, 0xf3, 0x5f, 0x5b, 0x6e, 0x74, 0x82, 0xed, 0x55, 0x44, 0x2a, 0xbc, 0xad, 0x6f,
- 0x9f, 0xa5, 0xab, 0x8a, 0xd3, 0xb8, 0xce, 0x5d, 0xd6, 0x74, 0x2e, 0x37, 0xb6, 0x49, 0x5a, 0xab, 0xf4, 0x9b,
- 0x1f, 0xbd, 0x06, 0x83, 0x4a, 0x31, 0x22, 0xd0, 0x09, 0xc9, 0x89, 0x7c, 0xda, 0xcc, 0x8c, 0xa3, 0xde, 0xd7,
- 0xa1, 0xc0, 0xe9, 0xef, 0x8c, 0x6d, 0x42, 0x1a, 0xe8, 0x7b, 0x67, 0x46, 0x81, 0x60, 0x3b, 0x68, 0x92, 0xa6,
- 0x04, 0xc2, 0xab, 0xe0, 0x87, 0xe4, 0x6b, 0x18, 0x9a, 0x01, 0x9a, 0x99, 0x2e, 0xf0, 0x95, 0x3e, 0x09, 0x38,
- 0x94, 0xbe, 0x59, 0xd5, 0xdb, 0x98, 0x31, 0xc5, 0xb7, 0x97, 0x4f, 0xe9, 0x27, 0x53, 0xc9, 0x8a, 0xb1, 0x19,
- 0x56, 0x6d, 0x26, 0x49, 0x74, 0x24, 0xa5, 0x02, 0xc8, 0x15, 0x93, 0x81, 0xf7, 0x94, 0xee, 0x23, 0x10, 0x8c,
- 0xd3, 0xd8, 0x97, 0xe5, 0xaf, 0x70, 0xb4, 0x01, 0x7d, 0x4f, 0x4a, 0x49, 0x3c, 0x42, 0xea, 0x05, 0x71, 0xec,
- 0xfc, 0xa8, 0x67, 0x55, 0xc9, 0x49, 0x10, 0xac, 0xeb, 0x95, 0x7b, 0x3f, 0x89, 0x72, 0x60, 0x1e, 0xa9, 0xa0,
- 0xd3, 0x08, 0x83, 0x58, 0x23, 0xf6, 0xf2, 0xa5, 0xf6, 0x84, 0x02, 0x06, 0xc4, 0xde, 0x0d, 0x16, 0xd9, 0xdd,
- 0x2b, 0x53, 0x56, 0x2a, 0x29, 0x78, 0x80, 0x83, 0x57, 0x84, 0x0f, 0xc4, 0x33, 0xa8, 0x5c, 0xd4, 0xf9, 0x8c,
- 0x34, 0x18, 0xbc, 0xc5, 0x0d, 0xad, 0x82, 0x66, 0x1d, 0x23, 0x57, 0xc7, 0xde, 0x5e, 0x23, 0x06, 0xcf, 0x8e,
- 0xe8, 0xd9, 0xf1, 0x62, 0x6e, 0x66, 0xe8, 0xa1, 0x60, 0xb5, 0x32, 0x90, 0x06, 0x4f, 0x41, 0xca, 0xb3, 0xa9,
- 0x3f, 0xc1, 0xf9, 0x1f, 0xa0, 0xd6, 0xfd, 0x53, 0x07, 0x51, 0xf7, 0x1a, 0xc7, 0xd9, 0x5a, 0x69, 0xc6, 0x48,
- 0x12, 0x18, 0x98, 0xd6, 0x10, 0xa8, 0xec, 0xa4, 0x6f, 0xdf, 0xfb, 0x6c, 0xc1, 0x19, 0xd7, 0xb9, 0x1b, 0xc5,
- 0xcc, 0xb1, 0x64, 0xbc, 0xea, 0x78, 0x5e, 0xc8, 0x96, 0xd6, 0x62, 0xa9, 0x99, 0x18, 0x1f, 0xbe, 0xe9, 0xf0,
- 0x1e, 0x5a, 0x67, 0x6d, 0xd4, 0xee, 0x49, 0xcf, 0x1e, 0x8c, 0x0c, 0xd8, 0xbc, 0x80, 0xd3, 0x83, 0xcd, 0x7b,
- 0xe7, 0xb6, 0x0f, 0x63, 0x68, 0x0a, 0x25, 0xc7, 0x94, 0xc1, 0xe7, 0x87, 0x65, 0x1b, 0xd2, 0x2d, 0xdb, 0xe4,
- 0x27, 0x19, 0x25, 0x0d, 0x54, 0x1b, 0x08, 0xca, 0x6f, 0xe2, 0x29, 0xb9, 0x68, 0x56, 0x59, 0x97, 0x62, 0x78,
- 0x6d, 0xe8, 0xc5, 0xa4, 0x67, 0x23, 0xb0, 0x24, 0xe6, 0x7a, 0xc0, 0xc4, 0x15, 0xa1, 0xa1, 0x33, 0xd6, 0x1b,
- 0x70, 0x38, 0xff, 0xd4, 0xa3, 0x34, 0x60, 0x06, 0x7e, 0x53, 0xe3, 0x23, 0x53, 0x4c, 0x2f, 0xf9, 0x3d, 0x00,
- 0x67, 0x06, 0x9b, 0xe9, 0x73, 0xde, 0xe3, 0x9c, 0x87, 0xa9, 0x9f, 0xb3, 0x84, 0x68, 0x62, 0xaf, 0x76, 0x59,
- 0x4b, 0x82, 0xd2, 0x76, 0x06, 0x1f, 0x5d, 0x15, 0x45, 0xd9, 0x0c, 0x6e, 0xaa, 0xa6, 0x2e, 0x1d, 0x65, 0xdc,
- 0x29, 0x10, 0x3e, 0x6d, 0x9f, 0xe1, 0x80, 0x18, 0x16, 0x71, 0x6b, 0xec, 0x06, 0xdc, 0xd4, 0x5b, 0xc6, 0x10,
- 0xff, 0xfb, 0x28, 0x7a, 0x34, 0xdb, 0xd2, 0xcb, 0x13, 0x47, 0x3c, 0x08, 0xba, 0x71, 0x9c, 0x81, 0x15, 0x63,
- 0xf5, 0x84, 0xef, 0xc3, 0x8b, 0xcb, 0x38, 0x7b, 0x30, 0x9c, 0xb7, 0x28, 0x0c, 0x06, 0xb3, 0x0e, 0xe4, 0xa9,
- 0x43, 0xbb, 0x87, 0xee, 0xee, 0x1d, 0xa7, 0xc9, 0xde, 0x2a, 0x69, 0x06, 0x2c, 0xa1, 0x73, 0xf6, 0xfa, 0x22,
- 0xa7, 0xd0, 0x91, 0x14, 0x75, 0x0f, 0xa6, 0xf7, 0xf6, 0x36, 0x9e, 0x73, 0x6a, 0xf2, 0x28, 0xde, 0x5f, 0x0c,
- 0x70, 0x89, 0xc4, 0x05, 0xc7, 0x35, 0x3e, 0xec, 0x03, 0x04, 0xf7, 0xa9, 0x41, 0xab, 0x88, 0xdf, 0x2c, 0x6c,
- 0x13, 0x2b, 0x4c, 0x63, 0xf0, 0x90, 0x9d, 0x70, 0xb1, 0xfd, 0x65, 0xa6, 0x1d, 0x00, 0x7d, 0x90, 0x21, 0x86,
- 0x18, 0xf1, 0x12, 0xe7, 0x13, 0x2a, 0x3d, 0xa2, 0xa1, 0x6d, 0xbf, 0x7a, 0xcb, 0x7b, 0x2b, 0xac, 0x94, 0xa5,
- 0xa5, 0xf0, 0x62, 0x9d, 0x56, 0x19, 0xe5, 0xcd, 0x56, 0x18, 0xde, 0xbf, 0x0a, 0xe1, 0x36, 0x9f, 0xef, 0xea,
- 0x07, 0xe3, 0x3c, 0x05, 0x6e, 0xa8, 0xde, 0xd8, 0xd1, 0x9f, 0x8d, 0xab, 0x7f, 0x09, 0x65, 0x27, 0x01, 0xc8,
- 0xc9, 0xfb, 0x0b, 0x93, 0x3f, 0x41, 0x7e, 0x01, 0x07, 0xfb, 0x23, 0xb3, 0x76, 0x10, 0x43, 0xe9, 0x02, 0x6f,
- 0x4f, 0x8d, 0xfa, 0x4c, 0x10, 0x6b, 0x85, 0x75, 0x7e, 0xba, 0x89, 0x56, 0x28, 0x3f, 0x27, 0xd2, 0xba, 0x70,
- 0xef, 0xbe, 0x83, 0xf5
-};
-
-// context = simple_context_ar
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x61, 0x72, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x22, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x20, 0x24, 0x76, 0x72,
- 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
- 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x22, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa7, 0xd9, 0x84, 0xd9, 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88,
- 0xd9, 0x84, 0xd8, 0xa9, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xaa, 0xd9,
- 0x81, 0xd8, 0xa7, 0xd8, 0xad, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x0b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x33, 0x00,
- 0x00, 0x00, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x00, 0xd8, 0xa7, 0xd9, 0x84, 0xd9,
- 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88, 0xd9, 0x84, 0xd8, 0xa9, 0x00, 0xd8, 0xaa, 0xd9, 0x81, 0xd8, 0xa7,
- 0xd8, 0xad, 0x00, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x00, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1e, 0x00,
- 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
- 0x18, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x46, 0x00,
- 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00,
- 0x7c, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa6, 0x00,
- 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
- 0xc4, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xd6, 0x00,
- 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xea, 0x00, 0x00, 0x00,
- 0xf1, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x03, 0x01, 0x00, 0x00, 0x07, 0x01,
- 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x16, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00,
- 0x21, 0x01, 0x00, 0x00, 0x27, 0x01, 0x00, 0x00, 0x2b, 0x01, 0x00, 0x00, 0x30, 0x01, 0x00, 0x00, 0x36, 0x01,
- 0x00, 0x00, 0x02, 0x10, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x02, 0x1a, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x20, 0x09,
- 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10,
- 0x16, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20,
- 0x24, 0x03, 0x09, 0x10, 0x08, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03,
- 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24,
- 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a,
- 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a,
- 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03,
- 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11,
- 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x10, 0x08,
- 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x0c, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a,
- 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a, 0x0c, 0x0e, 0x21, 0x0e, 0x0e, 0x21, 0x0e, 0x10, 0x0e, 0x21, 0x0e, 0x03,
- 0x0e, 0x21, 0x0e, 0x1a, 0x0e, 0x21, 0x0e, 0x1a, 0x0c, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x0e, 0x1a, 0x24, 0x10,
- 0x0e, 0x10, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x18, 0x10, 0x0a, 0x10,
- 0x11, 0x10, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x11, 0x18, 0x10, 0x0a, 0x11, 0x10,
- 0x18, 0x03, 0x0a, 0x11, 0x18, 0x03, 0x0a, 0x11, 0x03, 0x0c, 0x18, 0x03, 0x0a, 0x11, 0x1a, 0x0c, 0x18, 0x1a,
- 0x0a, 0x10, 0x11, 0x18, 0x1a, 0x0a, 0x10, 0x11, 0x10, 0x18, 0x1a, 0x0a, 0x11, 0x18, 0x1a, 0x0a, 0x11, 0x10,
- 0x18, 0x1a, 0x0a, 0x11, 0x1a, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69,
- 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x18, 0x00,
- 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_ARABIC__
-
-#if defined(__PV_LANGUAGE_POLISH__)
-
-// wake-word = cześć komputer
-static const uint8_t KEYWORD_ARRAY[] = {
- 0x23, 0x5a, 0xda, 0x76, 0xf9, 0xc1, 0x39, 0x71, 0x29, 0xed, 0x13, 0xca, 0xaf, 0xb5, 0x99, 0x14, 0xd1, 0x6f,
- 0xba, 0xd3, 0xf4, 0xf6, 0x75, 0x6c, 0x27, 0x0f, 0x45, 0x36, 0xfb, 0x79, 0x54, 0xbc, 0xea, 0xd8, 0xae, 0x7e,
- 0x59, 0xf2, 0x18, 0x16, 0x3a, 0x62, 0x56, 0x06, 0x23, 0xc2, 0x7a, 0x68, 0xb1, 0xf3, 0x30, 0x1b, 0xc0, 0xf7,
- 0xe9, 0xcc, 0xa9, 0xf3, 0x16, 0x62, 0x00, 0x62, 0xe1, 0xf1, 0xe5, 0xa0, 0x1b, 0x93, 0x1b, 0x26, 0x24, 0xc9,
- 0x51, 0xe8, 0xd0, 0x93, 0x44, 0x0a, 0x3b, 0xb2, 0x8e, 0x61, 0xfc, 0xbd, 0xf7, 0xe2, 0x80, 0xdc, 0x73, 0xee,
- 0x1d, 0x7a, 0xf5, 0x5c, 0x3c, 0x39, 0xd2, 0x81, 0xb7, 0xd7, 0x31, 0x67, 0x51, 0x91, 0x20, 0x09, 0x00, 0x30,
- 0xab, 0x47, 0xf9, 0xaf, 0x99, 0x67, 0xeb, 0x1a, 0x0d, 0x2a, 0x26, 0x11, 0x68, 0x11, 0x16, 0x61, 0x8d, 0x6b,
- 0x7a, 0x31, 0x6d, 0x41, 0x49, 0xd9, 0x5d, 0x35, 0xc8, 0xcb, 0xa0, 0x6d, 0xbd, 0x2b, 0xbd, 0x17, 0x2b, 0x26,
- 0xa9, 0x79, 0x61, 0xb2, 0x7f, 0xec, 0x0f, 0x08, 0x47, 0x9c, 0x04, 0x1c, 0xd3, 0x1e, 0x62, 0xf5, 0x20, 0x05,
- 0x81, 0x5b, 0xc9, 0x9f, 0xfb, 0x46, 0x8c, 0x11, 0x90, 0x78, 0x4c, 0x3e, 0x41, 0x71, 0x27, 0xa0, 0x0e, 0x43,
- 0x10, 0x70, 0x79, 0x4d, 0x97, 0xfc, 0x5e, 0x73, 0x69, 0x92, 0x3b, 0x9f, 0x6b, 0x9e, 0x1c, 0x20, 0xcc, 0xd6,
- 0xc9, 0x19, 0xcf, 0x68, 0xc4, 0xc6, 0x84, 0xce, 0x16, 0x7b, 0xab, 0x47, 0xdb, 0x22, 0xaa, 0x05, 0x54, 0x6b,
- 0xab, 0x0d, 0xc0, 0x1c, 0x8b, 0x82, 0x51, 0xdc, 0xec, 0xe9, 0x15, 0x13, 0x33, 0x4e, 0x51, 0x5f, 0xca, 0xe6,
- 0x6d, 0x0a, 0x18, 0x94, 0xd7, 0x59, 0xc7, 0x52, 0xda, 0xdf, 0x03, 0x73, 0x76, 0xc1, 0x86, 0x44, 0x1d, 0xbd,
- 0x2d, 0xaa, 0x2a, 0x2b, 0x4e, 0x6f, 0xec, 0x20, 0xe1, 0x55, 0x9f, 0xbf, 0xe6, 0x1d, 0x4e, 0xd5, 0xa7, 0xac,
- 0x85, 0x4f, 0x46, 0xa6, 0x52, 0x82, 0x81, 0xb0, 0x18, 0x06, 0xe4, 0xcd, 0xce, 0x97, 0x1f, 0x40, 0xf7, 0xdb,
- 0x0c, 0x7e, 0x86, 0x2b, 0x21, 0x8b, 0x5a, 0xd5, 0x9c, 0xdb, 0xb4, 0x57, 0xb1, 0x35, 0x47, 0xe8, 0xbd, 0xc1,
- 0xd3, 0xd9, 0xc5, 0xc5, 0x78, 0x9e, 0xa1, 0x5b, 0xfc, 0xbe, 0xa7, 0xf3, 0x51, 0x7b, 0xe8, 0xac, 0xcc, 0x94,
- 0xbe, 0x32, 0x75, 0x83, 0xfc, 0x58, 0xb2, 0x2e, 0x20, 0x0e, 0x2c, 0xe2, 0x9f, 0xa2, 0x83, 0xbf, 0xfd, 0x15,
- 0x06, 0x31, 0x7b, 0x5e, 0xd8, 0x7c, 0x46, 0x53, 0x8a, 0xa3, 0xb9, 0x29, 0x27, 0xa4, 0x38, 0x49, 0x6b, 0x56,
- 0x83, 0x35, 0x4f, 0x23, 0xc7, 0x5f, 0x12, 0x2b, 0x36, 0x23, 0xe0, 0xa8, 0x2c, 0x38, 0xc6, 0x61, 0x25, 0xbe,
- 0x85, 0x37, 0x73, 0x6d, 0xbf, 0x35, 0x8b, 0x0f, 0x4d, 0x3b, 0x2e, 0xcb, 0x30, 0x72, 0xb1, 0x8d, 0x4a, 0xa6,
- 0x6d, 0x23, 0x50, 0x64, 0xd0, 0x45, 0xf7, 0x57, 0x0b, 0x20, 0x77, 0x44, 0x78, 0x6b, 0xff, 0xca, 0xda, 0x3f,
- 0xd9, 0x88, 0xb6, 0x78, 0x91, 0xd7, 0x70, 0xd8, 0xc3, 0x84, 0x6b, 0xf9, 0x01, 0x68, 0xa1, 0xd2, 0x39, 0x37,
- 0xb0, 0x5f, 0x09, 0x3b, 0x74, 0x6a, 0x64, 0x39, 0xb9, 0x4a, 0x8e, 0x28, 0x6b, 0x4d, 0xeb, 0x79, 0xfd, 0xc9,
- 0x83, 0xa0, 0x6d, 0x9f, 0x5e, 0x24, 0x7b, 0x58, 0xd3, 0x7e, 0xd9, 0x36, 0xed, 0xfd, 0x2c, 0xbc, 0x1a, 0x6f,
- 0x25, 0x6a, 0xfe, 0xfe, 0x8f, 0x6b, 0xee, 0x5d, 0x26, 0xdc, 0xf9, 0xb2, 0x38, 0x6c, 0xae, 0x62, 0x5a, 0xa0,
- 0x11, 0xe0, 0x2b, 0x18, 0xda, 0x78, 0x90, 0xc6, 0x27, 0x2d, 0x05, 0x85, 0xbb, 0x48, 0x7b, 0x5d, 0xf3, 0x5b,
- 0x55, 0xc2, 0x33, 0x80, 0xa2, 0x08, 0x7c, 0xec, 0x04, 0x13, 0xa7, 0x3f, 0x84, 0x1a, 0x20, 0x5f, 0x5f, 0x64,
- 0x80, 0xd3, 0xe4, 0x4f, 0x1d, 0x4c, 0x40, 0x17, 0xb0, 0x54, 0xc9, 0xba, 0xef, 0xe4, 0xc6, 0x1f, 0x2d, 0xc1,
- 0xa1, 0x89, 0xc6, 0x18, 0x04, 0xf1, 0x05, 0x7e, 0x01, 0x1f, 0x93, 0x35, 0x74, 0x9d, 0x36, 0x7b, 0x06, 0x54,
- 0xbe, 0x43, 0xb2, 0x30, 0xe5, 0xd9, 0x6f, 0xc5, 0x31, 0x94, 0x7e, 0x99, 0x4b, 0x26, 0xcd, 0xdf, 0x4a, 0xe0,
- 0x0e, 0x6f, 0x20, 0x75, 0x30, 0xcd, 0xa6, 0xdc, 0x86, 0x0e, 0x86, 0x9c, 0x7a, 0xed, 0x5c, 0x51, 0xa1, 0xcf,
- 0xdd, 0xe8, 0x52, 0x05, 0x62, 0x38, 0x19, 0xd3, 0x7b, 0x7c, 0x7b, 0xd2, 0x57, 0xad, 0x8a, 0xb3, 0x55, 0x61
-};
-
-// context = simple_context_pl
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x70, 0x6c, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79,
- 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x61, 0x6a, 0x20, 0x6d, 0x69, 0x20, 0x24, 0x76, 0x72,
- 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
- 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x74, 0x72, 0x75, 0x73, 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x61, 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x22, 0x00,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00,
- 0x14, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x62, 0x61,
- 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x00, 0x64, 0x61, 0x6a, 0x00, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x00,
- 0x6d, 0x69, 0x00, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79, 0x00, 0x74, 0x72, 0x75, 0x73,
- 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00,
- 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02, 0x01, 0x0d, 0x01, 0x0d, 0x1c, 0x16, 0x20, 0x03, 0x01,
- 0x09, 0x0c, 0x01, 0x0b, 0x08, 0x0d, 0x01, 0x0c, 0x08, 0x10, 0x0e, 0x0f, 0x01, 0x1f, 0x21, 0x1c, 0x0d, 0x20,
- 0x11, 0x0f, 0x15, 0x10, 0x0a, 0x01, 0x07, 0x0a, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
- 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70,
- 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
- 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_POLISH__
-
#if defined(__PV_LANGUAGE_SWEDISH__)
// wake-word = hej dator
static const uint8_t KEYWORD_ARRAY[] = {
- 0x84, 0xa9, 0x3a, 0x6e, 0x71, 0x4e, 0x5f, 0x2a, 0xa6, 0x90, 0x42, 0xa3, 0x20, 0xa6, 0xc7, 0x6a, 0x2e, 0xe8,
- 0x9b, 0xf1, 0xc3, 0x26, 0x3b, 0x5d, 0x4b, 0xec, 0xcd, 0xc8, 0x7b, 0xab, 0x82, 0xb8, 0x3e, 0xab, 0x71, 0x39,
- 0xcb, 0x65, 0x23, 0x88, 0x2e, 0xd8, 0x2f, 0x66, 0x46, 0xad, 0x09, 0x9b, 0xc0, 0x0f, 0x4e, 0x10, 0x4f, 0xf4,
- 0xb5, 0xb0, 0x53, 0xbd, 0xab, 0x02, 0xca, 0x70, 0x1c, 0xcb, 0xad, 0x8f, 0x65, 0x58, 0xa2, 0x7d, 0x5e, 0x53,
- 0xaa, 0x24, 0x6b, 0x57, 0xcf, 0x63, 0xf9, 0xfe, 0x29, 0x46, 0x68, 0x9a, 0x0c, 0x2a, 0x7b, 0xcb, 0xe8, 0x47,
- 0x12, 0x9a, 0x2b, 0x07, 0x25, 0xc5, 0x48, 0xca, 0x01, 0x19, 0x6e, 0x67, 0xe4, 0xc6, 0x62, 0xc3, 0xed, 0x7c,
- 0xbe, 0x3c, 0xe9, 0x10, 0x5c, 0x22, 0xf0, 0x5b, 0xb9, 0x91, 0x5b, 0x23, 0x07, 0x61, 0x8d, 0xdc, 0xf5, 0x04,
- 0xbc, 0x29, 0x2a, 0xab, 0xa8, 0x80, 0x73, 0xf6, 0xfb, 0x27, 0x95, 0x68, 0x42, 0x5a, 0x49, 0xa8, 0xc1, 0x62,
- 0xba, 0x5f, 0xdf, 0xa1, 0x6e, 0x26, 0xc1, 0xb2, 0xe1, 0xf4, 0xe8, 0xf7, 0x41, 0x2c, 0x1d, 0x66, 0x7d, 0xa6,
- 0x8b, 0x3a, 0x35, 0x50, 0xb9, 0xef, 0xa4, 0x80, 0xcc, 0xfc, 0xb7, 0xb9, 0x0b, 0x77, 0x2c, 0xb5, 0x7d, 0xb2,
- 0x66, 0x3f, 0x02, 0x3f, 0x9d, 0x48, 0x5c, 0x2b, 0xc1, 0xa5, 0x7b, 0xf0, 0xd3, 0xd9, 0x9b, 0x67, 0xbb, 0xcb,
- 0xbf, 0x04, 0x09, 0x95, 0x0a, 0x45, 0x6e, 0xc8, 0x53, 0x61, 0x30, 0xf6, 0xbe, 0x9e, 0xf4, 0xe0, 0x9a, 0x91,
- 0x1f, 0x6f, 0xee, 0x23, 0xc2, 0xd7, 0x10, 0x0a, 0x27, 0x17, 0xc2, 0xbf, 0x66, 0x6b, 0x2b, 0x63, 0x17, 0x04,
- 0xf9, 0xe4, 0x2d, 0xec, 0x57, 0x12, 0xcd, 0x68, 0x20, 0x24, 0x1c, 0x85, 0x19, 0xd0, 0x30, 0x31, 0x32, 0x3f,
- 0xc9, 0xbc, 0xc4, 0xb0, 0xcc, 0x61, 0xdd, 0x33, 0x24, 0xfb, 0x22, 0x3f, 0x9c, 0xcc, 0xc0, 0xb7, 0x25, 0xb0,
- 0xda, 0x99, 0x18, 0x1b, 0xb4, 0x8a, 0xea, 0x36, 0x63, 0x6c, 0xcd, 0x10, 0x94, 0x52, 0x5c, 0x3f, 0x7c, 0x0c,
- 0xfd, 0x60, 0x8d, 0xc2, 0x17, 0x75, 0x4a, 0x92, 0x3f, 0x4f, 0x5d, 0x4c, 0x49, 0x93, 0x5f, 0x23, 0x13, 0x86,
- 0xd8, 0xfb, 0xb8, 0xd0, 0x6e, 0x9c, 0xe0, 0x9c, 0x16, 0x81, 0x21, 0x38, 0x1d, 0xc8, 0xd4, 0xfd, 0x83, 0xf2,
- 0x35, 0x19, 0xf0, 0x93, 0xc2, 0xb0, 0xb3, 0xba, 0x3e, 0x2d, 0x96, 0x43, 0xeb, 0xfc, 0x3b, 0xa6, 0x71, 0x1f,
- 0x05, 0x2c, 0x0f, 0xd2, 0xf7, 0xee, 0xc9, 0xc2, 0x9a, 0x8f, 0x0b, 0x7a, 0x0a, 0xb9, 0xc7, 0xb7, 0x20, 0x31,
- 0xe2, 0x43, 0xe0, 0x6c, 0x21, 0x43, 0xf4, 0xc8, 0xad, 0x04, 0xbb, 0xc2, 0x32, 0x35, 0x33, 0x7b, 0xf3, 0x4a,
- 0x39, 0xc1, 0x3c, 0x8d, 0x2f, 0xac, 0xd4, 0x75, 0x65, 0xb4, 0xe4, 0x48, 0xef, 0xda, 0x27, 0xb9, 0x87, 0xde,
- 0xd2, 0xe7, 0x4d, 0x77, 0x6c, 0xf5, 0x2e, 0xa0, 0x3c, 0xb6, 0x67, 0x70, 0x45, 0x3d, 0x0b, 0xca, 0x2a, 0x1a,
- 0x50, 0x00, 0xce, 0x0a, 0x3c, 0x9d, 0xde, 0x74, 0x92, 0xff, 0xc7, 0x54, 0x67, 0x86, 0xca, 0xa8, 0xfa, 0x13,
- 0x2b, 0x99, 0x5e, 0xdd, 0xe4, 0x39, 0xe9, 0x52, 0x3a, 0x59, 0x65, 0x1f, 0x83, 0xbb, 0x08, 0x22, 0x6e, 0x80,
- 0x7d, 0xd1, 0x93, 0x46, 0x77, 0xa8, 0x1c, 0xa5, 0xb8, 0x7d, 0xa1, 0x7d, 0xab, 0xfb, 0xbb, 0xb4, 0x7e, 0xcb,
- 0x10, 0x40, 0x8b, 0x5d, 0xc0, 0xe1, 0x8d, 0xd2, 0x0f, 0xe6, 0xf4, 0x79, 0xfd, 0x94, 0x34, 0xfd, 0xd2, 0xd5,
- 0x2d, 0xe7, 0x7c, 0x61, 0x0a, 0xc1, 0x86, 0x6e, 0x7c, 0x94
+ 0xa7, 0x12, 0xc6, 0x64, 0xcb, 0xdb, 0xd1, 0x92, 0x24, 0x02, 0x32, 0x84, 0x1f, 0x48, 0xf7, 0x2d, 0x9c, 0x34,
+ 0x4a, 0x5e, 0x41, 0x04, 0x9e, 0x92, 0x63, 0xde, 0xe6, 0x2a, 0x86, 0x40, 0xac, 0x1f, 0x9d, 0xfe, 0x26, 0x08,
+ 0x46, 0x6c, 0xed, 0x4e, 0x24, 0xc6, 0xa5, 0xe0, 0xdf, 0xc9, 0xd6, 0x47, 0xdc, 0x55, 0x3b, 0xb7, 0x0c, 0xa6,
+ 0x20, 0xcc, 0x0e, 0x51, 0x16, 0x46, 0x44, 0xf0, 0x94, 0xd6, 0xa5, 0xb4, 0xc5, 0xa3, 0x2f, 0x3c, 0xfe, 0x0f,
+ 0xe7, 0xb8, 0x41, 0x83, 0xf6, 0x41, 0xad, 0xdf, 0x06, 0x05, 0x96, 0xcb, 0x63, 0xce, 0x53, 0x8c, 0x39, 0xac,
+ 0x0c, 0x27, 0x5a, 0x57, 0x42, 0xc3, 0x66, 0x05, 0x19, 0x3c, 0xbe, 0xf8, 0x38, 0x2f, 0x87, 0xd9, 0xba, 0x81,
+ 0x27, 0x17, 0x1c, 0x95, 0x42, 0xf0, 0x31, 0xaa, 0x19, 0xe6, 0x96, 0x1d, 0x07, 0x8f, 0x0c, 0x60, 0x7f, 0xa2,
+ 0xfa, 0x6d, 0x8e, 0xdb, 0xde, 0xed, 0x7f, 0x47, 0x0d, 0x95, 0x1f, 0x55, 0x24, 0xb0, 0xbf, 0x5c, 0x3a, 0x04,
+ 0x3f, 0x13, 0xf2, 0x9a, 0x72, 0xca, 0x19, 0xe1, 0x92, 0x23, 0x2d, 0x9a, 0x73, 0x02, 0x53, 0x37, 0xe6, 0xca,
+ 0xd4, 0x29, 0x00, 0xb5, 0x2e, 0xdb, 0xef, 0x54, 0x9b, 0x41, 0x31, 0x9f, 0x0e, 0x6a, 0x7b, 0x04, 0x95, 0x77,
+ 0xef, 0x37, 0x55, 0x67, 0xe4, 0x3c, 0xc7, 0x8a, 0x8f, 0x7f, 0x9d, 0xc1, 0x10, 0xa0, 0x2d, 0xa7, 0x07, 0xd2,
+ 0x72, 0xc7, 0x93, 0xcd, 0x7b, 0x05, 0x1c, 0x11, 0x83, 0x50, 0x0f, 0xab, 0x5f, 0x39, 0xc0, 0x54, 0x94, 0x59,
+ 0x70, 0xc3, 0x68, 0x2e, 0xd5, 0xd2, 0x8e, 0xd0, 0x01, 0xb3, 0x57, 0x0e, 0xfd, 0xc1, 0x1b, 0x2b, 0x0b, 0x54,
+ 0x73, 0xd2, 0x92, 0x4f, 0x65, 0xfa, 0xf6, 0x87, 0xb5, 0x83, 0x0d, 0x4c, 0x37, 0xf1, 0xa3, 0x5e, 0xb3, 0x66,
+ 0xd1, 0x65, 0xf0, 0xb6, 0x08, 0x60, 0xcb, 0xb7, 0xad, 0x31, 0xf1, 0xc3, 0xf2, 0xb4, 0x3f, 0x4f, 0xd5, 0x6f,
+ 0x7f, 0xc1, 0x6d, 0x50, 0xa5, 0x30, 0xae, 0x39, 0xeb, 0x9b, 0x48, 0x23, 0x46, 0x4a, 0x4c, 0x07, 0x92, 0x1d,
+ 0xce, 0x16, 0xad, 0xd4, 0xee, 0xc3, 0xb4, 0x01, 0x2c, 0x16, 0xc1, 0x84, 0xc7, 0xc2, 0x55, 0x99, 0x49, 0x31,
+ 0x68, 0xfc, 0x44, 0xbf, 0x2c, 0x2f, 0x50, 0x9b, 0xc6, 0x28, 0xf3, 0xcf, 0x16, 0xf8, 0xf2, 0xb1, 0x1e, 0xad,
+ 0x73, 0xfe, 0xd4, 0xc0, 0x17, 0xfa, 0x52, 0x9e, 0xbd, 0x01, 0xfa, 0x3c, 0xa2, 0xd7, 0x9c, 0x47, 0xb5, 0x31,
+ 0x79, 0x95, 0x29, 0x8b, 0x99, 0x51, 0x1d, 0xbf, 0x73, 0xb9, 0x1b, 0x26, 0x2a, 0xc2, 0x4a, 0x27, 0x9c, 0xb6,
+ 0x36, 0x9b, 0xe0, 0xa0, 0xde, 0xb4, 0xf6, 0x63, 0x91, 0xe8, 0xd1, 0xe2, 0xb8, 0x84, 0x89, 0x26, 0x89, 0xb1,
+ 0xe5, 0x6b, 0x6a, 0xc5, 0xdf, 0xe6, 0xae, 0xb2, 0x9b, 0x2b, 0x20, 0x80, 0x7c, 0xeb, 0x78, 0xf0, 0xd4, 0xd3,
+ 0x10, 0x8f, 0xde, 0xba, 0xca, 0x17, 0xf1, 0x17, 0x10, 0x0d, 0xcd, 0xde, 0x43, 0x1c, 0x80, 0x3f, 0x18, 0xe0,
+ 0x1c, 0x17, 0xc0, 0x46, 0xc1, 0x2d, 0x80, 0x13, 0xd9, 0x62, 0xb8, 0x83, 0x22, 0xd9, 0x2a, 0xa6, 0x22, 0x75,
+ 0xd9, 0x8a, 0xbb, 0xaa, 0x6a, 0xb6, 0x23, 0x2e, 0xb3, 0x48, 0xa0, 0x37, 0xf2, 0x38, 0xe9, 0x57, 0x12, 0x0d,
+ 0x48, 0xee, 0x63, 0x9d, 0x8c, 0x32, 0xe0, 0x55, 0x20, 0x68, 0xb5, 0xbc, 0x13, 0xc1, 0x5b, 0x20, 0x68, 0x16,
+ 0x2b, 0x27, 0xb2, 0xe1, 0xeb, 0x28, 0xa4, 0xa0, 0x8c, 0x3c, 0x8f, 0x51, 0x66, 0xc9, 0x10, 0xdf, 0x56, 0x99,
+ 0x17, 0xea, 0x70, 0x17, 0x13, 0x56, 0x6e, 0x15, 0x23, 0x73
};
// context = simple_context_sv
@@ -3259,178 +3492,178 @@ static const uint8_t CONTEXT_ARRAY[] = {
// wake-word = xin chào máy tính
static const uint8_t KEYWORD_ARRAY[] = {
- 0xa2, 0x01, 0x8a, 0xf2, 0xc4, 0xc9, 0x80, 0xb4, 0x5a, 0x2f, 0xb6, 0x8e, 0xc4, 0x89, 0x78, 0x81, 0xff, 0x0b,
- 0xee, 0xc5, 0x15, 0xfa, 0xdc, 0xf4, 0x42, 0xa4, 0xa4, 0x97, 0xb3, 0x4e, 0xd4, 0xee, 0x53, 0x20, 0x41, 0xaf,
- 0x6a, 0xfa, 0x8e, 0xcb, 0x55, 0xb5, 0x66, 0xd6, 0xa1, 0xb7, 0x85, 0xbf, 0x1a, 0x33, 0x1c, 0xd0, 0x15, 0x37,
- 0x61, 0xf2, 0x5f, 0xd5, 0x16, 0x68, 0x4c, 0x68, 0xa6, 0xb0, 0x73, 0xdc, 0x74, 0x51, 0x62, 0xcd, 0xa6, 0x98,
- 0x0f, 0x03, 0xa9, 0xa5, 0x9e, 0xbe, 0x0c, 0xfb, 0xb2, 0x8d, 0xd0, 0xd2, 0xe1, 0x4f, 0xc6, 0xb3, 0xf6, 0x26,
- 0xa9, 0x86, 0x89, 0x8d, 0x8c, 0x9e, 0x66, 0x52, 0x71, 0xba, 0xbb, 0xec, 0x2d, 0x8f, 0x55, 0xfc, 0x04, 0x66,
- 0xe5, 0xc7, 0x2c, 0x80, 0x75, 0x8d, 0xf6, 0xda, 0x06, 0x7d, 0x8a, 0x16, 0x97, 0x62, 0x75, 0x1f, 0xe0, 0x2e,
- 0xef, 0x29, 0x3c, 0x32, 0xf5, 0x4f, 0x97, 0xa8, 0xe0, 0x42, 0xa4, 0x87, 0x45, 0x74, 0x98, 0x02, 0xda, 0x72,
- 0x82, 0x46, 0x28, 0x8f, 0xd8, 0x15, 0x65, 0x41, 0xcd, 0x06, 0xe4, 0x67, 0x9f, 0x3c, 0xe3, 0x4b, 0xf6, 0x17,
- 0x3d, 0xac, 0xc3, 0xfb, 0x1b, 0x91, 0x5f, 0x8d, 0x42, 0x79, 0x85, 0x59, 0xef, 0x58, 0xbe, 0xc2, 0x6b, 0xcb,
- 0xff, 0xcf, 0x06, 0x1b, 0x85, 0x10, 0xd5, 0x48, 0x5b, 0x3a, 0x9f, 0x03, 0x7e, 0xdc, 0x89, 0xb0, 0x95, 0xea,
- 0x34, 0xa9, 0x8f, 0x25, 0x9f, 0x6b, 0xc8, 0x37, 0x50, 0x2b, 0x8f, 0x61, 0x17, 0x8e, 0xfa, 0x63, 0x61, 0x5f,
- 0x61, 0x0b, 0xa0, 0x6c, 0xbf, 0xe4, 0xca, 0xf3, 0x48, 0xaf, 0xb0, 0x16, 0xb1, 0xbd, 0x39, 0x79, 0x20, 0x7f,
- 0x1a, 0xcf, 0xc4, 0x92, 0xd2, 0xb9, 0xcb, 0x39, 0x83, 0x17, 0x06, 0x53, 0xfd, 0x51, 0xba, 0x34, 0x42, 0xe1,
- 0x2c, 0xa6, 0x43, 0x31, 0x6b, 0x8c, 0xbc, 0x66, 0x9c, 0xde, 0x43, 0xe4, 0xf3, 0x5d, 0xfd, 0x43, 0x35, 0x69,
- 0xa1, 0x01, 0x1f, 0xf0, 0x55, 0xbf, 0xda, 0x30, 0x64, 0xdf, 0xbb, 0x67, 0xd5, 0xac, 0x42, 0x95, 0xb3, 0xa2,
- 0xeb, 0xc6, 0x86, 0xa0, 0x09, 0x7f, 0xf7, 0x7a, 0x6b, 0x7a, 0x01, 0x85, 0x5b, 0x74, 0x11, 0x03, 0xac, 0xb6,
- 0xac, 0xaa, 0x8c, 0x9b, 0x6a, 0xd6, 0x29, 0x79, 0xed, 0x38, 0x2f, 0x58, 0x35, 0xc0, 0xa8, 0x76, 0xb7, 0x05,
- 0xb9, 0x36, 0x44, 0x55, 0xca, 0x89, 0xe2, 0x5e, 0x9f, 0xe0, 0x75, 0xde, 0xe9, 0xe1, 0xeb, 0x2e, 0x80, 0x5e,
- 0x72, 0xd4, 0x9e, 0x9b, 0x5b, 0x00, 0x12, 0xcc, 0x47, 0x1c, 0x67, 0xd3, 0x18, 0xa3, 0x98, 0xe9, 0xec, 0x79,
- 0x1b, 0x63, 0x18, 0x71, 0x3e, 0x4e, 0x17, 0x8d, 0x15, 0x99, 0xec, 0xb3, 0xe8, 0x79, 0x5e, 0xbd, 0x3d, 0xa8,
- 0xa2, 0xb0, 0xc1, 0xf0, 0xf3, 0x80, 0xf9, 0xb4, 0x61, 0x4d, 0x88, 0xa1, 0x75, 0x8f, 0x67, 0x4b, 0x1b, 0x13,
- 0xc3, 0x3c, 0x2d, 0x17, 0xfe, 0xe0, 0x2c, 0x76, 0xe5, 0xea, 0x08, 0xfb, 0x6f, 0x84, 0xff, 0x53, 0x39, 0x7d,
- 0xbd, 0xa4, 0x10, 0x4c, 0x23, 0x62, 0xed, 0xbf, 0x99, 0x41, 0x58, 0x48, 0x60, 0xc7, 0x8e, 0x27, 0x5d, 0x3e,
- 0x72, 0xc9, 0x5a, 0xed, 0xdb, 0xfe, 0x4f, 0x37, 0xcb, 0x16, 0x85, 0xf3, 0x3c, 0xfb, 0x56, 0xb7, 0x78, 0x96,
- 0xc4, 0xd9, 0x68, 0x28, 0x50, 0x47, 0x65, 0xde, 0x74, 0x24, 0xcd, 0xac, 0x91, 0x81, 0x5a, 0x85, 0xfb, 0x1a,
- 0x79, 0x47, 0xf8, 0x9b, 0x88, 0x1b, 0x71, 0x80, 0xb4, 0x57, 0x07, 0x12, 0xf6, 0xc3, 0xda, 0x4b, 0x9a, 0x16,
- 0x00, 0xaa, 0x96, 0x73, 0x92, 0x41, 0x77, 0xe5, 0xf2, 0xe8, 0xf6, 0xfa, 0xb7, 0x65, 0xf3, 0x72, 0xab, 0x01,
- 0xea, 0xde, 0x78, 0xb1, 0x71, 0x9a, 0x5c, 0x2c, 0x91, 0x52, 0xd1, 0x2f, 0xbb, 0x87, 0x5b, 0xa0, 0xe4, 0x64,
- 0x3a, 0x57, 0x82, 0x4f, 0xb4, 0xd6, 0x4b, 0xb6, 0x8b, 0xbb, 0xc3, 0xef, 0xcc, 0xb5, 0xfd, 0xfd, 0x8d, 0xef,
- 0xd6, 0x95, 0x1b, 0x7f, 0x92, 0xe3, 0x4c, 0x96, 0x59, 0x65, 0xc8, 0xaf, 0xdd, 0xf5, 0x6c, 0xf6, 0xba, 0xa3,
- 0x4f, 0x2d, 0x06, 0x29, 0x12, 0x19, 0xf7, 0x6f, 0xa8, 0xaf, 0x03, 0xca, 0x28, 0x8e, 0x12, 0x2e, 0x92, 0x91,
- 0xd4, 0x8b, 0x4e, 0x59, 0x5a, 0x58, 0x10, 0x6b, 0x9e, 0xc7, 0xc6, 0x98, 0x7b, 0x96, 0x9c, 0x0d, 0xfb, 0x96,
- 0x00, 0x83, 0xa3, 0x64, 0x14, 0x89, 0x7a, 0xbc, 0x7e, 0xe2, 0xe7, 0x9b, 0xec, 0x5b, 0x5d, 0x56, 0x04, 0x8b,
- 0xc9, 0xea, 0xc8, 0x6a, 0x43, 0xc0, 0xfe, 0xd4, 0x22, 0xe0, 0x82, 0x15, 0xeb, 0x75, 0x44, 0x31, 0xe6, 0x28,
- 0xe4, 0x6f, 0x45, 0x53, 0x62, 0xec, 0xbd, 0x74, 0x43, 0x4e, 0x3b, 0xfb, 0xf0, 0x4e, 0x3d, 0xa1, 0x5b, 0x8a,
- 0x53, 0x77, 0xd4, 0x03, 0xc4, 0x1d, 0x71, 0x0b, 0x59, 0x63, 0x5a, 0x0c, 0x43, 0x57, 0x69, 0xed, 0x9a, 0xee,
- 0x32, 0x75, 0x95, 0xd2, 0x66, 0x03, 0x42, 0x98, 0x99, 0xc5, 0x09, 0x99, 0x07, 0x26, 0xbf, 0x90, 0xe9, 0x23,
- 0x7c, 0x2b, 0x93, 0x8c, 0xc6, 0x85, 0xe9, 0x84, 0x55, 0x51, 0xb8, 0x99, 0xd2, 0xd6, 0xcf, 0x7d, 0x42, 0xf5,
- 0x8f, 0xc2, 0xdf, 0x5a, 0x98, 0xba, 0x72, 0xa6, 0x1c, 0x8a, 0x03, 0x56, 0x9d, 0xed, 0x29, 0x4f, 0x46, 0x55,
- 0x59, 0xd5, 0x76, 0xe5, 0xbd, 0x26, 0xe4, 0x5d, 0xea, 0x89, 0x3e, 0x3a, 0x1c, 0xde, 0x3d, 0x1d, 0x1f, 0xba,
- 0x24, 0x3e, 0x30, 0x8a, 0xe2, 0x7c, 0x5b, 0xa2, 0xe0, 0x2d, 0x36, 0x11, 0x0a, 0x0f, 0xc6, 0xf7, 0x2e, 0x1f,
- 0xd1, 0x46, 0xc7, 0x26, 0xec, 0x5c, 0x53, 0x08, 0xe8, 0x2b, 0x8a, 0x6f, 0x45, 0xc4, 0x70, 0x09, 0xb6, 0xfb,
- 0x15, 0x78, 0x8e, 0x22, 0x77, 0x00, 0x75, 0xf0, 0x86, 0xb0, 0x58, 0x69, 0xf0, 0xf2, 0xb4, 0x89, 0x6d, 0x92,
- 0x39, 0xfb, 0x35, 0xb9, 0x2d, 0x8b, 0x0a, 0xe6, 0x43, 0x65, 0xc7, 0x6b, 0xbf, 0xc2, 0xcb, 0xca, 0xbc, 0x6c,
- 0x44, 0x3c, 0x81, 0x6d, 0x89, 0xde, 0xff, 0xba, 0xc5, 0x5c, 0xbc, 0xe3, 0x0b, 0x93, 0xcb, 0xda, 0xf5, 0x23,
- 0x59, 0x11, 0xc7, 0x88, 0x68, 0x47, 0xa3, 0x75, 0xb5, 0x7a, 0x9e, 0xa0, 0xd4, 0x57, 0x22, 0x05, 0x49, 0x73,
- 0x9c, 0xff, 0x1e, 0xf2, 0x45, 0xdc, 0xd9, 0xa8, 0x20, 0x86, 0xd1, 0x0d, 0xd1, 0xf8, 0x1a, 0x9b, 0x72, 0xf3,
- 0x9f, 0x8d, 0xf1, 0x15, 0x07, 0x77, 0x2f, 0x05, 0x03, 0xd0, 0xc9, 0xf6, 0x58, 0x32, 0x7c, 0x4b, 0x60, 0x2c,
- 0x28, 0x1c, 0xf6, 0x90, 0xd2, 0xfd, 0x50, 0xc7, 0x82, 0xc2, 0x0f, 0x0a, 0xe5, 0x39, 0x54, 0xdc, 0x31, 0x80,
- 0x88, 0xaf, 0x3e, 0x0e, 0xb9, 0x10, 0xc6, 0x9a, 0xae, 0x7e, 0xe8, 0xb0, 0x88, 0x99, 0x5d, 0x8c, 0xc2, 0x42,
- 0xe9, 0x74, 0xda, 0xcd, 0xee, 0x25, 0xff, 0x48, 0x63, 0xb2, 0xa5, 0x3b, 0x0b, 0xd8, 0xb4, 0x55, 0x40, 0xe2,
- 0xfc, 0x70, 0x3b, 0x4c, 0x66, 0x06, 0xe9, 0xca, 0x69, 0xc5, 0x7c, 0x38, 0x88, 0x44, 0x54, 0x0b, 0x01, 0x69,
- 0x79, 0x5e, 0xcf, 0xe5, 0xf2, 0x73, 0xd4, 0xd4, 0x86, 0xc7, 0x69, 0x36, 0x01, 0x6b, 0x67, 0x8a, 0x29, 0x6e,
- 0xf3, 0xb6, 0x69, 0x08, 0x79, 0x49, 0x7f, 0x31, 0x09, 0x31, 0x1c, 0xbf, 0x49, 0x97, 0x1b, 0x9f, 0x35, 0x58,
- 0x97, 0x0e, 0x66, 0x7e, 0x20, 0x7e, 0x34, 0x2b, 0xb9, 0xbc, 0x94, 0x66, 0xb1, 0xb6, 0xb1, 0xe2, 0x30, 0xd7,
- 0x76, 0xe8, 0x51, 0x1a, 0x03, 0x9d, 0x35, 0x87, 0x6c, 0x4c, 0x90, 0x76, 0xaa, 0x74, 0x77, 0x7f, 0x0a, 0x62,
- 0xc2, 0x3c, 0x20, 0xab, 0x83, 0x19, 0xcf, 0x2b, 0xba, 0x0d, 0x65, 0xf9, 0x03, 0xf9, 0x55, 0xee, 0x39, 0x0f,
- 0x9d, 0xfc, 0x2a, 0x2b, 0x8c, 0x0d, 0x13, 0x3b, 0xe6, 0x8f, 0xa5, 0xfd, 0x43, 0xab, 0x62, 0xa4, 0x00, 0xe3,
- 0xeb, 0x65, 0x93, 0x81, 0xce, 0x11, 0x8b, 0x04, 0xe6, 0x30, 0xd0, 0xd2, 0xa5, 0x83, 0x9c, 0x33, 0x0a, 0x8e,
- 0x3d, 0xb0, 0xeb, 0x4b, 0x3c, 0x92, 0xe4, 0xc1, 0xc6, 0x48, 0xe2, 0xa6, 0x6e, 0x8a, 0x3c, 0xd9, 0xf2, 0xa0,
- 0x05, 0xc4, 0x16, 0x9b, 0x47, 0x7b, 0xab, 0xb7, 0xea, 0x1f, 0x14, 0x34, 0xff, 0x71, 0x33, 0x13, 0xfc, 0x78,
- 0x77, 0x0c, 0xf4, 0x3c, 0xcf, 0xc3, 0x36, 0xbc, 0x51, 0x66, 0x89, 0xf7, 0xa1, 0x6f, 0x35, 0x20, 0xf3, 0x1b,
- 0x14, 0xd9, 0xf8, 0x9a, 0x8c, 0x75, 0x87, 0x9a, 0x21, 0x3f, 0xc0, 0xf8, 0x54, 0xc1, 0x7c, 0x96, 0x0c, 0x79,
- 0xd4, 0x41, 0x79, 0x29, 0x18, 0xf8, 0xcf, 0xab, 0xe8, 0xb9, 0x01, 0xaf, 0x7b, 0xf8, 0x90, 0xa7, 0xb0, 0x34,
- 0x75, 0xad, 0x85, 0xfd, 0x00, 0x26, 0x08, 0x13, 0xb6, 0xed, 0x11, 0x2c, 0x09, 0x10, 0x43, 0x3a, 0x49, 0xe4,
- 0xf6, 0x0e, 0x44, 0xaa, 0x55, 0x7b, 0xe9, 0xff, 0x97, 0x23, 0xb1, 0xbf, 0x7d, 0xc2, 0x17, 0xbe, 0xe4, 0x1a,
- 0x4a, 0xe9, 0x8f, 0xb3, 0xe7, 0xa6, 0xdd, 0xba, 0xde, 0x2d, 0x97, 0x2f, 0x1e, 0x37, 0xf5, 0x87, 0xf2, 0x3d,
- 0x26, 0x98, 0x27, 0x2c, 0xae, 0xb7, 0xd8, 0x04, 0x57, 0x14, 0x2a, 0xa1, 0xce, 0x53, 0x5a, 0x62, 0x16, 0xbe,
- 0x75, 0x94, 0x18, 0x08, 0x6f, 0x2a, 0xc5, 0xdb, 0x3e, 0x1d, 0x09, 0xca, 0xd5, 0x53, 0x0d, 0x0a, 0x25, 0x62,
- 0x47, 0x22, 0xfd, 0x18, 0xc0, 0x0e, 0x5d, 0xdb, 0x60, 0x12, 0x2d, 0xaa, 0x12, 0x83, 0xbd, 0x1e, 0x8c, 0xb2,
- 0x38, 0xd9, 0x93, 0x6f, 0x05, 0x98, 0xbc, 0x81, 0x50, 0x48, 0xf6, 0xe4, 0x8e, 0x5d, 0xcb, 0xbd, 0xcc, 0x52,
- 0x28, 0xc3, 0x8b, 0xc6, 0x0c, 0x0f, 0x7d, 0x57, 0x8e, 0xf3, 0x75, 0xce, 0xed, 0x4c, 0xa5, 0x9f, 0x2c, 0x69,
- 0xe4, 0x8b, 0x07, 0x79, 0x61, 0x9d, 0xb9, 0xa1, 0x2d, 0xf8, 0xa1, 0x59, 0x04, 0x63, 0x24, 0x2c, 0xad, 0xa3,
- 0x8f, 0x7c, 0x43, 0xb6, 0x25, 0x25, 0xc9, 0x26, 0x8c, 0x04, 0x5c, 0xd8, 0x73, 0x8f, 0x54, 0xaa, 0xc8, 0xf1,
- 0xb8, 0x25, 0x5a, 0xa0, 0x6c, 0xf2, 0x22, 0xda, 0x31, 0x26, 0x2f, 0x83, 0xf7, 0xef, 0x1c, 0x30, 0x66, 0xee,
- 0x1d, 0x1c, 0x35, 0x8e, 0x6a, 0x17, 0x70, 0xc3, 0xbc, 0x0b, 0xa8, 0xfa, 0x8c, 0xc8, 0xda, 0x53, 0x8d, 0x42,
- 0xb0, 0xda, 0x87, 0x8a, 0xe4, 0xd8, 0x43, 0xe2, 0xa1, 0x3f, 0x81, 0xe6, 0x57, 0xb1, 0x17, 0x1a, 0xf6, 0xb5,
- 0xe2, 0xeb, 0x1d, 0x6f, 0x3c, 0xef, 0x20, 0xf6, 0x70, 0x9b, 0xcb, 0x69, 0x5c, 0x85, 0xb6, 0xbd, 0x8a, 0xa6,
- 0xf2, 0x57, 0xb1, 0x09, 0x12, 0x6e, 0x8a, 0xcb, 0x99, 0x42, 0xdf, 0x13, 0x05, 0x74, 0x3f, 0x30, 0xc1, 0x8b,
- 0xec, 0x10, 0xb8, 0x83, 0x89, 0xa2, 0x00, 0x62, 0x78, 0xf1, 0xbd, 0xb1, 0xe4, 0xd1, 0x5c, 0x1f, 0x1a, 0x62,
- 0x23, 0xb2, 0xb9, 0x49, 0xd7, 0x04, 0x3d, 0xa8, 0xcd, 0x20, 0xbd, 0x4b, 0xc5, 0x9e, 0x95, 0x89, 0x56, 0x42,
- 0xc6, 0xcf, 0x00, 0x4b, 0x43, 0xa8, 0xaa, 0x62, 0x0a, 0xa3, 0xac, 0xe6, 0x1b, 0x81, 0xae, 0x47, 0x2d, 0x01,
- 0x33, 0x31, 0x09, 0x93, 0x90, 0x48, 0x15, 0xb9, 0x26, 0x08, 0x7f, 0xa0, 0xf2, 0xb2, 0x9e, 0x62, 0xdf, 0x4a,
- 0xc9, 0x5f, 0x84, 0x8c, 0x40, 0xe8, 0x28, 0xa7, 0x0d, 0x28, 0xb0, 0x4b, 0x1c, 0x53, 0xb7, 0x70, 0x13, 0x5f,
- 0x1b, 0xd7, 0xd3, 0x08, 0xce, 0x5e, 0x7c, 0x2a, 0x35, 0x40, 0x8c, 0xed, 0xbf, 0x83, 0x59, 0x27, 0x99, 0x8e,
- 0x1d, 0xd4, 0x38, 0xba, 0x63, 0x8e, 0x31, 0xc1, 0xc8, 0x08, 0xba, 0x12, 0x1f, 0x31, 0x15, 0xcb, 0x5f, 0x4a,
- 0x11, 0xc3, 0x4a, 0x15, 0xcb, 0xe9, 0xc9, 0x29, 0xd9, 0x38, 0x7e, 0xf9, 0xd0, 0x9d, 0xde, 0x97, 0xce, 0x6f,
- 0xfb, 0x3f, 0x35, 0x56, 0x5f, 0xa0, 0xbe, 0xd0, 0x46, 0xb1, 0x48, 0x7f, 0xbe, 0x5b, 0x59, 0xa8, 0x19, 0xb8,
- 0x08, 0x13, 0x46, 0x2e, 0x25, 0x33, 0xd7, 0x5c, 0xc4, 0xb1, 0xe1, 0xa3, 0xe5, 0xf0, 0x99, 0x24, 0x02, 0xfc,
- 0x4f, 0x92, 0x74, 0x9f, 0x45, 0x85, 0x63, 0xf3, 0xb0, 0xad, 0x19, 0x6e, 0x79, 0xae, 0x9c, 0x50, 0x25, 0xb4,
- 0x53, 0xde, 0xd0, 0xd2, 0xfd, 0x0b, 0x0a, 0x06, 0x3c, 0x49, 0x89, 0x78, 0xcf, 0x70, 0xdd, 0x5c, 0xaa, 0x5a,
- 0xed, 0x96, 0xd3, 0x47, 0xa6, 0x3a, 0xd2, 0xd3, 0xbb, 0xf1, 0x63, 0xa7, 0x6f, 0x07, 0xb5, 0x68, 0xf2, 0x39,
- 0x62, 0x24, 0xca, 0x19, 0x74, 0xa1, 0xa7, 0xec, 0x55, 0xd6, 0x15, 0x44, 0xfc, 0xe3, 0xb7, 0x5d, 0x5e, 0xec,
- 0xba, 0x34, 0x39, 0xbd, 0xfe, 0xe0, 0x79, 0xd8, 0x84, 0x66, 0x6b, 0x62, 0xc1, 0x85, 0xf4, 0xad, 0x4e, 0xa4,
- 0x10, 0xb7, 0xa7, 0x10, 0x3b, 0x13, 0x2c, 0x3f, 0x38, 0x0e, 0x15, 0xa8, 0x55, 0x3c, 0xaa, 0x11, 0xe9, 0x03,
- 0x6a, 0x8c, 0xb4, 0x95, 0x82, 0x1c, 0x89, 0x35, 0x4f, 0x5e, 0xff, 0x38, 0x89, 0x95, 0x92, 0x0e, 0xc0, 0x0b,
- 0x92, 0x48, 0x3a, 0x5b, 0x05, 0xd2, 0x95, 0x15, 0x71, 0x3e, 0x60, 0xc8, 0x91, 0x03, 0x06, 0x5f, 0x61, 0xa3,
- 0x6f, 0x15, 0x65, 0xfc, 0xd8, 0x4a, 0x42, 0xd0, 0xcf, 0x7e, 0x1b, 0x16, 0x2c, 0x84, 0x3a, 0x6e, 0xef, 0x4e,
- 0x51, 0x47, 0x67, 0x83, 0x32, 0x00, 0xaa, 0x26, 0xb6, 0x84, 0x6f, 0x62, 0xe0, 0x3e, 0xb7, 0xfa, 0xf8, 0x10,
- 0xf3, 0x61, 0xaa, 0xd4, 0x5f, 0x53, 0xfe, 0xeb, 0x32, 0x38, 0xaf, 0x8a, 0x88, 0x29, 0x9a, 0x2a, 0x7a, 0x49,
- 0x1c, 0x72, 0xfa, 0x32, 0x75, 0x82, 0xee, 0xb2, 0x01, 0xc9, 0x22, 0x4e, 0xa2, 0x03, 0x31, 0xa0, 0x0c, 0xaa,
- 0xd7, 0x22, 0x9f, 0x11, 0x09, 0xd8, 0xf6, 0x5b, 0xa0, 0xd7, 0x98, 0x2b, 0xf6, 0xd1, 0x1e, 0xbb, 0x47, 0xef,
- 0xdc, 0x48, 0xec, 0xff, 0x24, 0x46, 0x77, 0xdc, 0xf3, 0xfc, 0xa5, 0xee, 0x9a, 0x7c, 0x26, 0xd7, 0x27, 0x09,
- 0xf4, 0x67, 0x17, 0xda, 0x37, 0x8c, 0x1f, 0xef, 0xc6, 0xc4, 0x4c, 0x36, 0x8a, 0x25, 0x14, 0xb2, 0xe3, 0xa1,
- 0x2e, 0xd3, 0x0b, 0x70, 0x6a, 0x51, 0x8e, 0x46, 0x27, 0x18, 0x1a, 0x79, 0xbf, 0x5a, 0xd7, 0x18, 0x5d, 0x13,
- 0xea, 0x1d, 0xd7, 0xf4, 0x18, 0x3d, 0xc4, 0x0e, 0x0f, 0xb1, 0x9c, 0xfe, 0x77, 0xb4, 0x23, 0x02, 0x36, 0x8f,
- 0x30, 0x46, 0xf8, 0x16, 0x41, 0xce, 0xb1, 0x04, 0xee, 0x51, 0xa6, 0x23, 0x03, 0x79, 0xcf, 0xff, 0x52, 0xf0,
- 0x0e, 0x67, 0xe8, 0xe5, 0x1d, 0x3e, 0x8a, 0x32, 0x34, 0x79, 0x93, 0x5e, 0xdc, 0xa7, 0x4f, 0x7d, 0x74, 0x48,
- 0x3b, 0xf5, 0x01, 0xd6, 0x8f, 0x74, 0x39, 0x45, 0x96, 0xb7, 0x07, 0x94, 0xc1, 0x17, 0x40, 0xfb, 0xa2, 0xa6,
- 0x31, 0x67, 0x06, 0xfa, 0xbb, 0xbe, 0x15, 0x81, 0xae, 0xa2, 0x7d, 0xf1, 0xe7, 0xb2, 0x1a, 0xa2, 0x98, 0x83,
- 0x3f, 0x8c, 0x17, 0x65, 0xf9, 0x79, 0x6d, 0x17, 0x9a, 0x22, 0x93, 0x2a, 0x42, 0x67, 0x8c, 0xbb, 0x59, 0x5b,
- 0xa3, 0x2e, 0xbe, 0xa1, 0xc2, 0xaf, 0xa5, 0xc8, 0xa4, 0x6e, 0x79, 0x5c, 0x09, 0x2d, 0xd9, 0x12, 0xa6, 0xa7,
- 0xf8, 0x5f, 0x79, 0x33, 0x0b, 0x3e, 0x36, 0xf6, 0xac, 0x11, 0xd3, 0xe8, 0xd2, 0xc3, 0x6b, 0xfb, 0xbe, 0x5e,
- 0xba, 0x4f, 0x5e, 0xf0, 0xbb, 0x5d, 0x65, 0x26, 0x40, 0x74, 0x51, 0xdd, 0x83, 0x19, 0x1b, 0x8f, 0x31, 0x3f,
- 0xab, 0x53, 0xcd, 0xd6, 0xa6, 0x1e, 0x0e, 0x51, 0xae, 0x98, 0x86, 0x04, 0x56, 0x37, 0xa9, 0x8b, 0xe7, 0x54,
- 0x21, 0x73, 0x82, 0x06, 0x89, 0xa2, 0x3c, 0x72, 0x38, 0xba, 0x98, 0xf2, 0x07, 0x9b, 0x65, 0x1e, 0x37, 0x92,
- 0xf8, 0x38, 0xbb, 0xbe, 0x35, 0xed, 0x2b, 0x28, 0x3d, 0xe3, 0xd9, 0x36, 0x08, 0xc9, 0xf4, 0xe6, 0x19, 0xaf,
- 0x6c, 0xbf, 0x80, 0xd4, 0x1b, 0xda, 0x2c, 0x49, 0x62, 0xd5, 0x05, 0xc6, 0x4d, 0x6d, 0xc2, 0xf2, 0x37, 0xa7,
- 0x7a, 0x2b, 0x06, 0x15, 0x6b, 0x8c, 0x6d, 0xef, 0x1e, 0xf9, 0xe1, 0xdc, 0xce, 0xd1, 0x21, 0xa4, 0x19, 0xcc,
- 0xa1, 0x1e, 0x44, 0xa3, 0x9c, 0x7d, 0xe5, 0x52, 0xe5, 0xad, 0xfc, 0xdd, 0x02, 0xfb, 0x13, 0x31, 0xbc, 0x04,
- 0x7b, 0x4c, 0x79, 0xff, 0x01, 0xc4, 0x94, 0xcb, 0x17, 0xc8, 0x4c, 0xe3, 0x55, 0x22, 0xd7, 0xba, 0xc1, 0x1d,
- 0x44, 0xe5, 0x96, 0x17, 0xc4, 0x2d, 0x66, 0xf4, 0x5e, 0x72, 0xc3, 0x84, 0x15, 0xd9, 0x91, 0x79, 0xb7, 0x4b,
- 0x7a, 0x85, 0x8a, 0xa7, 0x80, 0x5c, 0x59, 0xa3, 0x0a, 0x38, 0x4d, 0xa6, 0x36, 0x15, 0x5b, 0xd2, 0x8f, 0x2c,
- 0xd2, 0x6f, 0x07, 0xa8, 0x75, 0xc1, 0x29, 0x22, 0x90, 0x3b, 0x57, 0x34, 0x0e, 0x01, 0x88, 0x45, 0xad, 0xed,
- 0x9a, 0x4f, 0x83, 0x9a, 0xf4, 0x46, 0xcf, 0x48, 0xcf, 0x3c, 0x27, 0x10, 0xf5, 0x8d, 0xfa, 0x66, 0x37, 0x86,
- 0x3b, 0xe0, 0x64, 0x7b, 0xd6, 0x36, 0x32, 0x6b, 0x35, 0x5c, 0xdd, 0x03, 0x62, 0x39, 0xf8, 0x73, 0xe3, 0xd9,
- 0x87, 0x90, 0x2b, 0xe4, 0x0d, 0xca, 0xc1, 0x2d, 0x20, 0xaf, 0x38, 0x11, 0xe7, 0x05, 0x10, 0xb5, 0x43, 0x9b,
- 0x43, 0xd5, 0xc7, 0x15, 0x16, 0xa9, 0x58, 0x4a, 0xaa, 0xd1, 0xb6, 0xdd, 0xe0, 0x50, 0x52, 0xdb, 0xee, 0x38,
- 0x7c, 0xa0, 0x23, 0x61, 0xbb, 0x33, 0x2b, 0x1a, 0x91, 0xa3, 0x86, 0x5e, 0xb6, 0xae, 0xf3, 0xbc, 0xf2, 0x09,
- 0x61, 0xd9, 0x32, 0x8d, 0x1c, 0x06, 0xa2, 0x7f, 0xdd, 0x6b, 0x80, 0x0f, 0x29, 0x71, 0x84, 0x9d, 0x14, 0xe6,
- 0x7a, 0xae, 0x34, 0x90, 0x93, 0x98, 0x97, 0x20, 0xd1, 0xaa, 0xcf, 0xad, 0x6d, 0x78, 0x93, 0x82, 0x65, 0x6d,
- 0x47, 0x77, 0x00, 0x2e, 0x23, 0x49, 0xd1, 0xe1, 0xc2, 0x0c, 0x32, 0xeb, 0x07, 0x35, 0xa6, 0xe9, 0x15, 0xab,
- 0x10, 0xa8, 0x51, 0xc7, 0xc2, 0x50, 0x2d, 0xd5, 0x58, 0x0b, 0x2f, 0xad, 0x02, 0x20, 0x96, 0xb4, 0xb4, 0xfb,
- 0x9c, 0x09, 0xa7, 0x1e, 0xfe, 0x87, 0xa0, 0xfe, 0xe5, 0x64, 0x40, 0xff, 0x5a, 0x3c, 0xed, 0xe0, 0x1c, 0xe3,
- 0xfc, 0xb1, 0x99, 0x66, 0x4f, 0xe3, 0xae, 0x60, 0xef, 0xaf, 0xcc, 0x35, 0x5a, 0x06, 0xe9, 0x7a, 0x0d, 0x94,
- 0x62, 0xe6, 0x37, 0xb1, 0x5b, 0xf7, 0x35, 0x24, 0x96, 0x4f, 0x47, 0xb7, 0x9a, 0xfa, 0x0d, 0x91, 0x30, 0xa9,
- 0x38, 0x65, 0xa6, 0xd9, 0x13, 0x69, 0x2b, 0x2b, 0x51, 0x1a, 0x8e, 0xb5, 0xb4, 0x59, 0xde, 0x24, 0xa9, 0xbb,
- 0xe7, 0xc6, 0x37, 0x48, 0x52, 0x41, 0xe1, 0x0a, 0x01, 0x2b, 0x8a, 0x72, 0xee, 0xc9, 0xc1, 0x49, 0xed, 0xa7,
- 0x2a, 0x14, 0xd3, 0x91, 0x44, 0xef, 0x42, 0x14, 0x7f, 0xeb, 0xf6, 0x5c, 0x63, 0x9a, 0x45, 0x03, 0x2f, 0x88,
- 0x90, 0xcb, 0x95, 0x55, 0x61, 0x33, 0x36, 0x34, 0x97, 0x80, 0x1e, 0xb2, 0x0b, 0x46, 0x37, 0xa9, 0xb5, 0xb2,
- 0xb0, 0xee, 0xda, 0x70, 0x95, 0x26, 0x6e, 0x63, 0x1c, 0x24, 0x69, 0xe7, 0xc3, 0xe1, 0xe0, 0xc1, 0x36, 0x03,
- 0x24, 0x48, 0x99, 0xb4, 0x12, 0x39, 0x85, 0xc9, 0x99, 0xa2, 0x6a, 0x99, 0x22, 0x69, 0xb2, 0xe1, 0x85, 0x6f,
- 0xd9, 0x26, 0x27, 0x09, 0xa0, 0xdc, 0x50, 0x00, 0xba, 0x5b, 0xc0, 0xa8, 0x5c, 0xb4, 0xf9, 0x0e, 0x7f, 0xe4,
- 0x9e, 0xf3, 0xf8, 0xc7, 0x58, 0x9e, 0xad, 0x73, 0x44, 0x16, 0x03, 0x21, 0x57, 0xbb, 0x38, 0xde, 0x63, 0xb1,
- 0xa7, 0x9f, 0xd4, 0x64, 0x04, 0xce, 0x7e, 0xfe, 0x07, 0xcd, 0xac, 0x63, 0xba, 0x57, 0x7a, 0x07, 0x86, 0x5f,
- 0x15, 0x5d, 0x84, 0x28, 0x66, 0xc1, 0x5b, 0x83, 0x2e, 0x77, 0xa8, 0x61, 0x35, 0x2b, 0x2d, 0x50, 0xf2, 0x41,
- 0xa4, 0x94, 0x7f, 0x19, 0xdf, 0xc4, 0xe6, 0x97, 0xc7, 0x4c, 0xd3, 0xd1, 0x6d, 0x4b, 0xab, 0x49, 0xee, 0x6e,
- 0x1f, 0xdf, 0x3f, 0xa8, 0x4b, 0x38, 0xdb, 0xb6, 0xca, 0x5f, 0x75, 0xd5, 0xac, 0x2c, 0x89, 0x2c, 0xf2, 0xa4,
- 0x3c, 0x88, 0x7b, 0x0e, 0x5f, 0xa6, 0x47, 0xbe, 0xca, 0x5a, 0x13, 0x20, 0x5a, 0x67, 0x8f, 0xcd, 0xbd, 0xaf,
- 0x8d, 0x2b, 0x32, 0xb5, 0x43, 0xa4, 0x5c, 0xfe, 0xe8, 0xe8, 0xd1, 0x29, 0x04, 0xb9, 0xbe, 0x73, 0x2e, 0x77,
- 0xa0, 0x1c, 0xac, 0xb2, 0x73, 0x78, 0x90, 0x0d, 0xd6, 0x28, 0x46, 0xe8, 0x74, 0xf8, 0xdd, 0x51, 0x59, 0x25,
- 0xd7, 0x5f, 0x58, 0xe2, 0x0c, 0x28, 0xcc, 0x9a, 0x2b, 0x90, 0xad, 0x0c, 0x43, 0xa1, 0x88, 0x46, 0xe5, 0xf6,
- 0xb6, 0xac, 0xbb, 0x97, 0x52, 0xb1, 0x09, 0x7b, 0x5b, 0x4d, 0x7a, 0xe4, 0xc2, 0xf6, 0x4d, 0xd6, 0x19, 0xb3,
- 0x64, 0xe6, 0x7e, 0xf2, 0xb6, 0x9b, 0xda, 0x60, 0x64, 0x91, 0x7a, 0xb3, 0x0a, 0x32, 0xff, 0x75, 0x62, 0xe7,
- 0x03, 0xfa, 0x2f, 0x34, 0xc8, 0xdc, 0x24, 0x40, 0xe0, 0x93, 0x19, 0x7b, 0x31, 0x23, 0x23, 0x16, 0xcd, 0x3b,
- 0xf2, 0x3d, 0x7e, 0x00, 0xb3, 0xad, 0x5e, 0x19, 0x16, 0x2c, 0xe4, 0xef, 0xc8, 0x8e, 0x6c, 0x83, 0x40, 0x69,
- 0xbf, 0x80, 0x33, 0xdf, 0xbf, 0xaf, 0x48, 0xe5, 0x1f, 0xfd, 0x7c, 0xbf, 0x4c, 0xed, 0xf8, 0x4b, 0xe0, 0x11,
- 0xeb, 0x0e, 0xdc, 0xd4, 0xd6, 0x09, 0x85, 0x59, 0x28, 0x21, 0xe5, 0x8f, 0xda, 0x5f, 0x4a, 0xaa, 0x44, 0x62,
- 0x7e, 0x8c, 0xb4, 0xa6, 0x80, 0xf5, 0xca, 0x9d, 0xe6, 0x59, 0xc6, 0xd8, 0x44, 0x09, 0x6a, 0x24, 0x03, 0x4a,
- 0xee, 0x32, 0x9d, 0xf8, 0x1b, 0x49, 0xb7, 0x90, 0x70, 0x91, 0xb2, 0x0f, 0x8e, 0xe4, 0x2b, 0xc0, 0xbd, 0x2f,
- 0x71, 0x11, 0x4c, 0xd3, 0xb8, 0x39, 0xf1, 0x3a, 0x10, 0xb6, 0x36, 0x89, 0x84, 0x5b, 0xdd, 0x5f, 0xd1, 0xe0,
- 0xbd, 0x4a, 0x02, 0x2a, 0x5c, 0x67, 0xd7, 0xc1, 0x07, 0x4d, 0xe2, 0xc1, 0xab, 0xa9, 0xc3, 0x69, 0x85, 0x8d,
- 0xff, 0x63, 0x7d, 0x36, 0xb6, 0x9f, 0xe2, 0x41, 0x49, 0x36, 0x70, 0xa3, 0x03, 0x95, 0x93, 0x90, 0x77, 0x33,
- 0x0a, 0xed, 0xa8, 0x8b, 0x7e, 0x32, 0x2a, 0x95, 0x2e, 0x11, 0x25, 0xc9, 0x40, 0x9c, 0x6e, 0x61, 0x8f, 0x6f,
- 0x52, 0x2b, 0x7f, 0xc4, 0x07, 0xde, 0x34, 0xb8, 0x43, 0x1c, 0xc5, 0x91, 0xc2, 0xc6, 0xba, 0x47, 0x27, 0x2e,
- 0x3f, 0xda, 0x48, 0xac, 0xca, 0x94, 0x56, 0x0e, 0x88, 0xb1, 0x9c, 0x98, 0xd6, 0xd2, 0x48, 0xbb, 0xa8, 0xdb,
- 0x03, 0xc1, 0x0a, 0xba, 0x3d, 0x77, 0xb3, 0xa4, 0xf0, 0x18, 0x4e, 0x9d, 0x69, 0xaa, 0x85, 0x06, 0xa4, 0xd6,
- 0x58, 0x94, 0xab, 0xf9, 0x11, 0x78, 0x78, 0x70, 0xf8, 0x07, 0xce, 0x8b, 0xc0, 0xd0, 0xac, 0x70, 0xae, 0x52,
- 0xd4, 0xc2, 0x32, 0xd2, 0xac, 0xc1, 0xcd, 0xc4, 0xda, 0xa2, 0x8e, 0x39, 0xc6, 0x68, 0x47, 0x6a, 0xb2, 0xcd,
- 0x2e, 0x63, 0x20, 0xa9, 0x32, 0x66, 0xbd, 0xe6, 0x6c, 0xd1, 0xe0, 0x91, 0xae, 0x3f, 0x89, 0x51, 0xcb, 0x86,
- 0xa4, 0x01, 0x37, 0x2c, 0xba, 0x96, 0xfc, 0x6f, 0x44, 0x3b, 0x58, 0xdd, 0x99, 0x24
+ 0x9e, 0x9b, 0x1e, 0x97, 0x9e, 0x6d, 0x82, 0xbf, 0x64, 0xfc, 0x7d, 0x2c, 0x5f, 0xdb, 0xd5, 0x00, 0xa0, 0x1e,
+ 0x86, 0x1c, 0x79, 0x3e, 0xf5, 0xb3, 0xce, 0x0b, 0xcc, 0x53, 0xce, 0x26, 0x35, 0x94, 0xbb, 0xdc, 0xf3, 0xa9,
+ 0x1c, 0x43, 0x70, 0xc9, 0xd9, 0xc3, 0xe3, 0x6d, 0xdd, 0x7c, 0x60, 0xb1, 0x64, 0x08, 0x41, 0x4f, 0x72, 0x70,
+ 0x29, 0x2b, 0xc2, 0x8e, 0x85, 0x7d, 0xae, 0x17, 0x55, 0x4d, 0x22, 0x56, 0x2b, 0x0c, 0xdf, 0x18, 0xf7, 0xfa,
+ 0x4c, 0x54, 0x6a, 0x03, 0xf8, 0x2c, 0xd4, 0x9e, 0x88, 0xd8, 0x31, 0xb9, 0xa0, 0x09, 0xdb, 0x5a, 0xae, 0xbd,
+ 0xc3, 0x04, 0x59, 0x49, 0x16, 0x1c, 0xaa, 0xda, 0xcd, 0x2a, 0xb3, 0x6f, 0xd2, 0x92, 0xb5, 0x86, 0x05, 0x57,
+ 0xfb, 0xc9, 0x8a, 0x72, 0x82, 0x05, 0xd4, 0xda, 0x58, 0xf0, 0x2e, 0xac, 0xbc, 0xd6, 0x81, 0xfc, 0x67, 0xfb,
+ 0x49, 0xcc, 0x0a, 0xed, 0xbf, 0xe9, 0x28, 0xa7, 0x65, 0xab, 0x73, 0x19, 0xbe, 0x22, 0xe7, 0xac, 0xb9, 0x48,
+ 0xad, 0x0b, 0x3d, 0xb2, 0xf9, 0x5a, 0x9c, 0x67, 0x4e, 0x08, 0x7d, 0x9c, 0x97, 0xab, 0x52, 0xee, 0x13, 0x16,
+ 0xe2, 0x7c, 0x0c, 0xa6, 0xee, 0xea, 0xbc, 0xe4, 0xe3, 0xcb, 0x82, 0x96, 0xa6, 0x74, 0xaa, 0xb3, 0xe2, 0xca,
+ 0xa3, 0xf7, 0x0a, 0xac, 0x13, 0xbd, 0xd6, 0x9f, 0x6c, 0xf3, 0xbc, 0x9a, 0x73, 0xa5, 0xaa, 0x84, 0x16, 0x03,
+ 0x41, 0x64, 0xd0, 0xc3, 0x4b, 0x01, 0x1e, 0x9b, 0x95, 0x0d, 0x95, 0xa7, 0x53, 0x86, 0xbb, 0x77, 0xb3, 0x2e,
+ 0xaa, 0xa6, 0x93, 0x99, 0x4f, 0x75, 0xb5, 0x8d, 0xc5, 0x5d, 0xa6, 0x3b, 0x71, 0x20, 0xe4, 0x2d, 0x0c, 0xfc,
+ 0x57, 0xfc, 0x33, 0x76, 0x0b, 0x5d, 0xdf, 0x61, 0x80, 0x50, 0x22, 0x2e, 0x30, 0xd6, 0x65, 0xd1, 0x8a, 0xe4,
+ 0x54, 0xf2, 0xc8, 0xa1, 0xc0, 0x2d, 0xed, 0x5a, 0xeb, 0x30, 0x9d, 0x8d, 0xf9, 0xde, 0xd2, 0x47, 0x71, 0x73,
+ 0xd4, 0x77, 0x76, 0xad, 0xc4, 0x5c, 0x32, 0x49, 0xbc, 0xcc, 0xa7, 0xcb, 0xde, 0x4f, 0x2d, 0x0c, 0x4d, 0xaa,
+ 0x9b, 0x6c, 0xf1, 0x49, 0xdd, 0x3a, 0xd3, 0x89, 0xaf, 0x6f, 0x14, 0x33, 0xc0, 0x40, 0xce, 0xb7, 0x1d, 0x6c,
+ 0xe1, 0x28, 0x78, 0x12, 0x1b, 0xc0, 0xd9, 0x1e, 0xa1, 0x14, 0x4e, 0xae, 0x1d, 0x8a, 0x79, 0x1f, 0xf4, 0x3e,
+ 0x21, 0x56, 0x5e, 0xb1, 0x90, 0x63, 0x28, 0xc1, 0xcf, 0xb4, 0xf9, 0xf4, 0x50, 0x51, 0xd2, 0xeb, 0xbe, 0x29,
+ 0xe7, 0xeb, 0x15, 0x06, 0xb7, 0x99, 0x01, 0xe5, 0x25, 0xd4, 0x3f, 0x8a, 0x5a, 0x17, 0xc1, 0x4a, 0x87, 0x18,
+ 0x16, 0x3e, 0xaf, 0xe4, 0xc7, 0x75, 0x4b, 0x95, 0x68, 0x9f, 0x50, 0x28, 0xd1, 0x8a, 0x87, 0x5d, 0x0a, 0x7a,
+ 0x0d, 0xfa, 0x95, 0xa7, 0xce, 0x05, 0x85, 0xe6, 0xf3, 0x34, 0x82, 0xac, 0x73, 0xf8, 0xc4, 0x7c, 0x6b, 0x9a,
+ 0x52, 0xcb, 0x99, 0x41, 0xfc, 0x40, 0xac, 0xf8, 0x08, 0x4c, 0x16, 0x4c, 0x4c, 0x8d, 0x15, 0x0b, 0x04, 0xbe,
+ 0x8e, 0x09, 0xa0, 0xe9, 0x30, 0x0e, 0xd5, 0x61, 0xf7, 0x95, 0xcd, 0x88, 0x35, 0x0a, 0x7c, 0x1b, 0x67, 0x8c,
+ 0xe1, 0xb8, 0x2c, 0x91, 0xa1, 0x12, 0x03, 0x3c, 0xef, 0xd2, 0x30, 0x38, 0x75, 0x2a, 0x7c, 0xb2, 0xab, 0xaa,
+ 0x68, 0x7e, 0xff, 0xd4, 0xdb, 0xb9, 0x17, 0xca, 0x6a, 0x96, 0x19, 0xdb, 0x15, 0xd1, 0x46, 0xe2, 0xf8, 0xe6,
+ 0x3f, 0x9a, 0xdf, 0x29, 0xa9, 0x96, 0xbd, 0xb1, 0x9c, 0xa3, 0x2e, 0x42, 0x62, 0x64, 0xd4, 0xc2, 0x84, 0xec,
+ 0x82, 0x0e, 0x3b, 0x2f, 0x03, 0x3e, 0x2f, 0x18, 0x79, 0x17, 0x5a, 0xff, 0x08, 0x74, 0x39, 0xdc, 0x0e, 0x1f,
+ 0x26, 0x20, 0x6b, 0xde, 0x12, 0x62, 0x1a, 0x22, 0xde, 0xab, 0xa4, 0x0c, 0x4f, 0x8c, 0xf8, 0xec, 0x61, 0xae,
+ 0xce, 0x24, 0x25, 0xc4, 0x1f, 0x81, 0x8a, 0xff, 0x8a, 0x12, 0x7a, 0x43, 0x1c, 0x72, 0xa0, 0xf6, 0x37, 0x45,
+ 0x84, 0x5f, 0x27, 0x00, 0xb4, 0xb9, 0xb6, 0xc8, 0x09, 0x14, 0xe9, 0x17, 0x3b, 0xef, 0x85, 0xc6, 0x0e, 0xa1,
+ 0x08, 0x0f, 0x22, 0xbf, 0x17, 0xf5, 0x31, 0x84, 0xa9, 0x45, 0x4e, 0x33, 0x7f, 0x67, 0xfe, 0x79, 0x51, 0x2e,
+ 0x93, 0x4a, 0x15, 0xc0, 0x23, 0x54, 0x42, 0x48, 0xf6, 0xec, 0x5b, 0x0f, 0xc9, 0x7c, 0x35, 0xcd, 0xd4, 0x43,
+ 0x21, 0xe9, 0x96, 0x9e, 0xd9, 0xeb, 0x42, 0x74, 0x7e, 0xe3, 0xcf, 0x92, 0x78, 0x01, 0x04, 0x5c, 0xe9, 0x99,
+ 0x79, 0x66, 0xff, 0x69, 0xbd, 0x30, 0x36, 0x9d, 0x9b, 0x84, 0x90, 0x36, 0x72, 0x23, 0xf9, 0xb7, 0x81, 0x9d,
+ 0xd5, 0xbb, 0xd5, 0xd7, 0x58, 0x47, 0x38, 0xcc, 0x0a, 0xf3, 0xcb, 0x05, 0x32, 0x64, 0xdc, 0x48, 0xf2, 0x09,
+ 0xbd, 0xa5, 0x23, 0x01, 0x8f, 0x37, 0xb4, 0xd4, 0xf5, 0x09, 0xfb, 0xe5, 0x97, 0xca, 0x31, 0x74, 0xd3, 0x89,
+ 0x99, 0xb3, 0xca, 0xdf, 0x90, 0x9a, 0xa4, 0xb5, 0x0a, 0xea, 0x7d, 0x75, 0xa1, 0x0f, 0x44, 0x42, 0xd2, 0x8d,
+ 0x91, 0xbe, 0x7f, 0x27, 0xc4, 0x27, 0xb4, 0x83, 0xba, 0xad, 0x15, 0x52, 0x59, 0xa1, 0x6e, 0x5f, 0xa7, 0xe5,
+ 0x88, 0x4b, 0x4d, 0x67, 0x06, 0x3e, 0x08, 0xcb, 0x57, 0x0e, 0x96, 0x67, 0xf9, 0x4b, 0xc9, 0x0e, 0xf9, 0x6b,
+ 0xc2, 0x01, 0xc3, 0x8f, 0x16, 0xe1, 0x7e, 0x2e, 0x2d, 0x8f, 0x9d, 0x1e, 0x88, 0x3f, 0x05, 0xe1, 0x44, 0x91,
+ 0x64, 0xb2, 0x76, 0xf5, 0x35, 0xe9, 0xb1, 0x02, 0x2d, 0x96, 0xfc, 0x86, 0x29, 0x65, 0xd0, 0x6e, 0x27, 0xba,
+ 0x3d, 0x2d, 0xa6, 0x42, 0xee, 0x9f, 0xd7, 0xc2, 0x42, 0xb3, 0x62, 0xa3, 0x30, 0x24, 0x24, 0x71, 0xdd, 0xe7,
+ 0x6c, 0x6e, 0x7a, 0xfb, 0x20, 0x0e, 0x83, 0x19, 0x9a, 0x1b, 0x73, 0x72, 0x3b, 0xf5, 0x48, 0xba, 0xf4, 0xce,
+ 0x45, 0xae, 0x60, 0x12, 0xdd, 0xbe, 0x27, 0xb9, 0xd3, 0xa8, 0xf3, 0x98, 0xc6, 0x6e, 0x1c, 0x34, 0x59, 0x6e,
+ 0xed, 0xe1, 0xb7, 0xa8, 0xc5, 0xd1, 0x21, 0x23, 0x60, 0xcf, 0x86, 0xd0, 0x03, 0x58, 0xe2, 0xc5, 0x53, 0x58,
+ 0x42, 0x05, 0x8a, 0x76, 0x7b, 0x1a, 0x14, 0xa0, 0x71, 0xee, 0xc6, 0xe9, 0x38, 0xf1, 0x6e, 0xe0, 0x1c, 0xc6,
+ 0x82, 0x25, 0x0b, 0x4a, 0x47, 0xb8, 0x1a, 0xe5, 0x21, 0x27, 0x12, 0x52, 0x1d, 0xef, 0xc3, 0xca, 0x4e, 0x03,
+ 0xbe, 0xaf, 0x0b, 0x5c, 0x8e, 0x6c, 0xb4, 0x30, 0x61, 0xe9, 0x45, 0xc4, 0xa5, 0xc1, 0x87, 0x49, 0xb5, 0x01,
+ 0x6e, 0x35, 0x20, 0xc7, 0x58, 0xed, 0xed, 0x6c, 0x56, 0x6c, 0x81, 0xd9, 0x8b, 0x58, 0x8d, 0xe0, 0x24, 0xba,
+ 0x27, 0x69, 0xa8, 0xcb, 0x8c, 0xf7, 0xa1, 0x30, 0x82, 0xd4, 0xa5, 0xe0, 0x96, 0x33, 0x2f, 0x7e, 0xdf, 0x9f,
+ 0x28, 0x3a, 0xa8, 0xab, 0xcf, 0x50, 0x70, 0xd9, 0xaf, 0xf1, 0xfe, 0x29, 0xb3, 0x84, 0x55, 0x36, 0x02, 0xc3,
+ 0xf9, 0x11, 0xd2, 0x09, 0x3f, 0xbd, 0x4e, 0x12, 0x92, 0x56, 0x1c, 0xad, 0x72, 0x59, 0xae, 0x88, 0x40, 0x6f,
+ 0xbd, 0x50, 0x69, 0x99, 0xe9, 0x40, 0x21, 0x15, 0xdf, 0x19, 0x6d, 0xcf, 0x82, 0x83, 0x67, 0xd5, 0x30, 0x79,
+ 0x32, 0x94, 0xd4, 0xf0, 0x43, 0xf1, 0x66, 0x07, 0xe2, 0xab, 0x44, 0x94, 0x0b, 0x51, 0x91, 0x1d, 0xab, 0x3b,
+ 0xe4, 0x39, 0x81, 0x35, 0x57, 0x10, 0xd8, 0xaf, 0x15, 0x98, 0x0e, 0xf0, 0x9c, 0xdc, 0x28, 0x03, 0x7e, 0xa2,
+ 0x36, 0x8b, 0xbc, 0x29, 0x5a, 0x92, 0xef, 0x46, 0xc2, 0x6a, 0x04, 0x10, 0xc7, 0x4e, 0xb9, 0x1f, 0x53, 0x56,
+ 0x18, 0xfb, 0xba, 0xe4, 0x59, 0x5c, 0x94, 0xaa, 0x37, 0x33, 0x85, 0x20, 0xca, 0x6d, 0x72, 0x84, 0x75, 0xe2,
+ 0x68, 0xb4, 0xd2, 0x27, 0x38, 0x65, 0x7f, 0x6c, 0x22, 0xe3, 0x0a, 0xa3, 0x2d, 0x4c, 0x84, 0xa7, 0x88, 0xca,
+ 0x65, 0xcc, 0x79, 0xe8, 0x92, 0x4a, 0x7a, 0xd4, 0xfb, 0xa8, 0xeb, 0x33, 0xdf, 0x55, 0xcf, 0x6a, 0x92, 0x38,
+ 0xd0, 0xd6, 0xcc, 0x84, 0xe4, 0x3d, 0xdd, 0x4c, 0x67, 0x74, 0x48, 0x30, 0xca, 0x37, 0x48, 0x2a, 0x67, 0xf3,
+ 0xe0, 0x64, 0xf3, 0x7f, 0xb4, 0x80, 0xb8, 0xe1, 0xc3, 0xc8, 0xba, 0x0d, 0x6b, 0x58, 0x13, 0x17, 0x95, 0x15,
+ 0x85, 0x03, 0x14, 0x1c, 0x68, 0xe9, 0x69, 0xa9, 0xca, 0x32, 0xd4, 0x79, 0x9b, 0x3a, 0x46, 0x11, 0x31, 0xb2,
+ 0x7a, 0xa6, 0xaf, 0x6f, 0x65, 0xec, 0x71, 0xd3, 0x10, 0x9e, 0x4c, 0xb2, 0x14, 0x48, 0x7f, 0xcf, 0xd0, 0x37,
+ 0xa6, 0xa4, 0x00, 0x78, 0x2f, 0x04, 0xf7, 0xc8, 0x2d, 0x76, 0x9d, 0x44, 0x57, 0xa3, 0xdb, 0x52, 0xb9, 0x24,
+ 0x4a, 0x37, 0x3e, 0x82, 0xee, 0xf4, 0x62, 0x77, 0xb2, 0x55, 0x67, 0xfc, 0xab, 0xd8, 0x38, 0x53, 0x93, 0xf4,
+ 0xd1, 0xb4, 0x41, 0x54, 0x27, 0x3f, 0xd4, 0x98, 0xde, 0xd3, 0x7c, 0x2b, 0x95, 0xfc, 0xb8, 0x9b, 0x0a, 0x1b,
+ 0x21, 0x7d, 0x63, 0x77, 0x0a, 0x8a, 0xcc, 0xfa, 0xcd, 0x05, 0x18, 0x2f, 0x24, 0xd1, 0x53, 0xfd, 0xf6, 0x56,
+ 0x93, 0x6c, 0x03, 0x47, 0x7b, 0x4a, 0x7f, 0x0f, 0x18, 0x5c, 0xff, 0x45, 0x9e, 0x8a, 0x3d, 0xeb, 0x38, 0x54,
+ 0x25, 0xab, 0x20, 0xf6, 0xd4, 0x67, 0x0d, 0x16, 0xeb, 0x15, 0x33, 0x00, 0x1c, 0x35, 0x52, 0x61, 0xd9, 0x69,
+ 0xa5, 0x53, 0xcb, 0x78, 0x9e, 0xe3, 0x2f, 0xfa, 0xa5, 0xb5, 0x42, 0xed, 0xf0, 0xaf, 0x83, 0xe4, 0xbf, 0x5a,
+ 0x17, 0xc7, 0x63, 0xea, 0x3e, 0xa8, 0x30, 0x7a, 0x4c, 0x30, 0x51, 0xfa, 0xe7, 0x5e, 0x74, 0x10, 0x1b, 0xcc,
+ 0x13, 0x18, 0xa5, 0xaa, 0x1d, 0xca, 0xe5, 0x2d, 0x97, 0x57, 0xf2, 0xa7, 0xbd, 0x2a, 0xa7, 0xb3, 0x55, 0x9d,
+ 0xdc, 0xad, 0xeb, 0x92, 0x6c, 0x37, 0x73, 0x27, 0x0e, 0x42, 0xe0, 0x58, 0x50, 0x80, 0x93, 0x45, 0xd7, 0x52,
+ 0x6f, 0x62, 0x01, 0xb3, 0xa4, 0xe1, 0x7e, 0xba, 0xea, 0x66, 0x71, 0x95, 0xa0, 0x43, 0xfd, 0x66, 0x26, 0x0e,
+ 0x6f, 0x31, 0x14, 0xf3, 0x13, 0xb1, 0x97, 0x03, 0x0b, 0xdd, 0xd5, 0x4a, 0x03, 0x3a, 0x54, 0x35, 0xb9, 0xfb,
+ 0x66, 0x98, 0xae, 0x5b, 0xc4, 0xd1, 0x58, 0xc2, 0xc5, 0x5d, 0x2c, 0xd2, 0x1e, 0xd9, 0x93, 0x4e, 0xb2, 0x48,
+ 0x8d, 0xac, 0xd5, 0x83, 0x8d, 0x13, 0x62, 0x4d, 0x18, 0xd2, 0x31, 0xf4, 0x9f, 0x6a, 0x64, 0x31, 0xcb, 0xa5,
+ 0x78, 0xe4, 0x22, 0x72, 0xf8, 0x1f, 0x1c, 0x85, 0x44, 0x4c, 0x1e, 0x4d, 0x32, 0x60, 0xf3, 0x2f, 0xa1, 0x4f,
+ 0x8c, 0x7f, 0x95, 0x27, 0x60, 0xf9, 0x0e, 0x9e, 0x16, 0xfb, 0xc4, 0x10, 0xcc, 0x68, 0x6c, 0x49, 0x53, 0x77,
+ 0xff, 0x9f, 0x82, 0xe3, 0xad, 0xe7, 0x99, 0xfd, 0xe3, 0xb2, 0x81, 0x17, 0x63, 0xed, 0xe4, 0xa9, 0x94, 0x14,
+ 0x1b, 0xdb, 0x80, 0xa1, 0x4f, 0x5d, 0xe9, 0x65, 0x29, 0x22, 0xce, 0x0e, 0x17, 0x7f, 0xdd, 0x91, 0x57, 0xc7,
+ 0x99, 0xa0, 0xe6, 0x6e, 0x88, 0x70, 0xf2, 0x65, 0x65, 0xe5, 0xb6, 0xde, 0xe6, 0xea, 0x9f, 0xa6, 0x7b, 0x8e,
+ 0xdf, 0x40, 0x49, 0xc4, 0xce, 0xec, 0x89, 0x24, 0xa1, 0x52, 0x40, 0x14, 0x9b, 0x97, 0xc4, 0xc5, 0x76, 0x5a,
+ 0x55, 0xb3, 0x63, 0xd8, 0x59, 0x54, 0x8f, 0x1e, 0xcd, 0x74, 0x01, 0xb8, 0xc5, 0xff, 0xc3, 0xde, 0x90, 0x74,
+ 0xec, 0xb6, 0xc0, 0x46, 0x9a, 0xe0, 0xee, 0x2e, 0x1c, 0xce, 0x4f, 0xb1, 0xc3, 0x2c, 0x90, 0x12, 0xad, 0x90,
+ 0x86, 0xb4, 0xa8, 0x13, 0xaf, 0x6e, 0xca, 0x41, 0xa7, 0x39, 0x6f, 0x7a, 0x10, 0x1b, 0x81, 0x5a, 0x5c, 0x0c,
+ 0xaf, 0x3f, 0xd5, 0xd7, 0x22, 0x12, 0x8e, 0x72, 0x79, 0x29, 0xea, 0xee, 0xed, 0x5b, 0x82, 0x90, 0x62, 0x39,
+ 0x0e, 0x99, 0x61, 0xc0, 0x80, 0x82, 0xb1, 0xdb, 0xb3, 0xe8, 0x2a, 0x0b, 0xb6, 0x31, 0x06, 0xf9, 0x00, 0xbe,
+ 0x1c, 0xce, 0x91, 0x8f, 0x69, 0x08, 0x79, 0x95, 0x90, 0x9f, 0x1e, 0x4b, 0xbb, 0x03, 0x5f, 0x55, 0x8c, 0x6b,
+ 0x35, 0x67, 0x95, 0xe3, 0xf3, 0xad, 0x41, 0x27, 0xfa, 0x09, 0xc5, 0x6f, 0xe5, 0x9a, 0x58, 0x00, 0x98, 0x05,
+ 0xd2, 0xd6, 0x5e, 0x51, 0xf9, 0x28, 0x69, 0xa8, 0x7b, 0x89, 0x73, 0x7e, 0xd9, 0xf8, 0x42, 0xad, 0x4d, 0x68,
+ 0xf2, 0xf9, 0xde, 0xa4, 0x2f, 0x95, 0x93, 0x2d, 0x7d, 0x6c, 0xf9, 0x0d, 0xbf, 0x27, 0x89, 0x80, 0xf9, 0xf7,
+ 0xa0, 0xf2, 0x3f, 0x36, 0xa6, 0x71, 0xd3, 0x05, 0x6f, 0xad, 0xc5, 0xed, 0x9d, 0x30, 0x8e, 0xc2, 0xeb, 0xb1,
+ 0x02, 0x94, 0xe0, 0xae, 0xd3, 0xc8, 0x3e, 0x10, 0xff, 0x06, 0xcb, 0xa7, 0x5f, 0x90, 0xcf, 0x74, 0x6e, 0xcd,
+ 0x2b, 0xef, 0x16, 0x9a, 0xee, 0xbd, 0xee, 0xf6, 0x12, 0xef, 0x0c, 0x6e, 0x7e, 0xe8, 0x62, 0xb9, 0x0f, 0xed,
+ 0x14, 0x0c, 0xdf, 0xee, 0xf4, 0x19, 0xab, 0x60, 0xe8, 0x93, 0x30, 0x9f, 0x86, 0x49, 0x64, 0x34, 0xbd, 0x21,
+ 0x57, 0x09, 0x2f, 0xd6, 0x1a, 0xfc, 0x7d, 0x06, 0xf7, 0x05, 0xa3, 0x4f, 0xff, 0xbc, 0x2d, 0xb2, 0x77, 0x66,
+ 0xb8, 0x98, 0x14, 0xe4, 0xea, 0xa0, 0x42, 0x12, 0x23, 0xc6, 0x46, 0x80, 0x32, 0x0b, 0xf6, 0xc7, 0x53, 0xe1,
+ 0xd8, 0xe0, 0xdb, 0xc6, 0x4b, 0x14, 0x7e, 0x6a, 0xa4, 0x7e, 0x45, 0x08, 0x3b, 0x5a, 0x59, 0xa1, 0x9b, 0x71,
+ 0x72, 0xfd, 0xec, 0xff, 0x6d, 0x95, 0x69, 0xc9, 0xee, 0xbc, 0xae, 0x6d, 0x4f, 0xcd, 0x91, 0x67, 0x90, 0x69,
+ 0xed, 0x20, 0x53, 0x39, 0x2a, 0x6a, 0x2f, 0x1d, 0x4e, 0x76, 0x3e, 0x12, 0x61, 0x3c, 0xa8, 0x76, 0x6d, 0x8c,
+ 0x9a, 0x7f, 0xd3, 0x78, 0xaa, 0x3d, 0xdb, 0xde, 0x0a, 0xd0, 0xbf, 0xb0, 0x03, 0x0f, 0xc0, 0xa2, 0xbc, 0xa2,
+ 0x95, 0x88, 0xad, 0xe5, 0x1c, 0x03, 0x66, 0xca, 0xc8, 0x8f, 0x95, 0x75, 0xbd, 0x4d, 0xf0, 0xc9, 0xf4, 0x6a,
+ 0x63, 0x36, 0xc0, 0xa3, 0xa2, 0xfa, 0xc7, 0xb4, 0x2a, 0x1a, 0x64, 0x8d, 0x88, 0x70, 0xf6, 0x25, 0xbd, 0xae,
+ 0xaa, 0x87, 0x99, 0xde, 0xe4, 0x32, 0x00, 0x66, 0xd4, 0x19, 0xc2, 0x8f, 0xb7, 0x46, 0x4a, 0x26, 0x6e, 0x27,
+ 0x3a, 0x74, 0xe0, 0x35, 0xa2, 0x91, 0x16, 0x0e, 0xdc, 0xff, 0x73, 0x2e, 0x12, 0x3f, 0x54, 0x0e, 0x62, 0xea,
+ 0xa8, 0x10, 0xcf, 0xb4, 0x1b, 0x3c, 0x07, 0x4d, 0xd2, 0xff, 0x0e, 0x32, 0x44, 0x9e, 0xfb, 0x48, 0x97, 0x94,
+ 0x98, 0x70, 0xfa, 0x85, 0x5a, 0xed, 0x5a, 0x5c, 0xaf, 0x52, 0xc0, 0x72, 0x3a, 0x8e, 0x77, 0x93, 0x23, 0x59,
+ 0x9d, 0x40, 0x7f, 0xc2, 0xc7, 0x6a, 0x45, 0x98, 0x2b, 0xf9, 0xce, 0xc4, 0x6b, 0x48, 0xf3, 0x9f, 0x24, 0x45,
+ 0xcb, 0xc1, 0xb5, 0x79, 0xc9, 0xb4, 0x52, 0x11, 0x1f, 0x6b, 0xd9, 0xb7, 0x3f, 0xf3, 0x28, 0x71, 0x19, 0x15,
+ 0x51, 0xdc, 0x99, 0x60, 0x75, 0x1f, 0x22, 0x5c, 0x21, 0x85, 0x30, 0x36, 0xba, 0x06, 0x74, 0xdd, 0x96, 0x5e,
+ 0xa9, 0xc2, 0x45, 0x02, 0x9f, 0x8a, 0xd0, 0xb4, 0x54, 0x67, 0x5d, 0x6f, 0xf6, 0x38, 0x85, 0xf7, 0x71, 0xbc,
+ 0x92, 0x14, 0x97, 0xaa, 0x2a, 0x8c, 0x5e, 0xa2, 0xf9, 0x7d, 0x79, 0x15, 0x1c, 0x9b, 0x89, 0xe7, 0x1f, 0x16,
+ 0xaa, 0x1b, 0x9b, 0xfa, 0x76, 0xd8, 0x8f, 0x52, 0x55, 0x5e, 0x9a, 0xf2, 0xd5, 0x0a, 0xe0, 0x27, 0xce, 0x74,
+ 0x74, 0xac, 0x6b, 0x14, 0x65, 0x68, 0xdb, 0xa8, 0xce, 0x70, 0x2b, 0x10, 0x60, 0x0c, 0xc0, 0x79, 0x4e, 0x98,
+ 0x4b, 0xd8, 0x1f, 0xa6, 0xdd, 0xf3, 0xa9, 0x23, 0x08, 0xa9, 0xbd, 0xde, 0x67, 0x2d, 0x77, 0x05, 0xcc, 0x22,
+ 0xaa, 0x4e, 0x52, 0xb4, 0x95, 0x93, 0x6f, 0xe3, 0xc6, 0xce, 0xdd, 0xcc, 0x4d, 0x88, 0x89, 0x93, 0x9b, 0xb1,
+ 0xe8, 0x70, 0x46, 0xde, 0x27, 0x6d, 0xa9, 0x74, 0x30, 0xaa, 0xd9, 0xc1, 0x23, 0x5d, 0x8c, 0x7a, 0x0f, 0xaa,
+ 0x52, 0x05, 0x60, 0x51, 0xe4, 0xab, 0xdd, 0xb1, 0xdd, 0x05, 0x23, 0xc2, 0xd8, 0xc1, 0xbf, 0x1c, 0xe6, 0xc0,
+ 0xa4, 0x09, 0x83, 0x3d, 0x69, 0xe6, 0x43, 0x18, 0xe7, 0xef, 0xfb, 0x25, 0x49, 0xbe, 0xe1, 0xf3, 0x90, 0x70,
+ 0x00, 0xb3, 0xf0, 0x14, 0x43, 0xed, 0xc0, 0x51, 0x87, 0x5a, 0x42, 0x96, 0x5e, 0x19, 0x27, 0xf3, 0x2a, 0xf8,
+ 0x8a, 0x20, 0x92, 0x51, 0x55, 0x10, 0x19, 0x91, 0xd8, 0x0e, 0x47, 0x07, 0x03, 0x9b, 0x73, 0xde, 0x1c, 0xa0,
+ 0xfb, 0x1b, 0x3d, 0x59, 0xc4, 0x38, 0x41, 0xfb, 0x73, 0xeb, 0x6a, 0x63, 0x4d, 0xba, 0x9d, 0xc0, 0x78, 0xec,
+ 0xf7, 0xaf, 0x85, 0x55, 0xff, 0x41, 0x75, 0x29, 0xad, 0x82, 0xf3, 0xc1, 0x1c, 0xb2, 0xf6, 0x47, 0xb7, 0x69,
+ 0x68, 0xc6, 0x93, 0xdf, 0x73, 0xbb, 0xcd, 0xa1, 0xcd, 0x9d, 0x3c, 0xce, 0xcb, 0xdd, 0x67, 0xce, 0x8d, 0x94,
+ 0xc2, 0x91, 0xb2, 0xa5, 0xcc, 0x8b, 0x15, 0xfc, 0xbd, 0x99, 0x66, 0x9b, 0x0f, 0x4c, 0xd4, 0x3a, 0xbe, 0x1f,
+ 0x49, 0x71, 0xb2, 0x5e, 0xda, 0xd5, 0x1e, 0x02, 0xc8, 0x54, 0x36, 0xdd, 0x1a, 0xc4, 0x02, 0xed, 0x13, 0x6d,
+ 0xf8, 0x33, 0xaa, 0xd8, 0xc1, 0xb3, 0x2a, 0xad, 0x2d, 0xc2, 0x8c, 0x84, 0x14, 0x34, 0x81, 0xa3, 0x31, 0xbe,
+ 0x24, 0xe3, 0x60, 0x80, 0x31, 0xf5, 0x6d, 0x93, 0x7c, 0xbe, 0x01, 0x4b, 0x9c, 0xc6, 0x41, 0xe1, 0x35, 0xff,
+ 0x7f, 0x69, 0x54, 0x00, 0x15, 0xfb, 0x43, 0x29, 0x0e, 0x76, 0x5a, 0x98, 0x8e, 0xaf, 0xb2, 0x64, 0x48, 0x3d,
+ 0x9d, 0x19, 0x9e, 0x2b, 0x9c, 0xc7, 0x69, 0x91, 0x0d, 0xe7, 0x40, 0xf0, 0x29, 0x9d, 0x1b, 0x79, 0x30, 0x92,
+ 0x91, 0x18, 0x0f, 0x79, 0x89, 0xb6, 0x8a, 0x95, 0x78, 0xce, 0xf0, 0x2e, 0xb4, 0x21, 0xa4, 0x17, 0x5b, 0x40,
+ 0x51, 0x21, 0xbc, 0x4b, 0x93, 0x2a, 0x89, 0x3b, 0x87, 0x34, 0x57, 0x6d, 0x3c, 0xf0, 0x07, 0xcc, 0xd4, 0xd4,
+ 0x81, 0xbf, 0xe2, 0xf6, 0xe4, 0x3d, 0xd7, 0xe8, 0x09, 0x97, 0x69, 0x4d, 0xa8, 0x8e, 0xf6, 0x6f, 0xff, 0x6c,
+ 0x54, 0x00, 0xa5, 0x38, 0xfa, 0xef, 0x88, 0xc8, 0xc3, 0xaa, 0xcc, 0x14, 0xe3, 0x3e, 0xd5, 0x01, 0x70, 0xe2,
+ 0x02, 0xec, 0x9d, 0x94, 0xb1, 0x31, 0xde, 0x60, 0xeb, 0x1d, 0xaf, 0xba, 0x78, 0xd7, 0x02, 0x76, 0x51, 0xa6,
+ 0x69, 0x2a, 0xec, 0x83, 0x81, 0xeb, 0x9f, 0x0e, 0xd2, 0x5c, 0x0c, 0xb2, 0xb3, 0xff, 0x2a, 0x13, 0x84, 0xa6,
+ 0x97, 0xbf, 0x34, 0xb1, 0x0a, 0x05, 0xdb, 0xa8, 0x8f, 0xd2, 0x65, 0x9b, 0x91, 0xe9, 0x3a, 0x49, 0x47, 0x39,
+ 0xbc, 0xf4, 0x62, 0xca, 0xe0, 0xdb, 0xfc, 0x42, 0xeb, 0x6a, 0x51, 0x73, 0xed, 0xfb, 0xdf, 0x52, 0xc1, 0x9d,
+ 0x32, 0xc3, 0x14, 0x36, 0x7c, 0x0e, 0x03, 0x8c, 0xe9, 0x0b, 0xb6, 0x01, 0xde, 0x7d, 0x29, 0xe7, 0x3d, 0xaf,
+ 0x74, 0xc7, 0xa9, 0x8b, 0xb2, 0x55, 0xb2, 0x00, 0xe1, 0xd1, 0x8d, 0xc4, 0xce, 0xeb, 0x8a, 0xb2, 0x4d, 0xb6,
+ 0x51, 0xdd, 0xc4, 0x41, 0xf5, 0x1c, 0x0a, 0x13, 0x5a, 0x28, 0x01, 0xc2, 0x54, 0x98, 0xb9, 0x00, 0x6b, 0xa7,
+ 0x35, 0x22, 0xcc, 0xfb, 0xcd, 0xcc, 0xc4, 0x37, 0xa3, 0xad, 0x92, 0x39, 0x77, 0xff, 0x4f, 0xb4, 0x73, 0x92,
+ 0xe8, 0x0c, 0xbe, 0x03, 0x28, 0x1d, 0x9f, 0x79, 0x41, 0xba, 0x43, 0xea, 0xa7, 0xb7, 0x8f, 0xe3, 0xef, 0xd6,
+ 0xb9, 0x5e, 0xa3, 0xef, 0x07, 0x24, 0x71, 0xe8, 0xf8, 0x0e, 0x91, 0x21, 0x29, 0xad, 0xcc, 0x2f, 0x10, 0xc7,
+ 0x90, 0xa1, 0xa5, 0x79, 0xc9, 0xa2, 0x49, 0x0a, 0x05, 0xc4, 0xfc, 0x30, 0xd0, 0x55, 0x00, 0x12, 0x00, 0x4a,
+ 0x67, 0xca, 0x6e, 0x53, 0x0e, 0x22, 0x3f, 0xe2, 0xa7, 0x7f, 0xb9, 0xd7, 0xe0, 0x84, 0xae, 0xa2, 0x40, 0x86,
+ 0xaa, 0xc9, 0x8f, 0xf9, 0xa5, 0x4d, 0x31, 0xfc, 0xf7, 0x31, 0x7c, 0x95, 0x04, 0x6f, 0x8b, 0xf3, 0x49, 0x1c,
+ 0x22, 0x2b, 0xdc, 0x46, 0xf4, 0x2e, 0xa3, 0x33, 0x0e, 0x11, 0x3f, 0xd4, 0x4f, 0x8a, 0x43, 0x91, 0x15, 0xce,
+ 0x6f, 0x64, 0x28, 0x2f, 0x70, 0x2a, 0x3a, 0xdb, 0x1e, 0xba, 0x30, 0x3d, 0x6f, 0xfc, 0x9a, 0xa5, 0x49, 0xa5,
+ 0x97, 0x10, 0xd6, 0xa0, 0x21, 0xe7, 0x7a, 0xec, 0x4e, 0x53, 0xc0, 0xab, 0xcd, 0xe8, 0xf1, 0x76, 0xf9, 0x60,
+ 0x83, 0xd9, 0xfb, 0x78, 0x2b, 0xb3, 0x23, 0x38, 0xe3, 0x7f, 0xf4, 0xf8, 0x06, 0x7c, 0xe2, 0xac, 0x24, 0x30,
+ 0x91, 0xef, 0x01, 0xb4, 0x05, 0xae, 0xd5, 0x67, 0x34, 0x97, 0x92, 0x63, 0xcf, 0xba, 0x87, 0x3e, 0xdf, 0xb0,
+ 0xa3, 0xe4, 0x4f, 0x97, 0xed, 0x14, 0xe6, 0x76, 0xfa, 0x7d, 0x63, 0x86, 0x93, 0xfc, 0xe5, 0xe6, 0x21, 0xea,
+ 0xff, 0xd2, 0xb4, 0x2e, 0xf8, 0xde, 0x03, 0xbf, 0xc9, 0x10, 0xe3, 0x55, 0x37, 0x40, 0x33, 0xc9, 0xd4, 0x0a,
+ 0xcb, 0xf8, 0x62, 0xf0, 0x1f, 0xb8, 0x62, 0xc0, 0x2f, 0x56, 0x0c, 0x06, 0x4d, 0xa8, 0xd6, 0x85, 0x70, 0x2f,
+ 0x55, 0xcb, 0x7c, 0x9f, 0x68, 0xfd, 0xf5, 0xfc, 0xea, 0x9c, 0xb9, 0x3b, 0x0a, 0xcc, 0xa7, 0x08, 0x9a, 0xf6,
+ 0xd2, 0xd8, 0xe9, 0x38, 0x88, 0xda, 0x97, 0x85, 0x22, 0xd3, 0x37, 0x8a, 0x5c, 0x5d, 0xe0, 0x78, 0x0d, 0xe9,
+ 0x5d, 0x0f, 0x20, 0x98, 0xea, 0x4d, 0x29, 0xc3, 0x0d, 0x79, 0xfc, 0x10, 0x27, 0x3f, 0xc5, 0x26, 0xa4, 0x99,
+ 0x84, 0xd4, 0xc1, 0xf9, 0x03, 0x22, 0xf5, 0x74, 0x1f, 0x8e, 0xfd, 0xc8, 0xc3, 0x7b, 0x32, 0xcb, 0xb1, 0x26,
+ 0xa1, 0x84, 0x08, 0x2c, 0x22, 0x17, 0x4e, 0xa2, 0x08, 0xe3, 0x2a, 0xcc, 0xdd, 0xe2, 0x89, 0xc4, 0xe7, 0xab,
+ 0xc4, 0x67, 0x72, 0xee, 0xf1, 0x96, 0xe0, 0xa6, 0xfa, 0xe9, 0x62, 0xec, 0x2b, 0x5c, 0x1b, 0xbe, 0x5a, 0x90,
+ 0x71, 0x10, 0x2d, 0xd3, 0x4e, 0x50, 0x03, 0x7e, 0xf3, 0xd1, 0xac, 0x7b, 0x8e, 0xcc, 0x1d, 0x0b, 0x53, 0xbe,
+ 0x47, 0xdb, 0x85, 0x44, 0x23, 0x9c, 0xe0, 0x63, 0xfd, 0xc4, 0x20, 0xec, 0xdc, 0x07, 0xf4, 0x41, 0x22, 0x15,
+ 0xb0, 0x86, 0x50, 0x07, 0x17, 0x7c, 0x25, 0x05, 0x09, 0x7c, 0x7c, 0xcb, 0x13, 0x60, 0x96, 0x5c, 0xc9, 0x6b,
+ 0xaa, 0xce, 0xe5, 0x05, 0x70, 0xe6, 0xec, 0xf7, 0x89, 0x01, 0xe4, 0xb1, 0xf7, 0xfc, 0x88, 0x65, 0x0e, 0xdd,
+ 0x88, 0x1c, 0xb9, 0x05, 0xbd, 0x4e, 0x47, 0xf7, 0x88, 0x7f, 0xa6, 0xe0, 0x7c, 0x01, 0x30, 0x0d, 0xfe, 0x1f,
+ 0x5f, 0x8d, 0x7d, 0xa2, 0x87, 0x60, 0x2a, 0x4c, 0x00, 0xf0, 0x3e, 0x4e, 0x41, 0x02, 0x20, 0x09, 0x9a, 0x55,
+ 0x6f, 0x5e, 0x87, 0xf1, 0xb9, 0x96, 0x26, 0xa6, 0x73, 0x6b, 0x62, 0x27, 0x5a, 0x90, 0x6d, 0xdd, 0xd4, 0x37,
+ 0xe9, 0x40, 0x78, 0xa0, 0x38, 0x71, 0xea, 0x95, 0x01, 0x2c, 0x80, 0x10, 0x56, 0x91, 0x48, 0x6c, 0xee, 0xda,
+ 0xae, 0x66, 0xee, 0x09, 0x1a, 0x61, 0xd2, 0xbd, 0x37, 0xb5, 0xd7, 0x18, 0x1b, 0xa5
};
// context = simple_context_vn
@@ -3487,330 +3720,179 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_MANDARIN__)
-// wake-word = nǐ hǎo diànnǎo
+// wake-word = 你好电脑
static const uint8_t KEYWORD_ARRAY[] = {
- 0x3c, 0xaa, 0x77, 0x04, 0x9c, 0x25, 0x7c, 0xdb, 0xc9, 0x51, 0x40, 0x69, 0x89, 0x3f, 0x46, 0x33, 0xe6, 0xb5,
- 0x04, 0xa3, 0x51, 0x68, 0x3b, 0x31, 0xce, 0x7f, 0x57, 0x96, 0xbc, 0x68, 0x9c, 0x85, 0x18, 0x19, 0x67, 0x47,
- 0xa9, 0x2b, 0x05, 0xbb, 0xcd, 0x1f, 0xd6, 0x6f, 0xb3, 0x38, 0x42, 0xdb, 0x36, 0x39, 0xf5, 0x64, 0xd1, 0x54,
- 0xd4, 0x5b, 0xcd, 0x2c, 0xf2, 0x94, 0x91, 0xf0, 0x3f, 0x7a, 0x66, 0xc1, 0x7e, 0xf0, 0x48, 0x84, 0x29, 0xfa,
- 0x49, 0x97, 0x80, 0xd0, 0xf1, 0x71, 0x7e, 0x83, 0xe3, 0xa4, 0x72, 0x07, 0x95, 0xdb, 0x9c, 0x42, 0x7c, 0x3d,
- 0x78, 0x79, 0x0f, 0xec, 0x90, 0xa3, 0x4d, 0xb2, 0x9c, 0xf5, 0xf9, 0xa9, 0x61, 0xae, 0x76, 0xdd, 0x9b, 0x05,
- 0xf6, 0x4d, 0x4d, 0x58, 0x32, 0x09, 0x52, 0x27, 0x73, 0x12, 0xd3, 0xda, 0x6a, 0x17, 0x75, 0xf0, 0xaf, 0x46,
- 0xdd, 0x4b, 0xd5, 0x1e, 0xaf, 0x5d, 0x95, 0xbd, 0xad, 0xcd, 0x7c, 0x1b, 0x32, 0xe1, 0xbe, 0x21, 0x2e, 0x28,
- 0xd0, 0x48, 0x83, 0x90, 0x3a, 0x41, 0x09, 0x1e, 0x07, 0x2e, 0xb5, 0xd8, 0xb7, 0x02, 0x21, 0x7c, 0xa9, 0xc7,
- 0xb6, 0xf3, 0x4d, 0x68, 0x2a, 0xd0, 0x31, 0x17, 0xcc, 0x86, 0x78, 0x07, 0xe2, 0x02, 0x3d, 0xf7, 0xb7, 0x42,
- 0xc9, 0x62, 0xe7, 0x59, 0x8e, 0x6d, 0xce, 0x25, 0x2e, 0x61, 0x55, 0xa2, 0xb4, 0x30, 0xb1, 0x98, 0xcc, 0x67,
- 0x4b, 0x02, 0xbe, 0x80, 0x7e, 0xbb, 0x79, 0x55, 0x7e, 0xec, 0x9d, 0x8d, 0xc5, 0xb5, 0x68, 0x99, 0xcf, 0xa8,
- 0x0e, 0x75, 0x3c, 0x88, 0xcf, 0x87, 0xa9, 0xb9, 0x24, 0x4a, 0x47, 0x0b, 0x7c, 0x64, 0x0c, 0xec, 0x2a, 0xde,
- 0x46, 0x7b, 0x43, 0xd7, 0x72, 0x0a, 0x6e, 0x1a, 0xd3, 0xf3, 0xc0, 0xba, 0x40, 0x3b, 0xb8, 0xc6, 0x3f, 0x88,
- 0xfb, 0x1f, 0xa2, 0x52, 0xfd, 0x3c, 0xe5, 0xe0, 0x13, 0x6a, 0x6c, 0x10, 0x96, 0x79, 0xd3, 0x35, 0x35, 0xc9,
- 0x3c, 0xc2, 0x39, 0x51, 0xae, 0x04, 0x83, 0x4d, 0xef, 0xa9, 0xb1, 0x5f, 0xd8, 0x0c, 0xe8, 0x7c, 0xfb, 0x36,
- 0x21, 0x02, 0x27, 0xd4, 0xb3, 0xd7, 0x2b, 0x00, 0x03, 0x18, 0x72, 0x0f, 0x64, 0xd4, 0x9a, 0x67, 0x4a, 0xc3,
- 0x40, 0x53, 0x1a, 0x1f, 0x3e, 0xe4, 0x28, 0xe8, 0x6b, 0x25, 0x55, 0xcc, 0x32, 0x13, 0x33, 0x04, 0x4e, 0x7e,
- 0x2d, 0x4b, 0x1b, 0xfc, 0xb0, 0xef, 0x65, 0x7a, 0xef, 0x08, 0xce, 0xa0, 0xe6, 0xdc, 0x49, 0x1c, 0xed, 0xcd,
- 0x5a, 0x21, 0xee, 0x00, 0x8a, 0xd1, 0x48, 0xc5, 0x3b, 0xe2, 0x48, 0x5b, 0x3d, 0x07, 0xe9, 0x37, 0x53, 0xe2,
- 0x67, 0x8d, 0x9e, 0x1d, 0x05, 0xc6, 0x26, 0xed, 0x68, 0xcd, 0xde, 0x6f, 0x28, 0xf1, 0xff, 0xd9, 0xb5, 0x11,
- 0xe6, 0x56, 0xb3, 0xae, 0xc7, 0x89, 0xd7, 0xdf, 0xad, 0x4a, 0xbd, 0xf5, 0x3a, 0x0d, 0x6a, 0x0d, 0x48, 0xaf,
- 0x15, 0xf5, 0x6b, 0x13, 0x57, 0xf2, 0x28, 0x8c, 0xd9, 0xd6, 0x63, 0x86, 0x86, 0xf2, 0xb6, 0xc6, 0xe1, 0x33,
- 0x8e, 0x2e, 0x0d, 0x2c, 0x77, 0xc3, 0x8e, 0x4e, 0xa8, 0xbb, 0xaa, 0xbb, 0x06, 0xe8, 0x35, 0xac, 0x91, 0x66,
- 0x95, 0xc8, 0xa1, 0x3e, 0x31, 0x4b, 0x8f, 0x88, 0x51, 0xd7, 0x0f, 0xf3, 0xac, 0x6f, 0x43, 0xd4, 0xf5, 0x30,
- 0x5a, 0x4c, 0xa0, 0x00, 0x0d, 0x3a, 0x22, 0x2c, 0x55, 0x44, 0x7c, 0x0a, 0xaa, 0xba, 0x70, 0xed, 0x19, 0xe1,
- 0x0b, 0xa9, 0xbd, 0x61, 0x06, 0x7e, 0x92, 0x0d, 0xa3, 0xb4, 0xbd, 0x78, 0x22, 0x55, 0x30, 0xe7, 0x72, 0x22,
- 0x80, 0x02, 0xab, 0x2e, 0xef, 0xe6, 0x7c, 0x0a, 0x3c, 0xed, 0xa6, 0x79, 0x03, 0xaf, 0x70, 0x2b, 0x9c, 0x41,
- 0xfe, 0x2f, 0x2f, 0xf4, 0xfa, 0xb2, 0xad, 0xd3, 0xe7, 0xe3, 0xec, 0x01, 0xd1, 0x3e, 0x76, 0x5c, 0x73, 0x90,
- 0x56, 0x3f, 0x82, 0xfc, 0x5f, 0x46, 0x23, 0xef, 0x93, 0x31, 0xd3, 0x26, 0x15, 0x05, 0x25, 0x0d, 0x01, 0xc8,
- 0x17, 0x5a, 0xac, 0x0c, 0x94, 0xd3, 0xf9, 0x6a, 0x5e, 0x5a, 0xd2, 0x6a, 0xf2, 0x99, 0xd1, 0xce, 0xfb, 0xf2,
- 0x9a, 0x9c, 0xb9, 0xef, 0x4a, 0xfa, 0xda, 0x1a, 0x9b, 0xb5, 0xec, 0xf6, 0x42, 0x7b, 0x60, 0x1f, 0x2d, 0xba,
- 0x84, 0x6e, 0x34, 0xa3, 0xd6, 0x68, 0x7d, 0xe4, 0x83, 0xe6, 0xb1, 0xe4, 0xbd, 0xe7, 0x21, 0x4e, 0xc0, 0x71,
- 0xd8, 0x71, 0x95, 0x19, 0xd4, 0x09, 0xf2, 0x3d, 0x90, 0x73, 0xcd, 0x2b, 0xef, 0x5a, 0x09, 0xf2, 0x47, 0x6a,
- 0xc4, 0x44, 0x04, 0xbf, 0xab, 0x68, 0x63, 0xfe, 0x5f, 0x7a, 0x4c, 0xed, 0x86, 0x6a, 0xe1, 0x76, 0xf6, 0xc9,
- 0xb2, 0x51, 0x13, 0x7a, 0xb8, 0x17, 0x21, 0xbb, 0x78, 0x7b, 0xca, 0x86, 0x8f, 0xad, 0xa0, 0x95, 0x1c, 0x45,
- 0x5f, 0x67, 0x67, 0x4f, 0x25, 0x84, 0xe6, 0xe6, 0x8d, 0x5f, 0xfb, 0xeb, 0x0a, 0xc5, 0x18, 0xeb, 0x55, 0x87,
- 0xad, 0x4a, 0x02, 0xc2, 0xe0, 0x0e, 0xc6, 0x9a, 0x57, 0xe8, 0x4f, 0xb4, 0x1b, 0xbf, 0xa2, 0xbb, 0x1d, 0x65,
- 0xb8, 0x80, 0xa6, 0xea, 0xe5, 0x08, 0xde, 0xbb, 0x3f, 0xfe, 0xe4, 0x1d, 0x1b, 0x55, 0xc6, 0x6c, 0x0f, 0x88,
- 0x2f, 0xe4, 0x00, 0xae, 0xd8, 0xa4, 0x9c, 0x4f, 0x46, 0x60, 0xd6, 0x33, 0xab, 0xcd, 0xf7, 0x2f, 0x25, 0x2f,
- 0x2d, 0x30, 0xcc, 0xd5, 0x77, 0x96, 0x80, 0x2b, 0x5e, 0xb4, 0x78, 0xe6, 0x91, 0x23, 0xef, 0x4b, 0xca, 0x24,
- 0x9c, 0x22, 0x7c, 0xa2, 0x9b, 0x1f, 0xb6, 0x00, 0x94, 0x3d, 0xb0, 0xae, 0xdc, 0x0b, 0x56, 0x2f, 0x01, 0xc8,
- 0xe6, 0xb4, 0xab, 0x2a, 0x91, 0x1c, 0xd0, 0xa7, 0x82, 0x25, 0xf3, 0xd7, 0xed, 0x30, 0xff, 0x1a, 0x5c, 0xe0,
- 0x4f, 0x66, 0xa9, 0x6f, 0x1b, 0x63, 0x31, 0x22, 0x22, 0x81, 0x45, 0x17, 0x15, 0x6d, 0xe8, 0x16, 0x98, 0x31,
- 0xd1, 0x5b, 0xc4, 0x8a, 0x93, 0x92, 0x36, 0xd5, 0x3c, 0x7c, 0xf7, 0x12, 0xb3, 0xdf, 0x4b, 0x73, 0xe3, 0xf4,
- 0x40, 0x18, 0xbc, 0x5e, 0x0a, 0x3c, 0xe9, 0x1b, 0xd2, 0xa3, 0x5e, 0xad, 0x77, 0xe3, 0x02, 0xc3, 0x80, 0x55,
- 0x8e, 0xc9, 0x99, 0xb7, 0xf3, 0x22, 0xb7, 0xe9, 0x47, 0x30, 0xb9, 0x2e, 0x77, 0x3e, 0xd0, 0xdb, 0x22, 0x72,
- 0xd9, 0xbf, 0x33, 0x7d, 0x31, 0xcc, 0x8f, 0xe4, 0x9f, 0x46, 0x59, 0x38, 0xfd, 0x2c, 0xe0, 0x3c, 0xa5, 0x0f,
- 0x4a, 0xd6, 0xfd, 0xa2, 0xff, 0x55, 0x53, 0x11, 0x4a, 0x83, 0x8b, 0x56, 0x28, 0x59, 0xaf, 0xf7, 0x17, 0x89,
- 0xf7, 0x9f, 0x4e, 0x1e, 0x07, 0x8c, 0xd2, 0x03, 0x80, 0xb2, 0xca, 0x76, 0x78, 0x0c, 0x9e, 0x0c, 0xfd, 0xdd,
- 0xc9, 0xdd, 0xe6, 0x10, 0x71, 0xe1, 0x27, 0xea, 0xf6, 0x98, 0xed, 0xa4, 0x5c, 0x6c, 0xac, 0xd7, 0x38, 0xe5,
- 0x57, 0xb1, 0xbf, 0xb7, 0x8e, 0x18, 0x8d, 0x71, 0xb5, 0x61, 0xd6, 0x67, 0xd2, 0x75, 0xa4, 0x32, 0x5e, 0xf4,
- 0x45, 0x1d, 0x52, 0x75, 0x9f, 0x09, 0x7f, 0xb1, 0x33, 0x8d, 0xd4, 0xcb, 0xb8, 0xf2, 0xae, 0x81, 0x64, 0x0a,
- 0x28, 0xd3, 0x2e, 0x30, 0xc6, 0xc8, 0xc0, 0x9c, 0xf3, 0x68, 0xd4, 0x07, 0x8b, 0x35, 0x3b, 0x3d, 0x6a, 0x98,
- 0x6b, 0x22, 0x02, 0x97, 0x48, 0x1d, 0x04, 0x03, 0x1e, 0x3e, 0x99, 0x13, 0xa5, 0x16, 0xb8, 0x8d, 0x79, 0x4f,
- 0x97, 0xe6, 0xeb, 0x84, 0xed, 0x10, 0x67, 0xd2, 0xca, 0x2d, 0x3a, 0xd3, 0x06, 0xe8, 0x27, 0xaf, 0xa6, 0x71,
- 0x80, 0x5d, 0x64, 0xc3, 0xd5, 0xfb, 0x23, 0x42, 0xee, 0x36, 0x49, 0xf0, 0xee, 0x08, 0x50, 0x35, 0x5c, 0x00,
- 0xc9, 0x83, 0x1c, 0x64, 0xcf, 0x7f, 0xfa, 0x73, 0xfd, 0x0e, 0xbd, 0x03, 0x73, 0x0f, 0x32, 0x31, 0xc6, 0xb9,
- 0xfe, 0xd4, 0x02, 0x6b, 0xa7, 0x22, 0x13, 0xde, 0xbe, 0x7e, 0x94, 0x47, 0x63, 0x58, 0x5f, 0x9b, 0x60, 0xda,
- 0x81, 0x3f, 0x79, 0x8d, 0xf3, 0x9b, 0x44, 0xde, 0x3b, 0xd3, 0xd6, 0xfd, 0x0a, 0x3b, 0x06, 0x93, 0x5f, 0x7f,
- 0xa4, 0x74, 0x8d, 0xa6, 0xcc, 0x03, 0x21, 0xf5, 0x39, 0x3b, 0xcf, 0x6c, 0x3c, 0x01, 0x25, 0xcc, 0x04, 0xf4,
- 0xfd, 0xd7, 0x63, 0x20, 0x32, 0x7c, 0x67, 0xc0, 0x48, 0x5f, 0x6c, 0x76, 0x24, 0xd7, 0xe2, 0x06, 0xcd, 0x9a,
- 0x57, 0xe3, 0x0c, 0x7e, 0x1d, 0x0b, 0x38, 0x48, 0x17, 0xf7, 0x98, 0xc2, 0xc6, 0x06, 0xbb, 0x2c, 0x05, 0x35,
- 0x53, 0xb1, 0x90, 0xa2, 0xe9, 0xaf, 0x5d, 0xeb, 0xf1, 0x96, 0xb9, 0xc1, 0x7a, 0x8b, 0x39, 0xd4, 0xa9, 0x70,
- 0x03, 0x33, 0x42, 0x07, 0x44, 0x00, 0xe3, 0xe5, 0xbf, 0xa9, 0xfc, 0x99, 0xe2, 0x9f, 0xdb, 0x90, 0x09, 0xc4,
- 0x8e, 0x46, 0x02, 0xe5, 0x64, 0x3a, 0xef, 0x89, 0x55, 0x78, 0x56, 0x56, 0x0e, 0x7f, 0x2b, 0x38, 0x4f, 0x08,
- 0x5b, 0x31, 0x42, 0x1a, 0xc9, 0xd8, 0x96, 0xea, 0x02, 0xfe, 0x23, 0x8f, 0x03, 0x33, 0x6c, 0x3f, 0x81, 0x54,
- 0x52, 0xbb, 0x8a, 0xee, 0xc6, 0xde, 0xe4, 0x91, 0x15, 0x38, 0x02, 0x76, 0x4f, 0x0f, 0x93, 0x05, 0x2f, 0x26,
- 0xc0, 0x47, 0x6b, 0x33, 0xbf, 0xd2, 0xc6, 0xea, 0x6e, 0xff, 0x76, 0x7d, 0x1d, 0xf4, 0x52, 0x20, 0x5c, 0x99,
- 0x05, 0x35, 0x81, 0x9b, 0x0a, 0xcb, 0x89, 0x89, 0x8c, 0xa9, 0x39, 0x9a, 0xbb, 0x4b, 0xf9, 0x36, 0xe4, 0x0d,
- 0x2c, 0x9e, 0x51, 0x2a, 0x5e, 0x73, 0xef, 0xbc, 0x04, 0x93, 0x30, 0x0a, 0x6a, 0x04, 0x33, 0x3e, 0x12, 0x91,
- 0xa2, 0xa9, 0x29, 0x3c, 0x04, 0x84, 0xa7, 0xd1, 0x9f, 0x9d, 0x7b, 0x90, 0x76, 0x9f, 0x6e, 0x72, 0xdb, 0x60,
- 0x46, 0x5f, 0x1e, 0xd7, 0xa4, 0xb8, 0x3c, 0x35, 0x21, 0x3b, 0x37, 0x6f, 0xf5, 0x1d, 0xa0, 0x63, 0x0d, 0xac,
- 0xa3, 0xad, 0xa6, 0x83, 0x72, 0x91, 0xb5, 0xd2, 0xf8, 0x50, 0x7b, 0x26, 0xdf, 0xb7, 0xb4, 0x30, 0x9f, 0x4d,
- 0x44, 0x5e, 0xe6, 0x59, 0x9b, 0x04, 0xf3, 0xc7, 0x11, 0x9e, 0xba, 0x70, 0x21, 0x2d, 0x05, 0x00, 0x3f, 0x1f,
- 0x5b, 0xc9, 0xf1, 0xb7, 0x8c, 0xa7, 0xb0, 0xd2, 0x7b, 0x44, 0xe2, 0xd3, 0xb2, 0x06, 0x72, 0x0f, 0x8e, 0xef,
- 0xa2, 0x16, 0x15, 0x68, 0x08, 0x1a, 0x70, 0x36, 0x21, 0xd5, 0x7f, 0xca, 0x67, 0x88, 0xe2, 0x3d, 0x4c, 0x57,
- 0x96, 0x3c, 0xad, 0x7d, 0x19, 0x0a, 0xbc, 0x3b, 0x8a, 0x30, 0x56, 0xee, 0xd8, 0xa5, 0xb6, 0x2c, 0x55, 0x63,
- 0xad, 0x69, 0x88, 0x1a, 0x83, 0x42, 0x8c, 0xfa, 0x08, 0x7f, 0xdb, 0x9e, 0x87, 0x87, 0x64, 0x3d, 0x69, 0x36,
- 0xd0, 0x25, 0x99, 0x3b, 0xcf, 0xd6, 0xd9, 0x12, 0x57, 0xd7, 0x3a, 0x0c, 0xf3, 0xad, 0xc1, 0x43, 0x35, 0x45,
- 0xae, 0x2e, 0x45, 0xd4, 0x0f, 0x70, 0xd2, 0xf1, 0xe6, 0x51, 0xb5, 0x4c, 0x83, 0x25, 0xb4, 0x19, 0xb3, 0x2e,
- 0xea, 0xb5, 0xf9, 0xa6, 0xea, 0x5f, 0xa7, 0x6e, 0x9d, 0x13, 0x6c, 0x95, 0x03, 0xce, 0xb7, 0x67, 0x7e, 0xdc,
- 0x25, 0xec, 0x50, 0xb7, 0x63, 0x3d, 0x72, 0xd2, 0x45, 0x8a, 0x54, 0xa6, 0x5c, 0x0e, 0x49, 0xd8, 0x20, 0x99,
- 0xd7, 0x0e, 0x53, 0x0f, 0x4d, 0xfa, 0xd2, 0xe1, 0x2f, 0x89, 0xf5, 0xaa, 0xbe, 0x57, 0xee, 0x80, 0x04, 0xc8,
- 0x65, 0x38, 0x34, 0x48, 0x99, 0xd3, 0xc3, 0x0b, 0x75, 0x39, 0x0a, 0x47, 0x42, 0xdd, 0x24, 0xdf, 0x3e, 0xf7,
- 0xbf, 0x0d, 0x02, 0x58, 0x67, 0x6f, 0x30, 0x9b, 0xf5, 0x3d, 0xb1, 0xe0, 0xc2, 0x97, 0x31, 0xff, 0x20, 0xab,
- 0x6a, 0x36, 0x97, 0x4f, 0xd4, 0x5d, 0x71, 0xfe, 0x5c, 0x81, 0x61, 0x17, 0xe7, 0x34, 0x5c, 0x10, 0x25, 0xae,
- 0x77, 0x98, 0x9b, 0x85, 0xa9, 0xbe, 0x3d, 0x35, 0x6e, 0x26, 0x44, 0x5e, 0xa1, 0x6f, 0xb0, 0x05, 0x30, 0x65,
- 0x4b, 0xef, 0x4e, 0x8e, 0xf7, 0x0a, 0xf2, 0x6b, 0xe7, 0xf0, 0xf7, 0xe9, 0x72, 0xfb, 0x2c, 0x3f, 0xa3, 0x73,
- 0x88, 0xe9, 0x5f, 0x7c, 0xd3, 0x75, 0xa5, 0xb3, 0x49, 0x98, 0xbe, 0xc6, 0x29, 0xe5, 0xda, 0xf2, 0x68, 0x8f,
- 0x54, 0x85, 0x46, 0xe1, 0x56, 0x55, 0xcf, 0xc4, 0xfc, 0x26, 0x4a, 0x5a, 0xc7, 0x5a, 0x4d, 0x6c, 0x40, 0xee,
- 0x46, 0x70, 0x7a, 0x05, 0x5a, 0x37, 0xe2, 0xa0, 0xf3, 0x6f, 0xb9, 0x4d, 0x9c, 0x34, 0x2a, 0x86, 0x6d, 0x30,
- 0xd7, 0x1e, 0x85, 0x21, 0xdc, 0x31, 0x97, 0x32, 0xce, 0x89, 0x44, 0xbf, 0x9f, 0xd9, 0x96, 0x68, 0x66, 0x78,
- 0xdb, 0xda, 0xb4, 0x45, 0x89, 0x80, 0xe8, 0x6f, 0x22, 0x98, 0xe9, 0x8f, 0x9f, 0xe9, 0x2e, 0x56, 0x98, 0x84,
- 0xa1, 0xd8, 0x43, 0x6a, 0x32, 0x39, 0x08, 0x9f, 0x98, 0xf1, 0x8e, 0x97, 0xb4, 0x41, 0xec, 0x41, 0x3a, 0x43,
- 0x63, 0xb1, 0x43, 0x48, 0x34, 0xad, 0x12, 0xbc, 0x89, 0x24, 0xc4, 0xc7, 0xda, 0x25, 0xcf, 0x01, 0x46, 0xf0,
- 0x1a, 0xd2, 0xf5, 0x1e, 0xfd, 0x16, 0xa7, 0xbc, 0xb0, 0x9b, 0xbb, 0x51, 0x70, 0x8e, 0xe6, 0x7e, 0xef, 0x9a,
- 0x2c, 0x71, 0xc3, 0x9e, 0xe0, 0x6d, 0x26, 0x98, 0x9a, 0xe5, 0xc6, 0x06, 0x4c, 0x4f, 0x80, 0x50, 0x74, 0x5b,
- 0x62, 0x3e, 0xe8, 0x93, 0xef, 0x6c, 0xd0, 0x3a, 0x17, 0x29, 0x42, 0xbc, 0x05, 0xd1, 0xec, 0x98, 0x32, 0x79,
- 0x86, 0x56, 0x04, 0xbd, 0xed, 0xa5, 0x2b, 0xf0, 0x93, 0x53, 0xf1, 0x17, 0x63, 0xdc, 0x7d, 0xa7, 0x11, 0x24,
- 0x38, 0xcb, 0xaa, 0x48, 0x94, 0x9e, 0x75, 0x4c, 0x0f, 0x37, 0x97, 0x4f, 0x58, 0x52, 0x9d, 0xd5, 0x3e, 0x21,
- 0x64, 0xd2, 0x60, 0x91, 0x30, 0x9f, 0xd2, 0xef, 0x27, 0x52, 0x87, 0xb0, 0x7c, 0x92, 0xe5, 0x6a, 0xe1, 0x1f,
- 0x8a, 0x4a, 0x67, 0x0b, 0x3a, 0x31, 0xd5, 0xe7, 0xde, 0x20, 0x4c, 0x75, 0x94, 0xa8, 0x63, 0xb5, 0xca, 0xcf,
- 0x07, 0x97, 0x3d, 0x65, 0x18, 0xca, 0xbd, 0x42, 0xc8, 0xb9, 0x52, 0xd3, 0xa5, 0xe0, 0x43, 0xeb, 0x45, 0x21,
- 0xeb, 0xe6, 0xc1, 0x56, 0xc1, 0xc7, 0x75, 0x8d, 0xbf, 0xd1, 0x77, 0x0d, 0x3c, 0x2f, 0x6b, 0x90, 0x6a, 0x3d,
- 0x96, 0x36, 0x2c, 0xa4, 0xcf, 0xa7, 0xba, 0xe6, 0x20, 0xed, 0x5a, 0x52, 0x14, 0xf9, 0xeb, 0x71, 0x44, 0x2b,
- 0x38, 0xa5, 0x06, 0xc8, 0x9e, 0xb6, 0x37, 0xf5, 0x17, 0x78, 0xdc, 0xf0, 0xac, 0x2a, 0xf0, 0x18, 0x95, 0xc0,
- 0x63, 0xcc, 0xe4, 0xea, 0xc8, 0x6f, 0x1c, 0xe4, 0x5c, 0x8a, 0xcc, 0x4c, 0x95, 0xc2, 0xbc, 0x41, 0x37, 0x42,
- 0x4c, 0x87, 0xb9, 0xc6, 0x73, 0x4b, 0xd5, 0x81, 0xca, 0xed, 0x84, 0x5d, 0x59, 0xe8, 0x52, 0x43, 0xb4, 0x9c,
- 0xd2, 0xbd, 0x7e, 0x9e, 0x95, 0xaa, 0xf6, 0x4e, 0x8f, 0xe0, 0xc5, 0xf6, 0xba, 0x9d, 0x33, 0xba, 0xb3, 0x89,
- 0x86, 0x74, 0x86, 0x5c, 0x11, 0xbe, 0x08, 0x3b, 0x47, 0xfb, 0x35, 0xe2, 0x2b, 0x96, 0xe1, 0x61, 0x60, 0xd7,
- 0x49, 0x01, 0x20, 0x4b, 0xa0, 0x1d, 0x84, 0x99, 0x5c, 0xed, 0xdc, 0x6a, 0x03, 0x36, 0x7b, 0xa5, 0x06, 0x50,
- 0x78, 0x9a, 0xfd, 0x6c, 0x60, 0x66, 0xe2, 0x31, 0x3b, 0xf7, 0xac, 0x71, 0x9c, 0x12, 0xd3, 0xab, 0x0f, 0xd7,
- 0x9c, 0x24, 0x6f, 0x5a, 0x45, 0xcc, 0x12, 0xb5, 0x19, 0xb8, 0xb8, 0x14, 0x47, 0x33, 0x4c, 0xa8, 0xc9, 0x2e,
- 0x58, 0x68, 0x1e, 0xe9, 0x6d, 0x31, 0xbe, 0x48, 0x39, 0xda, 0xcd, 0x39, 0xbd, 0xa2, 0x32, 0x95, 0xfa, 0x6c,
- 0x79, 0x53, 0xd0, 0xfa, 0x80, 0x9f, 0xd7, 0x61, 0xf4, 0xa3, 0x5d, 0x32, 0xdb, 0x18, 0x75, 0x12, 0xf8, 0x19,
- 0x93, 0x3a, 0x8b, 0xca, 0xcb, 0x43, 0x3c, 0x93, 0x0c, 0x6f, 0xc1, 0x52, 0xf3, 0x0f, 0xc2, 0xf6, 0x72, 0x18,
- 0x18, 0xf8, 0xd0, 0x28, 0xd9, 0x9a, 0x8f, 0x56, 0x1f, 0x07, 0x98, 0x81, 0x9f, 0xfb, 0xd5, 0x0a, 0xbe, 0xec,
- 0x47, 0x3d, 0x59, 0x72, 0x31, 0x5e, 0x70, 0x1a, 0x8a, 0x9c, 0x90, 0x52, 0x86, 0x4e, 0xd7, 0x33, 0x79, 0x71,
- 0x74, 0x5b, 0xf5, 0x6c, 0x85, 0x5c, 0x20, 0x33, 0x16, 0xc2, 0x7f, 0xb7, 0xa4, 0x89, 0x20, 0x9d, 0x88, 0x2a,
- 0x93, 0xa0, 0x51, 0x8a, 0xdf, 0x46, 0x4f, 0x32, 0xa4, 0x04, 0xf5, 0x45, 0x9f, 0xd0, 0x7e, 0xe5, 0xb2, 0xce,
- 0x78, 0x76, 0x04, 0x2a, 0xa5, 0xc2, 0xbe, 0x58, 0x1d, 0xae, 0xf3, 0x54, 0x28, 0x57, 0x55, 0xa5, 0x02, 0x4f,
- 0x01, 0x37, 0xc4, 0x71, 0xf2, 0xcd, 0x14, 0xc3, 0x09, 0x43, 0x01, 0x8e, 0x10, 0x68, 0xd6, 0x9a, 0xe8, 0xfe,
- 0xee, 0x01, 0x42, 0x9a, 0x2c, 0x42, 0xb5, 0xb5, 0x7b, 0xc7, 0xc3, 0x96, 0xcb, 0x55, 0x6f, 0x82, 0xe9, 0x30,
- 0x17, 0x09, 0x8d, 0x73, 0x37, 0x6d, 0x3c, 0x21, 0x69, 0xea, 0x31, 0x2b, 0x18, 0x0e, 0x0e, 0x71, 0xc2, 0x0d,
- 0x6f, 0xdd, 0x3f, 0x20, 0x27, 0x0f, 0x0a, 0xf3, 0x52, 0xa7, 0xd6, 0xf6, 0xaf, 0x1c, 0x9d, 0x8f, 0x31, 0x14,
- 0xef, 0x46, 0x6b, 0xe2, 0x0a, 0x3b, 0xa8, 0xed, 0x24, 0x09, 0x0e, 0xed, 0xb4, 0xfd, 0x85, 0x10, 0xf3, 0x27,
- 0xda, 0x69, 0x12, 0x11, 0xcc, 0xb1, 0x51, 0x54, 0x33, 0x3d, 0x23, 0xf2, 0xff, 0x25, 0x61, 0x1e, 0x73, 0x9a,
- 0x58, 0x20, 0x1d, 0x8f, 0x54, 0xa2, 0x5a, 0x6d, 0xf1, 0x75, 0x27, 0xeb, 0x2d, 0xd1, 0x98, 0xfe, 0xaf, 0x06,
- 0x6c, 0x60, 0xb4, 0x33, 0xab, 0x97, 0xf9, 0xf1, 0xc1, 0xc9, 0x30, 0x7f, 0xb6, 0xcc, 0xc7, 0x88, 0x86, 0x05,
- 0xc6, 0x0c, 0xb8, 0x94, 0x4f, 0x1b, 0x8c, 0xd0, 0x70, 0xe9, 0xa7, 0x58, 0xd1, 0x0a, 0x45, 0x3b, 0xbd, 0xc7,
- 0xf8, 0x28, 0x95, 0x7c, 0x4c, 0xc3, 0xd1, 0x5f, 0x7a, 0x95, 0x4b, 0x7a, 0x02, 0x2a, 0x44, 0xb9, 0xd9, 0x95,
- 0xe0, 0x94, 0xa9, 0xc0, 0xca, 0xd7, 0x11, 0x31, 0x0a, 0xf8, 0x64, 0xda, 0x85, 0x4f, 0xb4, 0x17, 0x6d, 0xf7,
- 0x6c, 0x7d, 0xc4, 0x68, 0x06, 0x51, 0xda, 0x0a, 0xf4, 0xc8, 0x35, 0xbf, 0xcf, 0x57, 0xb5, 0x14, 0xa0, 0x43,
- 0xfe, 0x76, 0xcc, 0x9f, 0x85, 0xde, 0x10, 0xe5, 0x3d, 0x4e, 0x8c, 0x11, 0x67, 0x71, 0x5e, 0x3a, 0xdd, 0x86,
- 0x0f, 0xb3, 0xce, 0xbe, 0xaa, 0xd5, 0x91, 0xdb, 0xde, 0xcd, 0x7a, 0x88, 0xcd, 0x43, 0x65, 0x41, 0xc3, 0xea,
- 0xc1, 0xe3, 0x0a, 0x2b, 0xe8, 0x98, 0xa5, 0xad, 0x87, 0x65, 0x59, 0x98, 0xd4, 0x64, 0x1a, 0xeb, 0x96, 0x2c,
- 0xd7, 0x5f, 0x22, 0x8e, 0x29, 0x6b, 0xc5, 0x7c, 0xcc, 0x69, 0xde, 0xf3, 0xd9, 0x2e, 0x78, 0x97, 0xa7, 0xa2,
- 0xff, 0x48, 0xa7, 0x54, 0x41, 0xb6, 0x41, 0xe6, 0xa2, 0x03, 0xf9, 0x2e, 0x4a, 0xfc, 0x3d, 0x48, 0x5e, 0x50,
- 0x57, 0x80, 0x7b, 0x37, 0xbd, 0xa7, 0x17, 0xf6, 0x76, 0x17, 0x6b, 0x88, 0xac, 0x88, 0xee, 0x40, 0xf6, 0xcf,
- 0x6f, 0x0c, 0x0e, 0x6c, 0x55, 0xb2, 0xf4, 0x93, 0xd9, 0xef, 0xb8, 0x3f, 0x1c, 0xc6, 0x35, 0x02, 0xab, 0x54,
- 0xd7, 0x70, 0x14, 0xcd, 0xd6, 0xc4, 0xbb, 0x28, 0x25, 0x6e, 0x20, 0x93, 0xc1, 0xe6, 0x4f, 0x44, 0xad, 0x07,
- 0xd3, 0xcc, 0xd2, 0x89, 0x2a, 0x4d, 0xc1, 0x0c, 0x3b, 0x00, 0xee, 0xe3, 0x53, 0x64, 0x3c, 0xa5, 0x67, 0xb9,
- 0xbe, 0x72, 0xef, 0x41, 0xf7, 0x32, 0x80, 0xef, 0x2c, 0x34, 0xe0, 0xbd, 0xb8, 0xc6, 0xfb, 0xb6, 0x38, 0xc1,
- 0x18, 0x3d, 0x99, 0x1a, 0xa7, 0x8d, 0xa8, 0xca, 0x32, 0x9f, 0x00, 0xe2, 0x04, 0xda, 0x28, 0x86, 0x6b, 0x74,
- 0x1e, 0x1e, 0x64, 0xd4, 0x80, 0xdb, 0xd7, 0xef, 0x32, 0x33, 0x58, 0x63, 0xca, 0xbf, 0x9a, 0xb7, 0x06, 0xd0,
- 0x9f, 0x14, 0x7d, 0x6d, 0x65, 0x57, 0xc1, 0x20, 0x7f, 0xfb, 0x86, 0xd2, 0xc3, 0xe9, 0x7c, 0xea, 0x04, 0x6b,
- 0x30, 0x71, 0x89, 0x92, 0x1e, 0xbb, 0x58, 0x56, 0x50, 0x06, 0x41, 0x79, 0xb4, 0xba, 0x83, 0x26, 0x63, 0x53,
- 0x97, 0xab, 0xf7, 0x03, 0xbb, 0x9e, 0x9d, 0xfd, 0xe8, 0x4f, 0xde, 0xb2, 0x11, 0xfb, 0x62, 0xbe, 0x7e, 0xea,
- 0x7c, 0xe5, 0x9f, 0x87, 0x57, 0xec, 0xe1, 0x8c, 0x93, 0x01, 0x60, 0x9f, 0xad, 0xf5, 0x4d, 0x8f, 0x5d, 0xe7,
- 0x46, 0xdc, 0x17, 0x61, 0x3c, 0x76, 0x2d, 0xe5, 0xb8, 0xe9, 0x41, 0xe3, 0x88, 0x57, 0x37, 0x25, 0x72, 0x2b,
- 0x7f, 0x19, 0x0b, 0x40, 0x57, 0x7d, 0x0c, 0xfa, 0xe4, 0x5f, 0x0e, 0x09, 0x73, 0x3d, 0xff, 0xdb, 0x1e, 0xc6,
- 0x19, 0x99, 0x06, 0xc7, 0xad, 0x85, 0xb1, 0x0f, 0xd9, 0x27, 0x1c, 0x50, 0x9c, 0x8c, 0x91, 0x4f, 0x44, 0x04,
- 0xc0, 0x62, 0x61, 0xca, 0x15, 0x4b, 0xb7, 0x93, 0xf5, 0xb1, 0x5a, 0x5e, 0xeb, 0xeb, 0x80, 0x36, 0xcd, 0x58,
- 0x94, 0xbe, 0x6b, 0x7f, 0x49, 0x27, 0x83, 0x8b, 0x19, 0x12, 0xeb, 0xaf, 0xfa, 0xa6, 0xc0, 0xae, 0xc1, 0xd4,
- 0x36, 0xce, 0x0b, 0xdd, 0x7d, 0xb8, 0x1a, 0xa8, 0xb0, 0xb4, 0xb3, 0xd2, 0xa3, 0x57, 0xe2, 0x31, 0x09, 0xc3,
- 0x20, 0x51, 0xc0, 0x0a, 0x2e, 0x23, 0xa6, 0x57, 0x49, 0xa0, 0x41, 0x36, 0x82, 0x5b, 0xd6, 0x0a, 0x47, 0xcf,
- 0x3d, 0xd9, 0xcb, 0x5a, 0xb7, 0xd8, 0x63, 0xf2, 0x4a, 0xec, 0x02, 0x1d, 0xba, 0xd7, 0x62, 0x8e, 0xf1, 0x35,
- 0x11, 0x42, 0xd4, 0x29, 0x9e, 0x26, 0x0a, 0x00, 0xd9, 0x57, 0x09, 0xb5, 0x7b, 0x62, 0xb5, 0xc0, 0x00, 0x0d,
- 0xf3, 0x28, 0xd6, 0x73, 0x6b, 0x76, 0x6e, 0x56, 0x8b, 0x44, 0x47, 0x8c, 0x8b, 0xbb, 0x04, 0xb8, 0x1b, 0x9a,
- 0x1a, 0x3a, 0xe6, 0x55, 0xd1, 0x42, 0x5e, 0x08, 0x91, 0x4f, 0x1c, 0xe6, 0x9d, 0x91, 0xd3, 0x19, 0x61, 0xfb,
- 0x88, 0x9e, 0x4d, 0xa7, 0xd1, 0x23, 0x10, 0x26, 0x16, 0xe9, 0x01, 0x33, 0x89, 0xbf, 0xee, 0x3c, 0xae, 0x77,
- 0x19, 0x79, 0xb7, 0xfa, 0xdb, 0x42, 0x0b, 0xa1, 0x6c, 0x58, 0x6f, 0x81, 0xb4, 0x5d, 0xd9, 0xef, 0xb6, 0x17,
- 0x10, 0x3b, 0x0f, 0x90, 0xd3, 0xed, 0xe7, 0xb1, 0x40, 0x14, 0x2e, 0x20, 0x0d, 0xfb, 0x35, 0x48, 0xa7, 0x95,
- 0xcb, 0xb5, 0xd7, 0xeb, 0xd5, 0xc7, 0x9b, 0x04, 0x0b, 0x49, 0xf8, 0xb9, 0xae, 0xa1, 0x9f, 0x61, 0x54, 0x06,
- 0x04, 0x9c, 0x6d, 0x81, 0xe3, 0x0d, 0xbd, 0xe1, 0x91, 0xb7, 0xd0, 0xe2, 0x1d, 0xc6, 0xcf, 0xfd, 0xfe, 0xe6,
- 0x7a, 0x0f, 0x9d, 0xdc, 0x55, 0xa6, 0x1a, 0xcb, 0x8f, 0x7f, 0x38, 0x9d, 0x93, 0x69, 0x4b, 0x54, 0x76, 0x19,
- 0x7c, 0xb3, 0x58, 0x99, 0x42, 0x2e, 0xc6, 0x35, 0x03, 0xce, 0x4e, 0xe2, 0xb0, 0x6d, 0x90, 0x8b, 0x4a, 0x5a,
- 0x01, 0x9b, 0x1f, 0x00, 0x62, 0xce, 0x31, 0xae, 0x99, 0xf2, 0xaf, 0x3e, 0xac, 0x62, 0xea, 0x35, 0x9e, 0x46,
- 0x53, 0x98, 0x07, 0xe5, 0x57, 0xe5, 0xb6, 0x3e, 0xc5, 0xde, 0x3e, 0xcb, 0xf7, 0x95, 0x0f, 0x07, 0xce, 0xf3,
- 0xcb, 0x5a, 0xcb, 0x2f, 0x92, 0x81, 0x97, 0x1e, 0xbf, 0xa3, 0x37, 0x25, 0xf6, 0x9b, 0x0e, 0x8a, 0xb2, 0x62,
- 0x21, 0xf7, 0xb7, 0x81, 0x30, 0x52, 0xf4, 0xa1, 0x5b, 0xae, 0xf6, 0x22, 0x97, 0x04, 0xda, 0x21, 0x24, 0xb2,
- 0x96, 0x4e, 0xd6, 0x89, 0x1b, 0x74, 0x09, 0x5a, 0x98, 0x04, 0x9b, 0x10, 0x84, 0xa3, 0xf3, 0xa0, 0x95, 0x94,
- 0x5b, 0xa6, 0xe4, 0x2a, 0x08, 0x70, 0x1e, 0xfa, 0x6f, 0xe8, 0x60, 0xa8, 0x55, 0x1e, 0xf1, 0xf8, 0x5b, 0x69,
- 0xd4, 0x10, 0x93, 0x43, 0x7e, 0x06, 0xc1, 0x42, 0x7a, 0x5d, 0x9a, 0xdf, 0xf4, 0x94, 0x80, 0x88, 0x3c, 0xbb,
- 0x95, 0x94, 0xf5, 0xbd, 0xf1, 0xfd, 0xb0, 0x10, 0x0d, 0x1e, 0x0d, 0x73, 0xae, 0x1d, 0x00, 0xee, 0x3a, 0xda,
- 0xb1, 0x5e, 0x15, 0xfe, 0xe0, 0x94, 0x3c, 0x8b, 0xbf, 0x23, 0x40, 0x5f, 0xe0, 0xe0, 0x97, 0xef, 0x6d, 0x97,
- 0xb7, 0x3b, 0x45, 0x8c, 0x28, 0x1d, 0x57, 0xe3, 0xca, 0xab, 0xad, 0x51, 0xe5, 0x02, 0x31, 0x26, 0x25, 0x76,
- 0x04, 0xb0, 0xf5, 0x7f, 0x64, 0x3a, 0x8c, 0x44, 0x85, 0x2e, 0xce, 0xa4, 0x7c, 0xb2, 0x95, 0x47, 0xd0, 0x57,
- 0x80, 0xc5, 0x3a, 0xea, 0xc3, 0xf9, 0x3e, 0xda, 0x55, 0xde, 0x63, 0x3e, 0x7a, 0xb0, 0xe4, 0xb0, 0x66, 0x23,
- 0x64, 0x20, 0xd1, 0x84, 0x2d, 0x7c, 0xc2, 0xde, 0xc6, 0x5d, 0x11, 0x34, 0x38, 0x9d, 0xa9, 0x68, 0x22, 0xe1,
- 0x77, 0x1a, 0xe1, 0xdc, 0x76, 0x53, 0xce, 0x0e, 0x4c, 0x91, 0x0d, 0x05, 0xe0, 0x2c, 0x5a, 0x30, 0x60, 0xc9,
- 0x22, 0x2b, 0x6b, 0x50, 0x4f, 0xef, 0x6e, 0x48, 0x90, 0xa9, 0x09, 0x48, 0x34, 0x1f, 0x21, 0xe9, 0x9a, 0x0f,
- 0xe2, 0xfd, 0xa9, 0x61, 0x65, 0x87, 0xa4, 0xcb, 0xb3, 0x53, 0x1b, 0x08, 0xc1, 0x9f, 0x57, 0x67, 0x07, 0x1f,
- 0x3e, 0x43, 0x6a, 0x34, 0xfb, 0xb4, 0x11, 0xe2, 0x07, 0xd5, 0x69, 0x4d, 0x01, 0xd3, 0xb8, 0x82, 0x8e, 0x87,
- 0x3e, 0x03, 0x2b, 0x38, 0x2f, 0x99, 0xa4, 0x56, 0xaf, 0x0b, 0x4f, 0xad, 0xc6, 0xe2, 0x00, 0x57, 0x45, 0x32,
- 0xfb, 0x40, 0xc3, 0x4a, 0x7d, 0x7b, 0x93, 0x3d, 0x79, 0x63, 0x8d, 0xe2, 0xed, 0x01, 0xb3, 0x51, 0x9b, 0xfd,
- 0xb2, 0xf7, 0x06, 0xbf, 0xc7, 0xfd, 0xa4, 0x90, 0x54, 0x9c, 0x01, 0x56, 0xda, 0xb8, 0xa7, 0x71, 0xc2, 0x02,
- 0x9d, 0xaa, 0xd5, 0xf4, 0x3f, 0x32, 0x41, 0x37, 0x45, 0x2e, 0x4c, 0x8f, 0xbc, 0x2b, 0xc2, 0x02, 0x2f, 0x09,
- 0x9d, 0x5b, 0xdf, 0xcd, 0xf8, 0x11, 0x2b, 0x54, 0x4b, 0x4d, 0x39, 0xe6, 0xb4, 0xaf, 0x44, 0x56, 0x69, 0xfc,
- 0xd5, 0x11, 0x82, 0x0b, 0x3a, 0x9e, 0xaf, 0x4c, 0xb3, 0x7b, 0xa0, 0x13, 0x92, 0xb4, 0x24, 0x93, 0x84, 0x60,
- 0xcf, 0xba, 0xd3, 0x17, 0xc5, 0x15, 0x93, 0x22, 0x89, 0xd5, 0x66, 0xb6, 0x18, 0xaf, 0xd4, 0x00, 0x06, 0xbf,
- 0xd0, 0x15, 0x60, 0x96, 0x1d, 0x73, 0x85, 0x0e, 0xd6, 0xbf, 0x27, 0x91, 0x22, 0x3f, 0x89, 0xca, 0xa3, 0x59,
- 0x0d, 0x5e, 0xdc, 0x54, 0xe5, 0x08, 0x60, 0x36, 0x63, 0xb1, 0xaa, 0x1a, 0x96, 0xb2, 0xea, 0x1a, 0xdc, 0x13,
- 0x42, 0xfb, 0x68, 0xde, 0xbb, 0xbe, 0x01, 0xdc, 0x2b, 0x9f, 0x7d, 0xb0, 0xd1, 0x44, 0x93, 0xbd, 0xd3, 0xd4,
- 0x8c, 0x10, 0x19, 0xa0, 0xca, 0x19, 0xbb, 0x32, 0xf8, 0x43, 0x45, 0x86, 0x97, 0x77, 0xad, 0x91, 0x5e, 0x7c,
- 0x73, 0x6a, 0x60, 0x46, 0xf6, 0x50, 0x6e, 0x40, 0xf8, 0x45, 0xdd, 0xee, 0x38, 0x6c, 0x2a, 0x8c, 0x68, 0xaa,
- 0xb5, 0x52, 0xb0, 0x0c, 0xbf, 0xc3, 0xc7, 0xf5, 0xd9, 0xc4, 0x31, 0x09, 0x2e, 0x25, 0x1a, 0x3f, 0xe7, 0xa6,
- 0xef, 0x7f, 0x7a, 0x2a, 0x48, 0x6b, 0xb2, 0xd0, 0xf9, 0xda, 0x7f, 0xfa, 0x9b, 0x92, 0x02, 0xcf, 0xb7, 0xb6,
- 0x4c, 0x2e, 0xd6, 0x1e, 0xdf, 0x32, 0xcf, 0xea, 0x0d, 0xb5, 0xdb, 0x94, 0xc2, 0x8e, 0x58, 0x7b, 0xfa, 0x3a,
- 0x58, 0xdc, 0xf6, 0x11, 0x5f, 0x89, 0xd7, 0x68, 0x66, 0xd8, 0xb9, 0x34, 0x7a, 0x15, 0x9f, 0xf4, 0xe8, 0x86,
- 0xef, 0x1c, 0x87, 0x7e, 0x53, 0x38, 0x90, 0x89, 0xf5, 0xf2, 0x4f, 0x9c, 0x90, 0x20, 0xfe, 0x5d, 0x8f, 0xf0,
- 0x0b, 0xb8, 0xab, 0xe3, 0x4e, 0xb1, 0xa7, 0x38, 0x34, 0x6b, 0xaa, 0xed, 0x3f, 0xc9, 0xbe, 0x22, 0xf1, 0x2c,
- 0xb2, 0x74, 0xe1, 0x0b, 0x14, 0x14, 0x8d, 0xac, 0xcd, 0xb3, 0xe0, 0x46, 0x45, 0xa4, 0xb7, 0x58, 0x1d, 0x86,
- 0x8f, 0xa1, 0x01, 0x9d, 0x3b, 0xe8, 0x19, 0x2b, 0x6a, 0x4d, 0xa2, 0x77, 0x49, 0x13, 0xe1, 0x73, 0x04, 0x7e,
- 0xbc, 0xe6, 0x2f, 0x0c, 0x1f, 0x0f, 0x46, 0x4d, 0x1b, 0xa0, 0xe2, 0xd7, 0xb0, 0x29, 0x7b, 0x12, 0xa8, 0x36,
- 0xf2, 0x5d, 0x47, 0x8e, 0x0a, 0x24, 0x28, 0x85, 0x6a, 0x39, 0xce, 0xfc, 0x88, 0xeb, 0xec, 0x78, 0x13, 0x6f,
- 0x2a, 0xbc, 0x82, 0x48, 0xe5, 0x32, 0xe8, 0x35, 0x79, 0xe6, 0x8b, 0x0f, 0xc3, 0xb9, 0xad, 0x2f, 0x79, 0x5d,
- 0xb0, 0x12, 0xa9, 0xd3, 0x05, 0x9f, 0x51, 0xd8, 0xcf, 0x69, 0x01, 0x5b, 0x8f, 0xcd, 0xc0, 0xda, 0x1b, 0xbb,
- 0x1b, 0x6e, 0xa1, 0x3b, 0x35, 0xb2, 0x79, 0x2d, 0x22, 0x7e, 0xb1, 0x30, 0xbf, 0xe4, 0x5c, 0x16, 0xea, 0x5d,
- 0x96, 0x5e, 0x34, 0x40, 0x88, 0x99, 0x55, 0xa1, 0xff, 0xd8, 0x87, 0x4c, 0x68, 0xad, 0xf1, 0x3f, 0x91, 0x83,
- 0xfc, 0x8e, 0xb0, 0x7b, 0xc3, 0xb5, 0x84, 0x2a, 0xa0, 0x22, 0x7c, 0x1a, 0x0f, 0xb5, 0x9e, 0xf3, 0x47, 0x26,
- 0xd3, 0x29, 0x82, 0xba, 0x39, 0xe6, 0xcd, 0x36, 0xe9, 0x24, 0xa4, 0xdf, 0x45, 0xe7, 0x36, 0x27, 0x6d, 0x0e,
- 0xb2, 0xa2, 0x40, 0xaf, 0x96, 0xda, 0xc8, 0xf4, 0xc5, 0x33, 0x07, 0x92, 0xf4, 0xb6, 0x1b, 0xc6, 0x49, 0x16,
- 0x57, 0x6b, 0xf3, 0x63, 0x81, 0xd9, 0xfc, 0x52, 0xd5, 0x60, 0x7c, 0xc6, 0x59, 0x18, 0x6f, 0xfe, 0x69, 0x27,
- 0x3f, 0x23, 0xf7, 0x64, 0x04, 0x21, 0xf4, 0xee, 0x52, 0xa0, 0xf3, 0x65, 0x81, 0xc0, 0x6d, 0xdf, 0x18, 0xd0,
- 0xf5, 0xa6, 0x5e, 0x24, 0x46, 0xbd, 0x3a, 0x82, 0x99, 0x6a, 0x72, 0x3c, 0x17, 0x69, 0x1c, 0xe8, 0x9c, 0x05,
- 0x0a, 0x67, 0xca, 0x5d, 0xa5, 0x6a, 0xc5, 0x8a, 0x58, 0x39, 0xb8, 0xf7, 0xc9, 0xea, 0xe3, 0xcc, 0xd1, 0xa0,
- 0x55, 0x62, 0xd7, 0x99, 0xae, 0xaa, 0x42, 0x5b, 0x5c, 0x10, 0xa9, 0x27, 0x99, 0x0f, 0xd7, 0x25, 0xad, 0xee,
- 0xd9, 0x97, 0x38, 0xe7, 0x1d, 0x09, 0x93, 0xb5, 0xf1, 0xd5, 0xaf, 0x3e, 0x20, 0xe1, 0x16, 0xb7, 0xe6, 0xd4,
- 0x91, 0x36, 0x96, 0xd1, 0x59, 0x2a, 0xeb, 0xa7, 0x95, 0xfc, 0x99, 0x29, 0xdb, 0x5a, 0xaa, 0x57, 0x36, 0x9a,
- 0xf1, 0x25, 0x8d, 0x8a, 0x52, 0x93, 0x6b, 0x62, 0xc4, 0xab, 0x9e, 0x6d, 0x57, 0xeb, 0xb7, 0xdf, 0x2f, 0xd3,
- 0x3d, 0x53, 0x88, 0x8b, 0x61, 0x10, 0xa8, 0xa6, 0xb6, 0xf1, 0x82, 0xee, 0xa5, 0x0c, 0x89, 0x7f, 0x89, 0x66,
- 0x49, 0xd8, 0x5b, 0x50, 0xff, 0xe8, 0x16, 0x08, 0x10, 0xa6, 0xc2, 0xaa, 0x36, 0xf5, 0x5a, 0xbf, 0x6b, 0xd3,
- 0x38, 0xa8, 0x24, 0x3e, 0xdd, 0x52, 0x3a, 0xdc, 0xbf, 0x86, 0x12, 0x40, 0x83, 0xd9, 0x1a, 0x0a, 0x63, 0x53,
- 0x3e, 0xc8, 0xa9, 0xf2, 0xc3, 0x41, 0xa9, 0xa9, 0x63, 0xb3, 0x16, 0x43, 0x18, 0x31, 0xc3, 0x7d, 0x0e, 0xa2,
- 0xaa, 0x00, 0xad, 0x5e, 0xa6, 0x79, 0x52, 0xec, 0xd2, 0x03, 0x60, 0x0f, 0xff, 0xcb, 0x35, 0x5d, 0x53, 0xa5,
- 0xc7, 0x7d, 0x86, 0x24, 0x67, 0x63, 0x45, 0x65, 0x60, 0xaf, 0xd0, 0x72, 0x93, 0x47, 0x60, 0x45, 0x43, 0x47,
- 0x17, 0x1a, 0xbe, 0x7d, 0x4c, 0x88, 0x0a, 0x71, 0xbe, 0xa1, 0xe5, 0xc3, 0x21, 0xc3, 0xc6, 0x29, 0x0e, 0xbf,
- 0x12, 0x40, 0x40, 0xeb, 0xb8, 0xaf, 0xa9, 0x3a, 0x39, 0xff, 0x0e, 0x89, 0x0e, 0x36, 0x8c, 0xee, 0x15, 0xd7,
- 0x1f, 0xf5, 0x41, 0x22, 0xa0, 0x79, 0x89, 0xdf, 0x2d, 0x8d, 0x10, 0xf0, 0x4e, 0xef, 0xe7, 0xcd, 0xeb, 0xa3,
- 0x25, 0xce, 0x43, 0x8d, 0x4b, 0x10, 0xd7, 0x5b, 0xa5, 0x0d, 0x09, 0x8e, 0xe4, 0xfb, 0xdb, 0xf2, 0xbf, 0x70,
- 0x9b, 0x96, 0x45, 0x77, 0x7d, 0x2e, 0xa8, 0x7d, 0x1d, 0x42, 0x10, 0xb5, 0x34, 0xd6, 0xb3, 0x34, 0x5b, 0xbe,
- 0x35, 0x7a, 0x60, 0xa2, 0x54, 0x08, 0x63, 0x9d, 0xfa, 0x80, 0x48, 0xbb, 0xe5, 0x69, 0xd3, 0xcb, 0xea, 0xb5,
- 0x56, 0xcc, 0x66, 0xc6, 0xed, 0x48, 0xf1, 0xba, 0xf4, 0xdd, 0x64, 0x1b, 0xdf, 0x55, 0x7c, 0x93, 0x4e, 0x4f,
- 0xb4, 0x75, 0x7e, 0x3f, 0xb2, 0x15, 0xcf, 0xdf, 0xf9, 0x8b, 0x29, 0x40, 0xab, 0xbc, 0xe4, 0x13, 0x57, 0xa2,
- 0xa2, 0xdb, 0x34, 0xa2, 0x79, 0x77, 0x0a, 0x3b, 0x8a, 0xaa, 0x02, 0xa1, 0xda, 0xa4, 0x58, 0xeb, 0xb5, 0x48,
- 0x14, 0x0b, 0xe7, 0x3e, 0xa1, 0x57, 0xdd, 0xe4, 0xea, 0xf2, 0xa2, 0xbb, 0x50, 0x4b, 0x59, 0x44, 0xf3, 0x08,
- 0x52, 0x63, 0x9d, 0xa3, 0xa5, 0xa0, 0xdf, 0x5e, 0xf6, 0xaf, 0x00, 0x4b, 0x35, 0xb6, 0xd2, 0xef, 0x66, 0x21,
- 0x02, 0x67, 0xb9, 0xbf, 0xdb, 0xa6, 0x68, 0xc0, 0x80, 0x04, 0x39, 0xdc, 0x0e, 0xae, 0x63, 0xd2, 0xf1, 0x1a,
- 0x44, 0xf5, 0x93, 0x0d, 0xc5, 0x12, 0xf1, 0x10, 0xc9, 0xaa, 0x29, 0xd1, 0x41, 0x78, 0xe4, 0xfc, 0x72, 0x44,
- 0x24, 0x7f, 0x66, 0x15, 0xf7, 0x7d, 0x25, 0xcf, 0x07, 0x69, 0x2a, 0xf1, 0x74, 0x52, 0x19, 0xc5, 0x8d, 0xba,
- 0x1c, 0x86, 0x09, 0x1b, 0x53, 0x0b, 0x4a, 0xcd, 0x2c, 0xa4, 0x5f, 0x23, 0x4c, 0x52, 0xed, 0x6b, 0xf1, 0x86,
- 0xde, 0xdc, 0xdb, 0x32, 0x3f, 0x6f, 0xbd, 0x22, 0xb3, 0x81, 0x68, 0x81, 0x21, 0x13, 0x7f, 0x75, 0x5b, 0x28,
- 0x79, 0x7d, 0xe8, 0xf4, 0xa3, 0x91, 0xbc, 0x81, 0xa3, 0x90, 0x5d, 0xf3, 0x38, 0xda, 0xe8, 0x04, 0xd7, 0x24,
- 0xc5, 0x59, 0x81, 0x9b, 0x45, 0x34, 0x94, 0xde, 0x57, 0x23, 0x52, 0x87, 0xff, 0x3f, 0x87, 0x60, 0x9c, 0x13,
- 0xdc, 0x99, 0x7b, 0x2f, 0x85, 0xc0, 0x15, 0xbd, 0x5d, 0x1f, 0xe7, 0x33, 0x53, 0x36, 0x6c, 0x81, 0xb3, 0x15,
- 0x3a, 0x28, 0xdb, 0x85, 0x79, 0x8f, 0xd5, 0x26, 0x6f, 0x7c, 0xb8, 0x98, 0xc2, 0x3d, 0x3d, 0x34, 0xad, 0x56,
- 0x28, 0x67, 0x3c, 0x0e, 0xdb, 0x2d, 0xb1, 0x05, 0x9a, 0x0c, 0x5f, 0x98, 0x87, 0xbd, 0x7f, 0x94, 0xd8, 0x9d,
- 0x0b, 0x31, 0x06, 0x9a, 0xe0, 0x60, 0x68, 0xf1, 0xb8, 0x5e, 0xd4, 0xb2, 0xa8, 0x0d, 0xc7, 0xc7, 0x0a, 0xfc,
- 0x72, 0xc3, 0x29, 0x07, 0x0a, 0xeb, 0xed, 0x74, 0x67, 0x29, 0x93, 0x9f, 0xf0, 0xe7, 0x12, 0xca, 0x30, 0x22,
- 0x8f, 0x77, 0x2b, 0x2d, 0x0f, 0x9c, 0xf5, 0xb2, 0xbf, 0x43, 0x22, 0xd8, 0xc2, 0x27, 0xdd, 0x25, 0xe1, 0x0c,
- 0xd5, 0x50, 0x16, 0xa3, 0xb1, 0x63, 0x1c, 0x2b, 0xf9, 0xfb, 0x95, 0x78, 0x40, 0x60, 0x6c, 0x9b, 0xdc, 0x9f,
- 0xc8, 0x31, 0x4d, 0x50, 0x8c, 0xc5, 0x75, 0xdb, 0x4c, 0xec, 0x61, 0x34, 0x29, 0xc3, 0x49, 0x0a, 0x21, 0x0b,
- 0x6b, 0xc9, 0xcb, 0xb2, 0x12, 0xf5, 0xce, 0xb0, 0xc1, 0x72, 0x6b, 0xb3, 0x9e, 0x6e, 0xfa, 0x0d, 0x1a, 0x4c,
- 0xc8, 0x43, 0x4f, 0x3f, 0x15, 0xeb, 0x54, 0xfc, 0xcb, 0xfa, 0x25, 0x81, 0xae, 0x0a, 0xe9, 0x22, 0xa5, 0x59,
- 0x24, 0xf0, 0x76, 0x6f, 0x76, 0x90, 0xb0, 0x25, 0xb3, 0x8d, 0xc6, 0xdc, 0xa3, 0x20, 0x3b, 0x43, 0xac, 0x3b,
- 0x94, 0xa5, 0x84, 0x8a, 0x73, 0xbb, 0x35, 0xde, 0x0c, 0x38, 0x57, 0xa0, 0xd2, 0x55, 0x69, 0x91, 0xe5, 0xd7,
- 0x39, 0xf2, 0x4f, 0xc6, 0x5c, 0x8f, 0xa3, 0x14, 0x48, 0xd4, 0x1a, 0xd1, 0x60, 0x37, 0x2e, 0xd4, 0x3e, 0x42,
- 0x6e, 0xf0, 0x82, 0xb8, 0x4c, 0x49, 0xf5, 0x1f, 0xb9, 0x4a, 0x59, 0x06, 0x33, 0xf8, 0x1c, 0x3f, 0x52, 0x02,
- 0x22, 0xdb, 0x4f, 0x22, 0x6c, 0x09, 0x06, 0xc9, 0x90, 0x89, 0x1e, 0x57, 0xa1, 0xda, 0xed, 0xad, 0x45, 0xcd,
- 0xf3, 0xc6, 0x8e, 0x11, 0x29, 0xb1, 0xef, 0xd4, 0x90, 0xa2, 0xec, 0xe5, 0x20, 0x37, 0x7e, 0xb5, 0x7c, 0xc4,
- 0xf5, 0x23, 0xc1, 0xab, 0x28, 0x73, 0xaa, 0xa3, 0x71, 0x3a, 0xe2, 0xd8, 0xfe, 0xea, 0xa7, 0x6f, 0x3f, 0xbe,
- 0x74, 0x41, 0xc8, 0x6b, 0x37, 0x83, 0x5c, 0xfb, 0xb9, 0xaa, 0x23, 0xa4, 0x3d, 0x2f, 0x9a, 0x14, 0xab, 0x09,
- 0xdf, 0xfe, 0x11, 0x38, 0xb2, 0xc0, 0xcb, 0x15, 0x73, 0x48, 0x02, 0xb7, 0x08, 0x9d, 0x56, 0x4f, 0xcf, 0x60,
- 0x83, 0x45, 0x94, 0x4b, 0x16, 0x11, 0xd6, 0xd3, 0x1e, 0x11, 0xed, 0x13, 0x2a, 0x9d, 0x25, 0xfb, 0x28, 0x54,
- 0x6b, 0xca, 0x43, 0x10, 0x40, 0x10, 0xb4, 0xbb, 0xbb, 0xe2, 0x41, 0xd2, 0xb6, 0x85, 0x48, 0xad, 0xca, 0x9f,
- 0x9d, 0x62, 0xb4, 0x52, 0x91, 0xe1, 0x37, 0x8a, 0xf9, 0xf5, 0x74, 0x8c, 0x5b, 0xfc, 0xb0, 0x5a, 0x5d, 0x74,
- 0x71, 0x05, 0x9d, 0x84, 0x3e, 0x8f, 0x98, 0x3a, 0xfa, 0xd2, 0x3b, 0x4d, 0xba, 0x4d, 0x4f, 0xb1, 0x8f, 0x61,
- 0x0d, 0x75, 0x1f, 0xcf, 0x4a, 0x6f, 0x69, 0x39, 0x2f, 0x5e, 0x49, 0x1d, 0xa4, 0xbe, 0x4e, 0xc7, 0xd3, 0xc7,
- 0xc3, 0x01, 0x94, 0xde, 0xa0, 0x57, 0xdc, 0x22, 0x8b, 0x64, 0x6d, 0x9e, 0x62, 0x9a, 0x5a, 0x56, 0xe1, 0xdf,
- 0xde, 0x2b, 0x09, 0xa4, 0xa0, 0xc5, 0xed, 0x36, 0x70, 0xe5, 0xe1, 0xa0, 0xcb, 0xe4, 0x7c, 0x64, 0x5a, 0xa2,
- 0x71, 0x44, 0x4c, 0x26, 0xb7, 0xba, 0xe1, 0x1a, 0xbc, 0x6a, 0xcb, 0xa5, 0x2b, 0x1c, 0x01, 0x19, 0x50, 0x93,
- 0xaf, 0xb8, 0x26, 0x3f, 0x37, 0x6e, 0x26, 0x12, 0x16, 0x36, 0x53, 0x56, 0xe4, 0x97, 0x17, 0x9e, 0xd5, 0xa4,
- 0x45, 0x7d, 0xf0, 0x06, 0x3c, 0x40, 0x63, 0xa8, 0x9b, 0x8e, 0xf2, 0xcf, 0xee, 0xa0, 0x7d, 0x38, 0x1d, 0xa2,
- 0x5f, 0xcd, 0x92, 0x3d, 0x48, 0xb3, 0x8b, 0x2d, 0x24, 0xc9, 0x10, 0xfe, 0x71, 0x7e, 0xc5, 0x9b, 0x05, 0x03,
- 0xd6, 0x08, 0xe6, 0x56, 0x24, 0x9a, 0x95, 0xc3, 0x0f, 0xa4, 0x36, 0x6b, 0x29, 0xfe, 0x76, 0x65, 0x7a, 0x38,
- 0x94, 0x52, 0x81, 0x66, 0xf8, 0xb9, 0xfc, 0xca, 0x45, 0x51, 0x4e, 0x9c, 0xe9, 0x7c, 0xf7, 0xf7, 0xd0, 0xa9,
- 0xa8, 0xe3, 0x04, 0x02, 0x09, 0x92, 0x5e, 0xfc, 0x55, 0x31, 0x2c, 0x1d, 0x01, 0x26, 0x6f, 0xf2, 0xbb, 0xb6,
- 0xd7, 0x5e, 0x9a, 0xb7, 0xcb, 0x80, 0xd7, 0xd2, 0x40, 0xf0, 0xb6, 0xc2, 0xbc, 0xa3, 0x26, 0xb1, 0xe4, 0x1b,
- 0x39, 0x5d, 0xda, 0x85, 0x45, 0x71, 0xa2, 0xbe, 0xe7, 0xe0, 0x2e, 0xba, 0xc9, 0x3e, 0x8f, 0x34, 0x07, 0x7f,
- 0x3e, 0xbf, 0x06, 0x40, 0xe7, 0x66, 0x8c, 0xed, 0x62, 0xce, 0xdb, 0xc5, 0x2a, 0x34, 0xe7, 0x97, 0x25, 0x33,
- 0xd2, 0xd3, 0x1a, 0x8c, 0x40, 0x8d, 0x23, 0x39, 0x86, 0x2b, 0xe2, 0xf8, 0x02, 0x73, 0xa7, 0xc5, 0x03, 0x3d,
- 0xa3, 0xfc, 0x3e, 0x6b, 0xb8, 0x00, 0x34, 0x77, 0x61, 0x43, 0x02, 0xb8, 0x14, 0x27, 0xd4, 0x00, 0xa8, 0x35,
- 0x88, 0xb6, 0x74, 0xf3, 0x13, 0x05, 0x51, 0x4d, 0x3d, 0x0c, 0xf9, 0x70, 0xac, 0xe6, 0x8d, 0x8d, 0xdd, 0x11,
- 0xce, 0x58, 0x0d, 0xb4, 0x65, 0x46, 0x3a, 0xdd, 0x42, 0x23, 0x57, 0x9b, 0xa9, 0x34, 0x2f, 0x7c, 0x74, 0x04,
- 0xd4, 0xf2, 0xa1, 0xf0, 0x5d, 0x7c, 0x35, 0x36, 0xd8, 0xaf, 0x4b, 0x06, 0x18, 0x71, 0x91, 0xd7, 0x44, 0x42,
- 0x59, 0x3f, 0x76, 0x2c, 0x65, 0x24, 0x46, 0x35, 0xdb, 0xcf, 0x07, 0x38, 0xd6, 0x0c, 0x12, 0xba, 0xe8, 0x84,
- 0x41, 0xb8, 0x2e, 0xec, 0xc9, 0xab, 0x01, 0x7a, 0x68, 0x70, 0x58, 0xab, 0xdb, 0x8e, 0xee, 0x5f, 0x24, 0x8b,
- 0xaf, 0x62, 0xbf, 0xa9, 0x0f, 0x3f, 0x9f, 0x0b, 0x5a, 0x38, 0x79, 0x2e, 0x88, 0x77, 0x3e, 0x66, 0xa0, 0x4d,
- 0x04, 0xe6, 0x52, 0xd0, 0x34, 0x14, 0xb1, 0x6c, 0x59, 0x2e, 0x19, 0x85, 0x48, 0x13, 0x00, 0x30, 0xe9, 0xd8,
- 0xe6, 0xe6, 0x26, 0x1b, 0xf2, 0x50, 0xbc, 0x73, 0xaa, 0xcb, 0xac, 0x95, 0x95, 0x4e, 0x56, 0x80, 0x4e, 0x93,
- 0x81, 0x61, 0x50, 0xe0, 0xeb, 0xba, 0x22, 0x03, 0xdb, 0x60, 0x1b, 0xd5, 0xa2, 0x17, 0x6f, 0xf8, 0x76, 0xce,
- 0x15, 0x93, 0x18, 0xc2, 0xfd, 0xa5, 0x92, 0x5c, 0xd9, 0xe3, 0x3b, 0xf5, 0x5b, 0x92, 0xe2, 0xec, 0x8a, 0x57,
- 0xca, 0xa4, 0x39, 0xc6, 0xcc, 0xf6, 0x22, 0x08, 0x2c, 0x0d, 0x53, 0xe5, 0x95, 0xa4, 0x09, 0x64, 0x6f, 0x52,
- 0x59, 0x51, 0xa0, 0xbe, 0xe3, 0x8c, 0x09, 0x9a, 0x3a, 0xe3, 0xe5, 0xeb, 0xa8, 0x05, 0x75, 0xbd, 0x40, 0x08,
- 0xd5, 0x9e, 0x96, 0x7d, 0xe0, 0xc5, 0x79, 0x7a, 0x80, 0xc8, 0x92, 0x05, 0xf0, 0x9e, 0x25, 0xf8, 0x70, 0xdc,
- 0x9c, 0x15, 0xf9, 0x37, 0x0e, 0x4e, 0xfb, 0xeb, 0xeb, 0xa3, 0x3c, 0x26, 0x2b, 0x80, 0xc1, 0x6b, 0x03, 0xe0,
- 0xce, 0xb7, 0x93, 0x12, 0x2d, 0x55, 0x29, 0xab, 0xf9, 0x62, 0x91, 0x83, 0xcd, 0xe4, 0xa5, 0x89, 0xb1, 0x2f,
- 0x89, 0x2f, 0xc5, 0x0f, 0x3c, 0xe1, 0x59, 0xb7, 0xfe, 0x92, 0x0a, 0x2c, 0xfb, 0x4e, 0xe6, 0x09, 0x08, 0x39,
- 0xcd, 0x6f, 0x86, 0x3f, 0x25, 0x16, 0xac, 0x02, 0x91, 0x92, 0x8c, 0xd6, 0x46, 0xec, 0x65, 0x24, 0x7b, 0x42,
- 0x2a, 0x4f, 0x86, 0xc9, 0xf4, 0x93, 0x04, 0xf0, 0xfc, 0x2c, 0x70, 0x01, 0x10, 0xcc, 0x62, 0x82, 0x99, 0x96,
- 0x98, 0x9e, 0x3f, 0x00, 0x5e, 0x46, 0x9a, 0x35, 0x85, 0xde, 0x2e, 0xc3, 0xff, 0x74, 0xa0, 0x13, 0x65, 0xd6,
- 0x77, 0x5e, 0x42, 0x5e, 0x56, 0x35, 0x41, 0x0e, 0x5d, 0xd2, 0x00, 0x64, 0xb6, 0xf9, 0x11, 0x21, 0x57, 0x49,
- 0x3e, 0x3a, 0x73, 0x61, 0x84, 0x3a, 0x4e, 0x6d, 0x65, 0x68, 0xcd, 0xa9, 0xa5, 0x8f, 0x6e, 0x3e, 0x0c, 0xbf,
- 0x52, 0x46, 0x9e, 0x44, 0x7f, 0x42, 0xf2, 0x00, 0x6b, 0xfb, 0x43, 0xd0, 0x8c, 0xf5, 0x5e, 0xb2, 0xeb, 0xe6,
- 0x0a, 0xfd, 0x1e, 0xe2, 0x4a, 0x5c, 0x5d, 0xd0, 0xba, 0x6d, 0xb2, 0x35, 0x83, 0xc2, 0x51, 0x62, 0xfc, 0x79,
- 0x4f, 0xca, 0x93, 0xed, 0xc5, 0x2a, 0x1c, 0xcb, 0x48, 0x99, 0xbc, 0x3b, 0x4e, 0xcb, 0xc7, 0x1a, 0xa4, 0x07,
- 0x3b, 0xe3, 0xad, 0x6c, 0xd1, 0xd4, 0x2a, 0x45, 0xde, 0x43, 0x23, 0x3a, 0xc0, 0x5c, 0x43, 0x9b, 0x43, 0xb1,
- 0xdb, 0xc8, 0xe4, 0xa8, 0xa5, 0xd6, 0xce, 0x01, 0xd5, 0x31, 0xf1, 0x47, 0xaf, 0x69, 0x38, 0x4b, 0x97, 0x54,
- 0x1d, 0xfa, 0xce, 0x96, 0xa4, 0xeb, 0xae, 0xec, 0x29, 0xe8, 0x14, 0x89, 0x67, 0xe0, 0xa2, 0xab, 0x43, 0xf5,
- 0x32, 0x04, 0xb6, 0xa9, 0x09, 0xa5, 0x59, 0x4f, 0x96, 0x54, 0xcd, 0xf0, 0x09, 0xe0, 0x35, 0x58, 0x16, 0x46,
- 0x09, 0x3e, 0x68, 0x6e, 0x8c, 0x93, 0x99, 0x81, 0x3e, 0xe5, 0x34, 0xef, 0x9e, 0x35, 0xe4, 0x3a, 0x19, 0xa0,
- 0x71, 0xd3, 0x73, 0x33, 0x43, 0x90, 0xfe, 0xae, 0x4c, 0x5c, 0xe8, 0x9f, 0x55, 0x05, 0xaf, 0x38, 0xcf, 0x54,
- 0x83, 0x7c, 0xbb, 0x50, 0x91, 0xa6, 0x72, 0x74, 0x31, 0xba, 0x01, 0x62, 0xc1, 0x5f, 0x41, 0x8b, 0x1b, 0x31,
- 0xfd, 0xf9, 0xff, 0x4b, 0x99, 0x77, 0xb8, 0x97, 0x77, 0x4e, 0x36, 0xed, 0x32, 0xd6, 0x91, 0x86, 0x8b, 0x49,
- 0xf8, 0x39, 0x7d, 0x53, 0x3c, 0x86, 0x9a, 0x56, 0x7d, 0xd1, 0xb3, 0x42, 0xde, 0xb1, 0x41, 0xe0, 0x1e, 0xf9,
- 0x30, 0x6f, 0x25, 0xc0, 0x46, 0x36, 0x07, 0x78, 0x67, 0xe2, 0x67, 0x70, 0xec, 0xa8, 0xfe, 0x1f, 0xbf, 0x04,
- 0xbc, 0xf0, 0xb9, 0x67, 0x97, 0xf9, 0x8c, 0x59, 0xda, 0x5c, 0xd3, 0x76, 0x5b, 0x01, 0x90, 0x98, 0x1e, 0xb2,
- 0xa9, 0x5a, 0x05, 0xd2, 0x57, 0x4b, 0x6a, 0x7b, 0x4a, 0xfe, 0x9b, 0xee, 0x4c, 0x70, 0xee, 0xf5, 0xf7, 0x3a,
- 0x02, 0x0a, 0xde, 0x02, 0xbb, 0xa3, 0x70, 0xf4, 0xdf, 0xd6, 0xdb, 0x3e, 0x16, 0xc0, 0x96, 0x12, 0x66, 0x3f,
- 0xa0, 0x62, 0x3d, 0x5f, 0x27, 0xab
+ 0xee, 0x89, 0xf9, 0x20, 0x54, 0x02, 0x82, 0xb6, 0x82, 0x89, 0x08, 0xc4, 0x25, 0x6f, 0x35, 0x01, 0x20, 0x47,
+ 0xf0, 0x24, 0xd1, 0x64, 0xf6, 0x16, 0x21, 0xcb, 0xf6, 0x20, 0x6c, 0xfe, 0x1e, 0xf6, 0x6e, 0x87, 0xc0, 0x28,
+ 0x13, 0x7a, 0x6a, 0x27, 0x7f, 0xff, 0x4b, 0xd3, 0xac, 0x17, 0x25, 0xbf, 0x43, 0x3b, 0xbe, 0x2d, 0x41, 0xb8,
+ 0xc4, 0xa5, 0x91, 0xa3, 0xc0, 0x52, 0xbe, 0x16, 0x34, 0x6f, 0x2f, 0x35, 0x43, 0x8c, 0xcc, 0x5e, 0xbe, 0x48,
+ 0x08, 0x60, 0x0c, 0x83, 0xb7, 0x54, 0x72, 0xc7, 0xf6, 0x18, 0x9c, 0x02, 0xfc, 0x7e, 0x26, 0x52, 0xeb, 0xd7,
+ 0x36, 0x7c, 0xae, 0x7c, 0xb4, 0x17, 0x41, 0xc1, 0x63, 0x7d, 0x59, 0x4d, 0xb6, 0x66, 0xc1, 0xa6, 0x3e, 0x7a,
+ 0x29, 0xc0, 0xd7, 0x17, 0x7d, 0xa8, 0x49, 0x27, 0x02, 0x3e, 0xc4, 0xb4, 0xe3, 0xfd, 0x55, 0xed, 0x66, 0x0a,
+ 0x28, 0x86, 0xbf, 0xa9, 0xff, 0x48, 0xf4, 0x2d, 0xa8, 0x30, 0xdb, 0x37, 0x8d, 0xae, 0xac, 0x7c, 0xa6, 0x00,
+ 0x2a, 0xf3, 0x2c, 0xb9, 0x57, 0x08, 0xd0, 0xaa, 0x6c, 0xa2, 0xc0, 0xb7, 0x26, 0xb7, 0xb2, 0x02, 0x58, 0x20,
+ 0x1c, 0xf4, 0x20, 0xfb, 0x67, 0x69, 0xd9, 0xf3, 0x86, 0x1d, 0x7d, 0xb1, 0xed, 0x4d, 0x75, 0x6b, 0x2e, 0x3f,
+ 0x36, 0xb9, 0xef, 0xda, 0xbd, 0x4a, 0x7f, 0x84, 0xd8, 0xaa, 0xa9, 0xab, 0xd7, 0xde, 0x25, 0x85, 0x36, 0x37,
+ 0x71, 0xc6, 0xe8, 0x4f, 0x72, 0x5a, 0x87, 0xa2, 0xcb, 0x2d, 0x4c, 0x7e, 0x47, 0x61, 0x91, 0xdc, 0xfc, 0x35,
+ 0xe5, 0x61, 0xf3, 0xaa, 0x7b, 0x55, 0x2c, 0xf0, 0x8f, 0xc9, 0x35, 0x29, 0x9e, 0x93, 0x41, 0x21, 0xa0, 0x09,
+ 0x1e, 0x02, 0x3c, 0xc8, 0x48, 0xf3, 0xa3, 0xbf, 0x63, 0xd4, 0x7f, 0xb7, 0x52, 0x22, 0x58, 0x0f, 0x02, 0x86,
+ 0x1b, 0xf7, 0x4d, 0x7e, 0x2a, 0x7c, 0x20, 0x97, 0xf5, 0x4a, 0xaa, 0x8d, 0xa2, 0x8f, 0x9b, 0xb8, 0xc5, 0x2b,
+ 0x02, 0x1a, 0xbd, 0xa1, 0x81, 0x79, 0x1a, 0xb1, 0x0c, 0xc3, 0x60, 0xa1, 0xd8, 0x30, 0xd9, 0x0b, 0x98, 0x3d,
+ 0xe6, 0xb6, 0xf8, 0x64, 0x75, 0xa7, 0xaa, 0x60, 0x2b, 0xcc, 0xc0, 0xa1, 0x35, 0x76, 0x7e, 0x45, 0x25, 0xf5,
+ 0x7f, 0x7e, 0xc5, 0x8d, 0x00, 0x56, 0xb1, 0xe0, 0x59, 0xb0, 0xcc, 0x29, 0x0e, 0x8a, 0x3d, 0x60, 0xff, 0xba,
+ 0xea, 0x80, 0x7a, 0xfc, 0xc5, 0xe7, 0x1b, 0x6b, 0x87, 0x38, 0xe7, 0x26, 0x73, 0x9c, 0x44, 0xdf, 0xb3, 0x7e,
+ 0x51, 0xa3, 0x28, 0x83, 0x8f, 0x9c, 0x06, 0x97, 0x10, 0xfd, 0x22, 0x82, 0x60, 0x31, 0x36, 0x66, 0x2a, 0x23,
+ 0x54, 0xc4, 0x17, 0x58, 0x73, 0x79, 0x70, 0x4f, 0xfa, 0xa3, 0xd1, 0x7c, 0x8e, 0xa8, 0xaf, 0x46, 0xec, 0x2a,
+ 0xa4, 0xe6, 0xa6, 0xa2, 0x4e, 0x09, 0xc3, 0xc2, 0xa6, 0x53, 0x3d, 0x87, 0x6d, 0x2e, 0xfe, 0xbf, 0x47, 0xce,
+ 0x2a, 0xf0, 0x0e, 0xd3, 0x2d, 0x05, 0xfd, 0x2c, 0x0f, 0x04, 0x15, 0xae, 0xca, 0x6c, 0x12, 0xb7, 0x20, 0x0d,
+ 0x06, 0xd5, 0xef, 0xc9, 0x88, 0x2c, 0x93, 0x0a, 0x0e, 0xf7, 0xb6, 0x61, 0xe7, 0xe0, 0x16, 0x30, 0xd1, 0x6e,
+ 0xb9, 0x23, 0xc0, 0x66, 0xd5, 0xae, 0x15, 0xf8, 0x1d, 0x1d, 0x66, 0xbb, 0xe4, 0x30, 0x4c, 0x14, 0x55, 0x47,
+ 0x78, 0x67, 0x99, 0x4f, 0xbf, 0x58, 0xe2, 0x63, 0x0b, 0xa8, 0x0a, 0x67, 0xf4, 0xc6, 0xbd, 0xda, 0x6a, 0x92,
+ 0x67, 0x56, 0x36, 0x0c, 0x89, 0xfc, 0x34, 0x48, 0xbc, 0x7e, 0xcc, 0xb6, 0xa2, 0xfc, 0x31, 0xf9, 0xe9, 0xad,
+ 0x54, 0x32, 0xed, 0x67, 0x91, 0x22, 0x6b, 0x2b, 0x1d, 0x32, 0x0f, 0x02, 0x39, 0x0a, 0xca, 0x5f, 0xcf, 0x53,
+ 0x54, 0x88, 0x28, 0x38, 0xf9, 0x77, 0x7b, 0x40, 0x86, 0x93, 0x9e, 0x58, 0x39, 0xb8, 0x57, 0x60, 0x19, 0x2f,
+ 0xc9, 0xff, 0xe4, 0x2e, 0x24, 0x25, 0x0c, 0x94, 0x1a, 0xbd, 0x0a, 0xdc, 0xb8, 0x32, 0xf4, 0x16, 0xda, 0xea,
+ 0xda, 0x98, 0xdb, 0x47, 0xe6, 0xe1, 0x4f, 0xf8, 0xe0, 0x0c, 0x85, 0xd3, 0x17, 0xbc, 0xae, 0x9e, 0x8a, 0x7c,
+ 0x55, 0xbe, 0xbe, 0xe9, 0x9f, 0x4c, 0xfc, 0x91, 0x5e, 0x57, 0xe4, 0xe5, 0x57, 0x23, 0x5e, 0x71, 0xca, 0xc8,
+ 0x41, 0x78, 0x16, 0x89, 0x1e, 0x71, 0xc0, 0xf5, 0x5c, 0xd1, 0x72, 0x40, 0x23, 0x9d, 0xce, 0xb3, 0x78, 0xf2,
+ 0x37, 0x50, 0x97, 0x3f, 0x8e, 0x89, 0x0c, 0x6a, 0x90, 0xe3, 0x2b, 0x04, 0x82, 0x85, 0x05, 0x65, 0x59, 0xe2,
+ 0x7c, 0x40, 0xe1, 0x29, 0x9e, 0xa6, 0xd5, 0x33, 0x0a, 0x9d, 0xdb, 0x01, 0xe7, 0xc8, 0xe4, 0xc7, 0x0e, 0x24,
+ 0x32, 0xa7, 0x77, 0x5a, 0x22, 0x45, 0x73, 0x1f, 0x23, 0x0e, 0x4f, 0x35, 0x04, 0x44, 0xb5, 0xcc, 0xa4, 0xde,
+ 0x6d, 0xb1, 0x13, 0x6f, 0xb5, 0x75, 0x0e, 0x7f, 0x32, 0x6c, 0x4f, 0xfe, 0x10, 0x10, 0x6d, 0x66, 0xd0, 0x49,
+ 0x36, 0x87, 0xb1, 0xdf, 0x75, 0xb2, 0x7f, 0x68, 0x34, 0xaf, 0xab, 0xb3, 0x2a, 0xfa, 0x19, 0x81, 0x33, 0x85,
+ 0x15, 0x7a, 0x2d, 0x52, 0x24, 0xfe, 0x11, 0x91, 0x95, 0x80, 0x3d, 0xf5, 0x6c, 0x06, 0x3a, 0x3e, 0x50, 0x5a,
+ 0xf7, 0x2b, 0xb4, 0x78, 0xe3, 0xec, 0x6a, 0x3a, 0x0e, 0xf5, 0x61, 0x68, 0x5a, 0x34, 0xda, 0x1b, 0xde, 0x89,
+ 0xa8, 0xe7, 0xec, 0xd0, 0xd4, 0x16, 0x51, 0x2d, 0xad, 0xa9, 0x9c, 0xcf, 0xc9, 0x93, 0x05, 0x95, 0xea, 0x95,
+ 0x74, 0xd5, 0x00, 0x55, 0x90, 0x0c, 0x5c, 0x1d, 0xaa, 0x88, 0xcc, 0xad, 0x82, 0xbc, 0x28, 0xef, 0x1a, 0xf0,
+ 0xb2, 0x32, 0x18, 0x28, 0x71, 0x23, 0x1f, 0x69, 0xf0, 0xeb, 0x96, 0x86, 0x05, 0x6d, 0x2e, 0x0e, 0x4e, 0x14,
+ 0x64, 0x70, 0xa9, 0x35, 0xf4, 0x17, 0x20, 0x23, 0x2c, 0xf1, 0x7a, 0xaf, 0x2b, 0x86, 0x78, 0x9e, 0x37, 0x27,
+ 0x8f, 0xee, 0xb6, 0x55, 0x71, 0xd1, 0x63, 0x48, 0x26, 0x67, 0xd5, 0xf9, 0xdd, 0xb9, 0xbb, 0x75, 0x04, 0x6d,
+ 0x46, 0x3c, 0x72, 0x61, 0x8d, 0x2b, 0x45, 0x27, 0xaf, 0x50, 0xad, 0x7f, 0xde, 0x3f, 0x91, 0xdf, 0x84, 0xf4,
+ 0x29, 0xbf, 0xe5, 0xfd, 0x40, 0x8a, 0xcd, 0x09, 0x8b, 0x20, 0xef, 0xa8, 0xe4, 0xf2, 0xc4, 0xbd, 0x37, 0x93,
+ 0x3b, 0xd1, 0xda, 0x91, 0xc3, 0x65, 0x67, 0xf9, 0x5b, 0x3e, 0xa4, 0xb4, 0xa5, 0x8d, 0xd6, 0x46, 0x0f, 0x42,
+ 0x7e, 0x57, 0xa2, 0xa2, 0x9c, 0x49, 0xc6, 0x1b, 0x78, 0x6c, 0x54, 0x99, 0x39, 0x15, 0x1e, 0x76, 0x07, 0x15,
+ 0x32, 0xf5, 0xc6, 0xe0, 0x1a, 0xd6, 0x81, 0xc9, 0x02, 0x81, 0xb6, 0xf8, 0xd6, 0xb1, 0xc9, 0xed, 0xe1, 0x59,
+ 0x4b, 0xb7, 0xd0, 0x83, 0x4f, 0x37, 0xf4, 0x98, 0xfb, 0xb7, 0xe2, 0x59, 0x15, 0xb1, 0x86, 0x7b, 0xa7, 0xb3,
+ 0xb4, 0x23, 0x92, 0x92, 0x38, 0x35, 0x45, 0xf6, 0x38, 0x84, 0xc1, 0x63, 0xd4, 0x4b, 0x85, 0x57, 0xc6, 0x08,
+ 0x67, 0x3d, 0x9b, 0x0d, 0x16, 0xf0, 0xda, 0xdd, 0xc1, 0x65, 0xff, 0x93, 0x7e, 0xa9, 0xf2, 0xa8, 0x19, 0x10,
+ 0xe5, 0x13, 0xaa, 0x0e, 0x0d, 0xe5, 0xbb, 0x1f, 0x7a, 0xbb, 0x66, 0x93, 0xaa, 0x93, 0xf3, 0xcd, 0x11, 0xc2,
+ 0x61, 0x3c, 0xb5, 0x0e, 0x74, 0x1f, 0xc0, 0x70, 0x15, 0xd1, 0x92, 0x97, 0xb1, 0x03, 0x95, 0x6a, 0xd3, 0xed,
+ 0x5d, 0x06, 0xe7, 0xac, 0xf0, 0x3c, 0xe8, 0x32, 0x44, 0xf4, 0xac, 0xe4, 0x22, 0xf0, 0xda, 0x1c, 0xd3, 0x78,
+ 0x8d, 0xfb, 0xc0, 0x61, 0xb1, 0xd6, 0xf4, 0xbc, 0x26, 0xd7, 0x1c, 0x0b, 0x8d, 0x5f, 0xba, 0xb6, 0xb9, 0xc3,
+ 0xf1, 0xad, 0x5e, 0x59, 0xd3, 0xd7, 0xa2, 0x8d, 0xe1, 0x85, 0x6b, 0x01, 0x10, 0xf3, 0x2e, 0xe8, 0x17, 0xae,
+ 0x0a, 0xdd, 0x88, 0x16, 0xd4, 0x1d, 0xca, 0x1d, 0x37, 0xe9, 0x8e, 0x3d, 0x81, 0x7b, 0xc4, 0xb3, 0xc3, 0x71,
+ 0x32, 0xea, 0x3b, 0xe7, 0x3f, 0x22, 0x8f, 0xed, 0xc0, 0x72, 0x9a, 0x59, 0xa4, 0xc9, 0xba, 0xac, 0x17, 0xc4,
+ 0xc5, 0xef, 0xba, 0xf2, 0x22, 0x42, 0xb2, 0x26, 0x9a, 0x0f, 0x29, 0x11, 0x0b, 0xc0, 0x5d, 0x1a, 0xd6, 0xe0,
+ 0xba, 0xd6, 0xa0, 0x91, 0xeb, 0x0c, 0x93, 0x2d, 0x33, 0x68, 0xf7, 0x3b, 0x4e, 0x12, 0xe0, 0x75, 0xfd, 0xaf,
+ 0xb4, 0x3f, 0x89, 0x5f, 0xdf, 0x29, 0x74, 0x15, 0x2b, 0xbb, 0x53, 0x97, 0x29, 0xbd, 0x8c, 0x58, 0xfa, 0x76,
+ 0x05, 0x27, 0x43, 0xcb, 0xcc, 0x81, 0x79, 0x98, 0xa7, 0x37, 0xbf, 0x47, 0x8e, 0x28, 0x6b, 0xda, 0x8e, 0xc9,
+ 0x8e, 0x60, 0x59, 0xe0, 0x9e, 0x00, 0x71, 0xc4, 0x75, 0x21, 0x6a, 0xcc, 0xb0, 0xa2, 0x2f, 0x4f, 0x1b, 0x37,
+ 0x96, 0x2d, 0x9c, 0xc4, 0xa9, 0x60, 0x1a, 0xd4, 0x16, 0xd0, 0x8a, 0x9d, 0x61, 0x53, 0x67, 0xe2, 0x83, 0xf0,
+ 0xbe, 0xad, 0xe5, 0x1a, 0x76, 0x3c, 0x42, 0x78, 0x99, 0x9d, 0xa4, 0xcf, 0xaa, 0x6a, 0x5b, 0x8d, 0xfd, 0xd5,
+ 0xa4, 0x3f, 0x8a, 0xe7, 0x88, 0x8a, 0x04, 0x4c, 0xdb, 0x90, 0xea, 0x58, 0x16, 0x96, 0xc4, 0x20, 0x20, 0x5b,
+ 0x09, 0xce, 0xb9, 0x8d, 0x1c, 0xc9, 0x47, 0x19, 0x34, 0xbd, 0xd9, 0x62, 0x37, 0x3e, 0x8c, 0x7f, 0x0b, 0xe6,
+ 0xf0, 0xc3, 0xc9, 0x82, 0x5d, 0xb6, 0xa8, 0xe5, 0xfa, 0xe6, 0x15, 0xaa, 0x7b, 0x6a, 0x2a, 0x2e, 0x36, 0x26,
+ 0x2c, 0x37, 0xe6, 0x40, 0x83, 0x6a, 0x72, 0x0e, 0x7f, 0xf4, 0x5c, 0xf4, 0x29, 0x18, 0x1d, 0xf9, 0x99, 0x9c,
+ 0x3f, 0x41, 0x89, 0x54, 0x98, 0xb9, 0x04, 0x81, 0xc8, 0xd5, 0xb8, 0x29, 0x27, 0x09, 0x91, 0x83, 0xfc, 0x64,
+ 0xd1, 0x2a, 0xed, 0x00, 0x18, 0xb2, 0xd2, 0x5c, 0x0b, 0xef, 0xcb, 0x89, 0x56, 0xff, 0xb6, 0x5e, 0xa4, 0x2b,
+ 0xd2, 0x07, 0x42, 0x8e, 0xe8, 0x75, 0xc7, 0x24, 0x13, 0xe5, 0x72, 0x0d, 0xe3, 0xfd, 0xfa, 0x20, 0x32, 0x8d,
+ 0xbe, 0x71, 0xb7, 0xe1, 0xa8, 0x01, 0x7d, 0xeb, 0x5d, 0x86, 0x98, 0x14, 0xe2, 0x94, 0x92, 0x95, 0x1b, 0x34,
+ 0x0d, 0xf4, 0x5a, 0x7f, 0x5d, 0x9c, 0x40, 0xa2, 0x1c, 0x48, 0x98, 0x65, 0x0d, 0xf4, 0x7d, 0xc7, 0x28, 0x88,
+ 0x4c, 0x92, 0xd9, 0x71, 0x31, 0x32, 0xe0, 0xe9, 0x54, 0x46, 0xa8, 0xe0, 0x92, 0xc1, 0x98, 0xfd, 0x32, 0xa7,
+ 0x87, 0xfa, 0xdc, 0x72, 0x48, 0xff, 0xb7, 0xb3, 0x84, 0x0b, 0x3e, 0x57, 0xb8, 0x7b, 0x90, 0x1f, 0x9f, 0xca,
+ 0xff, 0x97, 0xa3, 0xcc, 0x2d, 0x39, 0x68, 0x7e, 0x09, 0xfe, 0xd4, 0xbf, 0x73, 0xdd, 0x95, 0x24, 0x1e, 0xfe,
+ 0x88, 0x9d, 0x1a, 0xc6, 0xc6, 0x32, 0xa4, 0x2a, 0xdc, 0xb6, 0x13, 0x34, 0xe5, 0x99, 0x8f, 0xf9, 0x1e, 0xde,
+ 0xc4, 0x61, 0x83, 0x8e, 0x7d, 0xb2, 0xd9, 0xcc, 0x79, 0xbf, 0x28, 0x70, 0x4f, 0x69, 0xa7, 0xbc, 0xf4, 0x1c,
+ 0xf3, 0xf5, 0xb2, 0xa6, 0xbf, 0xb0, 0xca, 0xeb, 0x63, 0x33, 0xb2, 0x2d, 0x52, 0xb0, 0x4b, 0x4f, 0x13, 0x86,
+ 0x0f, 0x32, 0xac, 0xd4, 0xb2, 0x08, 0x3b, 0xe8, 0x53, 0x32, 0xa6, 0xf1, 0xab, 0x22, 0x0c, 0xee, 0xaf, 0x8c,
+ 0xdb, 0x08, 0x2c, 0x05, 0x1f, 0x22, 0x80, 0x58, 0x0c, 0x20, 0xe6, 0x10, 0x14, 0xf3, 0xeb, 0xd9, 0x36, 0x5f,
+ 0x98, 0x78, 0x73, 0x6e, 0x3a, 0x50, 0x6f, 0x00, 0x87, 0x71, 0xaa, 0x40, 0xc8, 0x5a, 0x4e, 0x9a, 0x69, 0xff,
+ 0xd6, 0x53, 0x72, 0x64, 0x3d, 0xf0, 0xc6, 0x90, 0x2a, 0xf7, 0x50, 0x68, 0xba, 0xae, 0x98, 0xcd, 0x11, 0xbc,
+ 0x65, 0xf3, 0x70, 0xda, 0xa8, 0x0e, 0x16, 0x0e, 0xe3, 0x59, 0xb5, 0x02, 0x37, 0x71, 0x7a, 0x1e, 0xad, 0xbf,
+ 0x0a, 0x87, 0xbd, 0xf6, 0x61, 0xcd, 0x4f, 0x85, 0x83, 0xec, 0x68, 0x2b, 0xe1, 0x09, 0x1f, 0xb9, 0xc9, 0xdf,
+ 0x30, 0x5d, 0xef, 0xf2, 0x53, 0x4d, 0x67, 0x29, 0xf8, 0xa5, 0x5f, 0xf9, 0xcb, 0x7f, 0x2c, 0xac, 0xa6, 0xd0,
+ 0xde, 0x15, 0x71, 0xe2, 0x43, 0x54, 0x5f, 0x75, 0x8f, 0x98, 0x42, 0x0d, 0x87, 0xb1, 0x1e, 0xb6, 0xa9, 0x0d,
+ 0xd5, 0x73, 0xd9, 0x14, 0x4f, 0xb0, 0x0f, 0x6d, 0x6a, 0xe9, 0x4c, 0xed, 0x56, 0xac, 0x87, 0x7a, 0x87, 0xb1,
+ 0xe6, 0x98, 0x13, 0x10, 0xbd, 0x05, 0x9b, 0xc6, 0x56, 0xf5, 0x5e, 0x9c, 0xdc, 0x92, 0x9e, 0xa5, 0x96, 0x09,
+ 0x6d, 0x9d, 0x07, 0x31, 0xac, 0xa0, 0x87, 0x43, 0x0e, 0x3f, 0x9d, 0xd5, 0x1a, 0x87, 0x89, 0xa2, 0x68, 0x7f,
+ 0xfa, 0xdb, 0x3c, 0x74, 0x06, 0x3d, 0xdb, 0xe7, 0x8e, 0xff, 0x46, 0x05, 0x57, 0xe2, 0xdd, 0x12, 0x97, 0x9e,
+ 0xa6, 0x1e, 0x3f, 0x54, 0x2c, 0xbf, 0x1c, 0x1a, 0xb0, 0xb8, 0x4f, 0x4e, 0x35, 0xcd, 0x3a, 0xfd, 0x0b, 0x1f,
+ 0x50, 0x49, 0x9f, 0x13, 0xd7, 0xf8, 0xee, 0x41, 0x77, 0x6c, 0xe5, 0xbe, 0x3a, 0xdf, 0xab, 0xf1, 0x9c, 0x27,
+ 0x42, 0xa7, 0x90, 0x68, 0x44, 0xee, 0x69, 0x7c, 0x24, 0xb4, 0x3b, 0x92, 0xfe, 0xaa, 0x6d, 0x1a, 0x36, 0x81,
+ 0x36, 0x4c, 0x17, 0xc6, 0xa1, 0xe1, 0x8d, 0xe6, 0xb7, 0x56, 0x61, 0xd5, 0xd8, 0x9d, 0x14, 0x11, 0xae, 0x9a,
+ 0x0f, 0x1d, 0x53, 0x74, 0xa0, 0x46, 0x47, 0xe1, 0x32, 0x78, 0x9a, 0x5b, 0x96, 0xf8, 0x4c, 0x5d, 0x6a, 0x23,
+ 0x31, 0x3e, 0x89, 0xe8, 0x30, 0xd4, 0x32, 0x84, 0xda, 0x2b, 0x6c, 0x13, 0x6c, 0x72, 0xe2, 0x3d, 0x1a, 0x8a,
+ 0x7d, 0x23, 0xed, 0x07, 0x24, 0x7f, 0xe9, 0xd9, 0x46, 0x15, 0xad, 0xcd, 0x7b, 0x39, 0x26, 0x8d, 0x56, 0xa1,
+ 0xcf, 0xc8, 0x10, 0x9d, 0x95, 0x0a, 0x41, 0x9f, 0x97, 0x93, 0xd5, 0xc1, 0xb2, 0x3d, 0xd2, 0xd1, 0xac, 0xce,
+ 0x7e, 0xae, 0x83, 0x76, 0xc6, 0x19, 0x35, 0x6b, 0x3e, 0xcf, 0xee, 0xcb, 0x7f, 0xd8, 0x5c, 0x17, 0x2e, 0xae,
+ 0xb2, 0x06, 0xd2, 0xd8, 0x3a, 0xdb, 0x14, 0xb9, 0x7b, 0x27, 0x1b, 0x4b, 0x44, 0x9e, 0xde, 0xff, 0xa5, 0x47,
+ 0x72, 0x3b, 0xb0, 0xa8, 0x27, 0xde, 0xf1, 0x21, 0x47, 0xc6, 0xa1, 0x2c, 0xb6, 0x19, 0x09, 0x29, 0xed, 0xa0,
+ 0xa9, 0x49, 0x95, 0x09, 0x39, 0xaf, 0x3a, 0xbc, 0x7e, 0xee, 0x42, 0x70, 0xdb, 0xe9, 0x78, 0xfc, 0x3f, 0x8d,
+ 0xb6, 0x8b, 0x49, 0x6e, 0xf7, 0x01, 0x32, 0x7c, 0xee, 0x55, 0x4a, 0xc8, 0x15, 0x62, 0x66, 0x23, 0x6d, 0xdb,
+ 0xb4, 0x18, 0x80, 0x3d, 0x26, 0x85, 0x0a, 0xf5, 0xca, 0xe5, 0x95, 0xf8, 0x88, 0x01, 0x22, 0x5d, 0x03, 0x0d,
+ 0x41, 0x08, 0xf0, 0x30, 0x35, 0x28, 0xcf, 0xc2, 0x73, 0xcd, 0xb1, 0x3e, 0xb3, 0xb6, 0x29, 0x03, 0xe4, 0x72,
+ 0xb6, 0x09, 0x46, 0x0d, 0xe3, 0x32, 0x3e, 0x2a, 0xab, 0x8e, 0x96, 0xa4, 0x21, 0x37, 0x99, 0x94, 0xda, 0x08,
+ 0xd4, 0x44, 0x9f, 0xfc, 0xdf, 0x5e, 0x77, 0xe0, 0x82, 0xda, 0xff, 0x84, 0xfe, 0x3c, 0xf6, 0x1b, 0x95, 0x5e,
+ 0x3c, 0x83, 0x6d, 0xb0, 0xdb, 0xea, 0xcd, 0x72, 0xa0, 0x28, 0x93, 0xd9, 0x2e, 0xfe, 0xd1, 0x37, 0xd2, 0xcc,
+ 0xe9, 0xc3, 0x6a, 0x0e, 0x15, 0x1a, 0x24, 0xae, 0x50, 0x66, 0x0f, 0xec, 0x10, 0x8e, 0x8d, 0x3a, 0xbd, 0x53,
+ 0x72, 0x33, 0x38, 0xc7, 0x0f, 0x09, 0x17, 0xe9, 0x8d, 0xcd, 0x2d, 0xff, 0xde, 0xed, 0x3c, 0x4a, 0x1f, 0x72,
+ 0x7a, 0x0a, 0xbb, 0xb7, 0xcb, 0xba, 0x94, 0x18, 0x23, 0xac, 0x8b, 0x37, 0x6a, 0x98, 0xaf, 0x60, 0x05, 0xf6,
+ 0x16, 0xc7, 0x31, 0x1e, 0x2f, 0x3f, 0xc6, 0xf1, 0x60, 0x26, 0x2a, 0x02, 0x10, 0x62, 0xe6, 0x12, 0x2b, 0x40,
+ 0xfe, 0x41, 0x48, 0xb1, 0xb4, 0x84, 0x75, 0x95, 0x06, 0xbe, 0x86, 0x20, 0x64, 0xb5, 0x78, 0x54, 0x22, 0x58,
+ 0x01, 0x2b, 0x09, 0x61, 0xdb, 0x40, 0x7c, 0xc2, 0xb1, 0x62, 0x37, 0x6a, 0x30, 0x88, 0xf0, 0x8e, 0x81, 0x71,
+ 0x5b, 0x99, 0x85, 0xf1, 0xf4, 0xe0, 0xce, 0x29, 0x76, 0x3c, 0x44, 0x27, 0xd2, 0x16, 0x38, 0x45, 0xe5, 0xb3,
+ 0x6d, 0xf2, 0xda, 0x93, 0x65, 0xa0, 0x4e, 0x99, 0xa3, 0x8f, 0x1c, 0x7e, 0xcb, 0xd6, 0xa3, 0xd4, 0x44, 0x79,
+ 0xb9, 0xeb, 0x0d, 0x55, 0x63, 0x9c, 0xce, 0x37, 0x4d, 0xd5, 0x5c, 0xd1, 0xad, 0x9e, 0xac, 0x27, 0xd3, 0xd3,
+ 0x52, 0x6e, 0x01, 0x30, 0x47, 0x43, 0x18, 0x9a, 0x5f, 0x51, 0x39, 0xa2, 0xbf, 0x53, 0x05, 0x8b, 0x30, 0x66,
+ 0x6b, 0xc2, 0xdb, 0x44, 0xe4, 0x4e, 0x67, 0xa4, 0xb5, 0xcf, 0x1b, 0x5b, 0xac, 0x65, 0xbf, 0x31, 0x4f, 0x99,
+ 0xa3, 0x73, 0xcd, 0x8a, 0x1d, 0x41, 0x52, 0xe8, 0x23, 0x75, 0x2f, 0x1e, 0xb4, 0x8d, 0x9e, 0x15, 0xe3, 0x11,
+ 0x9f, 0xbd, 0xea, 0x53, 0xce, 0x7b, 0xe4, 0xd9, 0x0c, 0xe9, 0x31, 0xb1, 0x4d, 0xd5, 0x89, 0x5b, 0x4b, 0x72,
+ 0x78, 0x4f, 0xc2, 0x2e, 0x23, 0xd7, 0xba, 0xf4, 0xbd, 0x12, 0x34, 0xfd, 0x8d, 0x6c, 0x36, 0xff, 0x81, 0x62,
+ 0x9f, 0x7a, 0x2e, 0xf9, 0xd8, 0x5c, 0x35, 0x50, 0x0b, 0x4b, 0x6f, 0x95, 0x7e, 0xae, 0xce, 0x00, 0x0c, 0x05,
+ 0x1f, 0x45, 0x0e, 0xa3, 0x7b, 0x71, 0x00, 0x89, 0x78, 0x90, 0xeb, 0xcd, 0xa0, 0x30, 0x54, 0xaa, 0x1d, 0x40,
+ 0x6b, 0xa7, 0x38, 0x7f, 0xaf, 0x2a, 0x52, 0xd4, 0x90, 0xb3, 0x43, 0x0e, 0x15, 0xd5, 0xf1, 0x87, 0xe9, 0x81,
+ 0x3d, 0x46, 0x9b, 0x07, 0xad, 0xce, 0x03, 0x4a, 0x58, 0x49, 0x4c, 0x7b, 0x17, 0x27, 0x0c, 0xc9, 0xca, 0xb0,
+ 0x5b, 0x0d, 0xaf, 0x3a, 0x32, 0xf4, 0x0f, 0x74, 0x90, 0xca, 0xb0, 0xd2, 0x35, 0x71, 0xf0, 0x78, 0xd4, 0xa1,
+ 0xfe, 0x5c, 0x69, 0x1f, 0xc0, 0x6e, 0xb6, 0x67, 0x1f, 0xc7, 0x53, 0xd3, 0x8f, 0x83, 0xcc, 0xad, 0xb3, 0xff,
+ 0x4a, 0x3c, 0x06, 0x43, 0xff, 0x2b, 0x1a, 0x67, 0xe2, 0x10, 0x89, 0x91, 0xa7, 0x8b, 0x52, 0xb1, 0xaa, 0x0e,
+ 0xd2, 0x57, 0x6b, 0x19, 0x20, 0x8c, 0xc5, 0x3f, 0x96, 0x58, 0xd8, 0x92, 0x59, 0x78, 0x64, 0xf5, 0xba, 0x2d,
+ 0x9c, 0x93, 0xed, 0x93, 0x8c, 0x37, 0x41, 0xe3, 0x33, 0xe4, 0x89, 0xcb, 0x91, 0x60, 0xbe, 0x74, 0xce, 0x7f,
+ 0x10, 0x19, 0xd2, 0x7b, 0x4d, 0x2d, 0x3c, 0x0f, 0x6c, 0xc1, 0x46, 0xf6, 0xb8, 0xb8, 0x5f, 0x0c, 0x18, 0x7a,
+ 0xed, 0x3c, 0x68, 0x44, 0xb7, 0x22, 0xd6, 0x98, 0x53, 0xec, 0x29, 0x44, 0xe6, 0x34, 0x0e, 0x67, 0xd0, 0x79,
+ 0x16, 0x20, 0x7a, 0xc5, 0x6d, 0xa1, 0xe3, 0xcd, 0xb5, 0x90, 0xdb, 0x52, 0xc7, 0x1d, 0x67, 0x97, 0xba, 0xb2,
+ 0x69, 0x68, 0x7c, 0x52, 0x83, 0xf2, 0xa0, 0x69, 0x89, 0x7f, 0xa0, 0x1a, 0x70, 0x54, 0x19, 0x8c, 0xbf, 0x2f,
+ 0x9d, 0x35, 0x80, 0x56, 0x12, 0x7e, 0x85, 0xa2, 0x08, 0xa9, 0x9f, 0x8e, 0xb1, 0x46, 0x60, 0xaf, 0x8e, 0x0a,
+ 0x1b, 0x0c, 0x94, 0xcd, 0x4e, 0x3d, 0x2d, 0x7d, 0x46, 0x3c, 0x06, 0xbc, 0x0b, 0xaf, 0x69, 0x6b, 0xd7, 0xc4,
+ 0x36, 0x4d, 0x1e, 0x52, 0xf9, 0x46, 0xd1, 0x5a, 0x3b, 0x18, 0x09, 0x57, 0x73, 0x47, 0xe9, 0xdd, 0xed, 0xa2,
+ 0xdc, 0x48, 0x10, 0x89, 0x01, 0x82, 0xac, 0xec, 0x3f, 0xad, 0xc0, 0xdd, 0x31, 0xcb, 0x3b, 0x50, 0x5c, 0x94,
+ 0x69, 0x48, 0xad, 0x5a, 0xa2, 0x64, 0x64, 0x82, 0x11, 0x6d, 0xad, 0xe7, 0x63, 0x1c, 0x98, 0x9f, 0xf5, 0xf3,
+ 0x1c, 0x2a, 0x8f, 0x4a, 0x0a, 0x9d, 0xa1, 0x8d, 0x04, 0x0d, 0x74, 0x95, 0x1b, 0x14, 0xd9, 0xa2, 0xe6, 0xa4,
+ 0x3a, 0x83, 0xc3, 0xc2, 0x35, 0x1a, 0xe3, 0x24, 0x0a, 0x0b, 0x05, 0xd3, 0xc0, 0x69, 0xa1, 0xdc, 0x88, 0x67,
+ 0x8f, 0xcb, 0xba, 0xd6, 0xa8, 0xee, 0x5f, 0xd5, 0x9f, 0xff, 0xc9, 0xbb, 0xe1, 0x6d, 0xb8, 0xa4, 0x61, 0x29,
+ 0xcf, 0x4a, 0x25, 0x9a, 0xa4, 0xac, 0xe3, 0x0a, 0x6a, 0xb3, 0x7c, 0xeb, 0x26, 0x26, 0xa2, 0x11, 0x16, 0x09,
+ 0xfb, 0x82, 0x39, 0x73, 0xac, 0xce, 0x2c, 0x8b, 0x1b, 0x64, 0xf3, 0x39, 0x2f, 0xf6, 0xc4, 0xcf, 0x4f, 0xfc,
+ 0x88, 0xdd, 0xfa, 0xd7, 0x20, 0x17, 0x40, 0x6d, 0x05, 0xdb, 0x75, 0xbf, 0x7c, 0x2f, 0xb0, 0x76, 0x4c, 0xc4,
+ 0xc7, 0x06, 0xac, 0x60, 0x54, 0x75, 0x2b, 0x65, 0xf3, 0x40, 0x89, 0x17, 0xe6, 0xa3, 0xd3, 0x8d, 0x53, 0xd8,
+ 0xf2, 0x34, 0x92, 0xb1, 0xc0, 0x81, 0xb2, 0xb4, 0xdf, 0x06, 0x09, 0xb4, 0xcf, 0x02, 0x46, 0x13, 0x7b, 0xbf,
+ 0xdb, 0xdc, 0xe1, 0x93, 0xcd, 0x54, 0x99, 0x4c, 0x40, 0xe8, 0x8b, 0x48, 0xa9, 0x04, 0xc5, 0x6c, 0xd3, 0x3f,
+ 0x9b, 0x7c, 0xe5, 0x8b, 0xd7, 0x14, 0xbc, 0xdb, 0xe6, 0x23, 0x38, 0xd5, 0x3f, 0x17, 0x5c, 0x13, 0x4f, 0x4f,
+ 0x5d, 0xd3, 0x9a, 0xbc, 0xfc, 0xa9, 0xcb, 0xe3, 0x8c, 0x1f, 0x3e, 0xb1, 0x7d, 0x2e, 0xb1, 0xe5, 0x78, 0x34,
+ 0xcd, 0xdf, 0xdb, 0x05, 0x12, 0xc5, 0xc3, 0xf2, 0x49, 0xf4, 0x34, 0xee, 0x0c, 0xa7, 0x08, 0x07, 0x75, 0xdf,
+ 0xc5, 0x0c, 0x73, 0xce, 0xc2, 0xd4, 0x4c, 0x82, 0x56, 0x5b, 0xe7, 0xf8, 0xe3, 0xe5, 0x00, 0xaa, 0x67, 0xa9,
+ 0x71, 0xf8, 0x2d, 0x4e, 0xc4, 0xc5, 0x1a, 0x96, 0x92, 0xf6, 0x9d, 0xd6, 0xce, 0x52, 0x6e, 0x01, 0x77, 0x47,
+ 0x29, 0xaf, 0x04, 0x56, 0x23, 0x63, 0x84, 0x16, 0xb9, 0x7b, 0xc5, 0x25, 0x7b, 0x7a, 0x43, 0xb2, 0x0b, 0x16,
+ 0xa9, 0x62, 0x30, 0xb7, 0x56, 0x77, 0x77, 0xaa, 0x44, 0x2f, 0x9a, 0x18, 0x6a, 0x16, 0xa8, 0x39, 0xd9, 0xf3,
+ 0xc4, 0x8b, 0x17, 0x65, 0x1b, 0x43, 0xc5, 0x36, 0x82, 0x5d, 0xa1, 0x60, 0x57, 0x21, 0xdd, 0x15, 0x62, 0x9a,
+ 0xa3, 0x90, 0x51, 0x8b, 0xbb, 0x70, 0xe3, 0x95, 0xea, 0x37, 0x72, 0x4e, 0xd0, 0x22, 0x15, 0xd7, 0xdb, 0x00,
+ 0x63, 0xaf, 0x41, 0x9b, 0xd5, 0x90, 0x6b, 0x2c, 0x6f, 0xe1, 0xbe, 0x2f, 0xf4, 0xee, 0xd1, 0xbe, 0x39, 0xae,
+ 0x3b, 0x25, 0x23, 0x22, 0x03, 0x80, 0x85, 0x7a, 0xd9, 0x31, 0xb6, 0x31, 0x9b, 0x03, 0xd6, 0x28, 0xa6, 0xdc,
+ 0xf4, 0x2a, 0x72, 0x96, 0x70, 0xce, 0x4a, 0x2b, 0xfc, 0xdc, 0xf3, 0x58, 0x20, 0x8e, 0xee, 0x5e, 0xbb, 0x64,
+ 0x8b, 0x58, 0x04, 0xca, 0x62, 0x4d, 0x36, 0xa9, 0x97, 0x87, 0xa7, 0xf1, 0x19, 0x91, 0xa4, 0xd0, 0x3e, 0xf4,
+ 0x21, 0x1b, 0x1a, 0xe5, 0x4a, 0x04, 0x65, 0x63, 0xdd, 0xc6, 0x9d, 0x47, 0x70, 0x11, 0x40, 0x45, 0x78, 0xed,
+ 0x14, 0xf6, 0x7d, 0x64, 0xa9, 0x83, 0x0f, 0x3c, 0xec, 0x72, 0xf2, 0xa3, 0xd4, 0xcf, 0x63, 0x29, 0xf0, 0x6c,
+ 0xe3, 0xde, 0xbe, 0x6e, 0xd6, 0x74, 0x35, 0x5c, 0x72, 0xbc, 0x0e, 0x19, 0x7c, 0xd8, 0x17, 0x1b, 0x42, 0x3f,
+ 0x75, 0xd4, 0x69, 0x52, 0xc8, 0x8f, 0xa0, 0xfc, 0x50, 0x1d, 0x6d, 0x5e, 0x1d, 0x9a, 0x80, 0xd7, 0xf6, 0x60,
+ 0x96, 0x01, 0x38, 0xbb
};
// context = simple_context_zh
diff --git a/demo/mcu/stm32f407/stm32f407g-disc1/Src/main.c b/demo/mcu/stm32f407/stm32f407g-disc1/Src/main.c
index 971661c53..56444a931 100644
--- a/demo/mcu/stm32f407/stm32f407g-disc1/Src/main.c
+++ b/demo/mcu/stm32f407/stm32f407g-disc1/Src/main.c
@@ -63,8 +63,14 @@ static void inference_callback(pv_inference_t *inference) {
}
static void error_handler(void) {
- while (true)
- ;
+ printf("\r\n");
+ while (true);
+}
+
+void print_error_message(char **message_stack, int32_t message_stack_depth) {
+ for (int32_t i = 0; i < message_stack_depth; i++) {
+ printf("[%ld] %s\n", i, message_stack[i]);
+ }
}
int main(void) {
@@ -95,6 +101,10 @@ int main(void) {
pv_picovoice_t *handle = NULL;
+ char **message_stack = NULL;
+ int32_t message_stack_depth = 0;
+ pv_status_t error_status;
+
status = pv_picovoice_init(
ACCESS_KEY,
MEMORY_BUFFER_SIZE,
@@ -112,6 +122,16 @@ int main(void) {
&handle);
if (status != PV_STATUS_SUCCESS) {
printf("Picovoice init failed with '%s'", pv_status_to_string(status));
+
+ error_status = pv_get_error_stack(&message_stack, &message_stack_depth);
+ if (error_status != PV_STATUS_SUCCESS) {
+ printf("Unable to get Picovoice error state with '%s':\n", pv_status_to_string(error_status));
+ error_handler();
+ }
+
+ print_error_message(message_stack, message_stack_depth);
+ pv_free_error_stack(message_stack);
+
error_handler();
}
diff --git a/demo/mcu/stm32f411/stm32f411e-disco/.cproject b/demo/mcu/stm32f411/stm32f411e-disco/.cproject
index 0168f8b05..e831ef417 100644
--- a/demo/mcu/stm32f411/stm32f411e-disco/.cproject
+++ b/demo/mcu/stm32f411/stm32f411e-disco/.cproject
@@ -1,8 +1,8 @@
-
-
+
+
@@ -14,28 +14,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -92,8 +92,8 @@
-
-
+
+
@@ -105,28 +105,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -183,8 +183,8 @@
-
-
+
+
@@ -196,28 +196,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -274,8 +274,8 @@
-
-
+
+
@@ -287,28 +287,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -365,8 +365,8 @@
-
-
+
+
@@ -378,28 +378,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -456,8 +456,8 @@
-
-
+
+
@@ -469,28 +469,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -547,8 +547,8 @@
-
-
+
+
@@ -560,28 +560,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -638,8 +638,8 @@
-
-
+
+
@@ -651,28 +651,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -729,8 +729,8 @@
-
-
+
+
@@ -742,28 +742,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -820,8 +820,8 @@
-
-
+
+
@@ -833,28 +833,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -911,8 +911,8 @@
-
-
+
+
@@ -924,28 +924,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -1002,8 +1002,8 @@
-
-
+
+
@@ -1015,28 +1015,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -1093,8 +1093,8 @@
-
-
+
+
@@ -1106,28 +1106,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -1184,8 +1184,8 @@
-
-
+
+
@@ -1197,28 +1197,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -1275,8 +1275,8 @@
-
-
+
+
@@ -1288,28 +1288,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -1366,8 +1366,8 @@
-
-
+
+
@@ -1379,28 +1379,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -1457,6 +1457,97 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/demo/mcu/stm32f411/stm32f411e-disco/Inc/pv_params.h b/demo/mcu/stm32f411/stm32f411e-disco/Inc/pv_params.h
index 7baaa9aec..3f04ec8e7 100644
--- a/demo/mcu/stm32f411/stm32f411e-disco/Inc/pv_params.h
+++ b/demo/mcu/stm32f411/stm32f411e-disco/Inc/pv_params.h
@@ -1,6 +1,6 @@
/*
- Copyright 2020-2022 Picovoice Inc.
+ Copyright 2020-2023 Picovoice Inc.
You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
file accompanying this source.
@@ -16,510 +16,334 @@
#include
-#if defined(__PV_LANGUAGE_ENGLISH__)
+#if defined(__PV_LANGUAGE_ARABIC__)
-// wake-word = picovoice
+// wake-word = مرحبا الكمبيوتر
static const uint8_t KEYWORD_ARRAY[] = {
- 0x4b, 0x5e, 0x3b, 0x23, 0xa2, 0xbf, 0x43, 0xb1, 0x35, 0x08, 0x43, 0x8f, 0x19, 0x49, 0x67, 0x6e, 0xa9, 0xa1,
- 0xe8, 0xaa, 0x1e, 0x59, 0x2e, 0xc8, 0x0e, 0x94, 0xa2, 0xac, 0x10, 0x6b, 0xe2, 0xa1, 0xb5, 0x4c, 0xe4, 0x15,
- 0x3a, 0xad, 0x76, 0xa8, 0xd9, 0x2b, 0xae, 0xc3, 0x07, 0x87, 0x18, 0xdb, 0xf0, 0x2f, 0x84, 0xdc, 0xfd, 0xe3,
- 0x48, 0x41, 0x27, 0xb4, 0x5f, 0x52, 0x9f, 0x3d, 0x3a, 0xa5, 0xd7, 0x3a, 0x1b, 0xf6, 0x29, 0x5b, 0xbe, 0x8e,
- 0x91, 0x30, 0x17, 0x5c, 0x36, 0x38, 0x1f, 0x20, 0x43, 0x3e, 0x53, 0x3a, 0xd3, 0x6d, 0x47, 0xc5, 0x69, 0xa3,
- 0xff, 0x4a, 0x38, 0x6f, 0x40, 0x5a, 0x8e, 0x49, 0xe1, 0x27, 0xb5, 0xa9, 0xf8, 0xcf, 0xc3, 0x40, 0x18, 0x55,
- 0x7f, 0x7e, 0x9c, 0x9a, 0xbe, 0x26, 0xe6, 0x01, 0xe3, 0x5e, 0x2b, 0x8c, 0x63, 0xb4, 0xc1, 0x73, 0xbc, 0x05,
- 0x2a, 0xc2, 0x65, 0x59, 0x88, 0x65, 0x04, 0xc4, 0xa1, 0x3d, 0x35, 0x4e, 0xf0, 0xe0, 0xa5, 0x32, 0x07, 0xd8,
- 0x1d, 0x47, 0x13, 0x56, 0xb7, 0x21, 0x2a, 0xd8, 0xf4, 0x1c, 0x1b, 0x6b, 0xd5, 0xf0, 0x9b, 0xdf, 0x47, 0xb8,
- 0xea, 0x0e, 0x96, 0xea, 0x16, 0xdc, 0x42, 0x1e, 0xbd, 0x9c, 0xc1, 0xff, 0x88, 0xc2, 0xee, 0xdc, 0x6e, 0x01,
- 0x98, 0xbc, 0x0e, 0xd8, 0xd0, 0x6e, 0xdb, 0x60, 0xad, 0x5d, 0x6e, 0xa0, 0xe9, 0x53, 0x83, 0xf0, 0x6e, 0xed,
- 0x20, 0xaf, 0x21, 0xa5, 0x7b, 0x24, 0x39, 0x43, 0xe7, 0x6b, 0xdb, 0x3a, 0x03, 0x70, 0xbb, 0xc5, 0x47, 0xf1,
- 0xed, 0xcc, 0xff, 0x43, 0xeb, 0xcb, 0x95, 0xe1, 0x74, 0x91, 0x16, 0xbb, 0xe0, 0xa6, 0x51, 0x91, 0x63, 0x61,
- 0x49, 0x7b, 0x8d, 0xc0, 0x4c, 0x68, 0x81, 0x09, 0x6e, 0x1a, 0xb8, 0x8f, 0x43, 0x8a, 0x91, 0xe8, 0xdb, 0x48,
- 0xce, 0x46, 0xca, 0x45, 0x84, 0xd0, 0xa0, 0x96, 0x12, 0x29, 0xbc, 0x2e, 0xfc, 0xd4, 0x49, 0xfe, 0xd3, 0xa7,
- 0x40, 0x76, 0x7b, 0xa9, 0x48, 0x16, 0x50, 0x64, 0xe2, 0xc8, 0x35, 0xa2, 0xba, 0x37, 0xec, 0xa0, 0xa8, 0x5b,
- 0xea, 0xc8, 0x63, 0x17, 0xa9, 0x67, 0x74, 0x3b, 0x39, 0xd8, 0x25, 0xe3, 0x00, 0xd3, 0x5d, 0xf3, 0x10, 0x82,
- 0x0e, 0xf7, 0x75, 0x3e, 0x95, 0xd6, 0x34, 0xbd, 0xf3, 0xc3, 0x6c, 0x55, 0xba, 0x25, 0x71, 0x70, 0x4e, 0x25,
- 0xe2, 0x46, 0x1d, 0x70, 0x31, 0xab, 0xca, 0x8d, 0xa1, 0x9d, 0xbd, 0xf1, 0x8d, 0xea, 0x4d, 0xbc, 0x0e, 0x57,
- 0xd8, 0x6d, 0xd7, 0xf5, 0xf8, 0xf5, 0x1d, 0xf0, 0x00, 0x4a, 0xa6, 0xdf, 0xeb, 0xec, 0x85, 0x84, 0x67, 0x7e,
- 0x50, 0x60, 0x07, 0x9b, 0xb9, 0xd9, 0x6f, 0x13, 0xef, 0xf6, 0x6e, 0x47, 0xbf, 0xc9, 0xbc, 0x53, 0x4b, 0x2b,
- 0x64, 0xbe, 0xb6, 0xa8, 0x3d, 0x4e, 0xba, 0x1d, 0xa4, 0x55, 0x4c, 0xd2, 0xce, 0x5a, 0x0e, 0x0e, 0xd9, 0xde,
- 0x23, 0x2a, 0x66, 0x13, 0x2f, 0x17, 0x1a, 0xc0, 0x2b, 0x20, 0xfd, 0x95, 0x9d, 0x79, 0x59, 0x46, 0x9a, 0x4d,
- 0x44, 0x9b, 0xcb, 0x5c, 0x3f, 0x24, 0x8c, 0x56, 0x0d, 0x67, 0xdb, 0x40, 0x73, 0x28, 0x38, 0x52, 0x7d, 0x40,
- 0xce, 0x43, 0x1b, 0xe7, 0xcd, 0xef, 0xc9, 0x8d, 0x4b, 0xd7, 0x7d, 0xc3, 0xbf, 0x47, 0xd1, 0x7e, 0x5a, 0x55,
- 0x73, 0x9d, 0x23, 0x09, 0x26, 0xde, 0x53, 0xc9, 0x4c, 0x95, 0x4d, 0x25, 0x35, 0xe2, 0x4e, 0xaa, 0xcf, 0x0a,
- 0x4c, 0xe7, 0xa7, 0x9c, 0xa6, 0x02, 0x81, 0xf9, 0xe4, 0x8a, 0x1c, 0xa5, 0xe5, 0x4c, 0xb9, 0x25, 0x5b, 0xa3,
- 0xa0, 0xfe, 0x44, 0xac, 0x76, 0x2c, 0x89, 0xc7, 0x70, 0x1a, 0x54, 0xc8, 0x8b, 0x7e, 0x91, 0xf8, 0xb9, 0xdc,
- 0x01, 0xce, 0x77, 0x23, 0xa2, 0x36, 0x1d, 0xd4, 0xb0, 0xf4, 0x93, 0xe1, 0xc0, 0x8e, 0xaa, 0x20, 0x9e, 0xd0,
- 0x61, 0x0a, 0xee, 0x36, 0x3d, 0x60, 0x4e, 0x84, 0x3c, 0xb4, 0xd0, 0xcd, 0x2f, 0xfa, 0xba, 0xd3, 0x2f, 0x84,
- 0x2e, 0xe4, 0x0b, 0xe5, 0xfd, 0xcb, 0x1c, 0xb9, 0xfe, 0x31, 0xa3, 0x23, 0xf6, 0x30, 0xbf, 0x63, 0x92, 0xd2,
- 0x91, 0x04, 0xdc, 0xc9, 0x38, 0x1f, 0xd2, 0x93, 0x5a, 0xbd, 0x86, 0x01, 0xc7, 0xe2, 0xc6, 0xeb, 0x74, 0xa4,
- 0x4a, 0xf5, 0xdd, 0x08, 0xa5, 0xa5, 0x0b, 0x18, 0x61, 0x9b, 0x06, 0x18, 0xbc, 0xcf, 0x30, 0xbb, 0x4b, 0xf3,
- 0x4d, 0xb4, 0x3a, 0x87, 0xf1, 0x51, 0xc5, 0x39, 0x37, 0x64, 0x73, 0xca, 0xc1, 0x36, 0xb6, 0x6b, 0x92, 0x17,
- 0x8f, 0x38, 0x05, 0x6b, 0xe6, 0x08, 0xc2, 0xcb, 0xa5, 0xb3, 0xcb, 0x93, 0x44, 0x25, 0x5e, 0xc6, 0xc6, 0xf9,
- 0x70, 0x8b, 0x16, 0xc8, 0x40, 0x4a, 0x9a, 0x51, 0x2b, 0x15, 0xb6, 0x66, 0x9d, 0xbb, 0x1e, 0xef, 0x0a, 0x3a,
- 0x67, 0x02, 0xae, 0x86, 0x0d, 0xa9, 0x31, 0xdf, 0xeb, 0x5d, 0xee, 0xfe, 0xe6, 0xb7, 0xf4, 0xa6, 0x53, 0xe3,
- 0x6a, 0x8a, 0x3e, 0x08, 0xc4, 0x3e, 0x05, 0x24, 0xf6, 0xae, 0xc8, 0x42, 0x68, 0xd4, 0x55, 0xfe, 0xd4, 0x4d,
- 0x48, 0x7c, 0x58, 0x74, 0xf2, 0x21, 0x76, 0xd0, 0xf8, 0xd8, 0x86, 0xc6, 0x77, 0x83, 0x80, 0x1d, 0x38, 0x6b,
- 0x11, 0xe1, 0xbb, 0xd6, 0x6d, 0xaf, 0xc2, 0x01, 0xbc, 0x4e, 0xb7, 0x6f, 0x04, 0xe3, 0xac, 0x49, 0xbd, 0x40,
- 0xf9, 0xd8, 0xa9, 0xcf, 0xe4, 0x77, 0x0a, 0xeb, 0x77, 0xed, 0x8c, 0xff, 0xf1, 0x0e, 0x9f, 0xff, 0xf4, 0x23,
- 0xc2, 0xc7, 0xc5, 0xee, 0x52, 0xaa, 0x09, 0x78, 0x6b, 0x4b, 0x8a, 0xc2, 0x51, 0x98, 0x52, 0x68, 0xa9, 0x0e,
- 0xbb, 0xe6, 0xaa, 0x2d, 0xe9, 0xd1, 0xd7, 0x03, 0x37, 0x27, 0xfd, 0xd2, 0x0c, 0xe1, 0xe7, 0x25, 0xdd, 0x11,
- 0x43, 0x01, 0xdc, 0x1d, 0x16, 0x9f, 0x8f, 0x46, 0x7d, 0xcf, 0xe8, 0x33, 0x49, 0x0f, 0x9f, 0x14, 0xa7, 0xed,
- 0x14, 0x29, 0xc0, 0x3a, 0x1b, 0x97, 0x52, 0xfe, 0x9c, 0xc8, 0x78, 0x1c, 0x46, 0x7b, 0x8b, 0xdd, 0x14, 0x19,
- 0xaa, 0x97, 0x94, 0xe8, 0xe7, 0x3e, 0xab, 0x02, 0xf3, 0xef, 0xb1, 0x42, 0xe0, 0x54, 0x65, 0x81, 0x60, 0x65,
- 0x10, 0x25, 0x9a, 0xae, 0xec, 0x0c, 0x45, 0xd9, 0xaf, 0x91, 0x1d, 0xf1, 0xfd, 0xe0, 0xa3, 0x29, 0x0e, 0xb3,
- 0x25, 0xa2, 0x35, 0x3b, 0xe9, 0xaf, 0xc5, 0x44, 0x52, 0x2f, 0xe3, 0x19, 0x2c, 0xe5, 0x05, 0xa9, 0x18, 0x51,
- 0xe1, 0xfa, 0x4e, 0x90, 0xdc, 0xbc, 0x3b, 0xb7, 0x0d, 0xf0, 0xfc, 0x69, 0x09, 0x7e, 0xbb, 0x35, 0xc8, 0xc2,
- 0x74, 0x60, 0x5c, 0x35, 0xfd, 0xef, 0x9c, 0x5f, 0x54, 0xf7, 0x08, 0x33, 0x8e, 0x8d, 0x5e, 0xec, 0x9f, 0xc6,
- 0x90, 0xd1, 0x44, 0xfa, 0xe3, 0x22, 0x82, 0xf7, 0x4f, 0x42, 0xdd, 0xbf, 0x9e, 0xd2, 0x3c, 0x82, 0x54, 0xae,
- 0xfd, 0xbe, 0x92, 0x84, 0x0a, 0x10, 0x6c, 0x99, 0x06, 0x51, 0x24, 0x64, 0xa8, 0x11, 0x08, 0xc2, 0x58, 0x17,
- 0x8f, 0xdf, 0xf2, 0x09, 0x15, 0x2d, 0xce, 0xbe, 0xf5, 0x1e, 0xab, 0x94, 0x75, 0x75, 0x95, 0xd1, 0x87, 0x81,
- 0x7b, 0xaf
+ 0xfd, 0x87, 0xb0, 0xdd, 0x01, 0x99, 0x98, 0x86, 0xbc, 0x0a, 0xe0, 0xf6, 0x65, 0xdd, 0x9e, 0x76, 0x56, 0x0e,
+ 0x62, 0x66, 0xb9, 0xfa, 0x9b, 0x34, 0x34, 0xa6, 0x55, 0x1a, 0xc7, 0xc6, 0xdb, 0x8d, 0x00, 0xd6, 0x1a, 0xe8,
+ 0xf7, 0xd0, 0xcb, 0xf7, 0xf4, 0x26, 0x75, 0x5c, 0x3e, 0xff, 0x2a, 0xfe, 0x29, 0xb2, 0x7f, 0x60, 0x82, 0xff,
+ 0x2d, 0x14, 0x39, 0x17, 0xfe, 0x57, 0x04, 0x75, 0x03, 0x98, 0x97, 0x26, 0x55, 0xbf, 0x25, 0x80, 0x60, 0x5f,
+ 0x00, 0xe5, 0xca, 0xed, 0xc9, 0xa4, 0xf7, 0xb8, 0xd1, 0x51, 0xc0, 0xa4, 0x12, 0x8f, 0x18, 0x88, 0x46, 0x46,
+ 0xd3, 0x70, 0x94, 0x80, 0xcb, 0xf8, 0xc9, 0x40, 0x7c, 0x10, 0x19, 0xb5, 0x09, 0xa0, 0x83, 0x47, 0x47, 0xd8,
+ 0x24, 0x18, 0x6d, 0xec, 0x39, 0xcb, 0x8b, 0x5c, 0x78, 0x4d, 0x8d, 0x8e, 0x2c, 0x06, 0x20, 0x54, 0xbd, 0x6a,
+ 0x94, 0xcf, 0xfd, 0xbe, 0xf5, 0x45, 0x3f, 0x86, 0x3a, 0xf5, 0xed, 0x0a, 0x45, 0xdf, 0xe2, 0xc9, 0x09, 0x36,
+ 0x4d, 0x09, 0x5d, 0xdf, 0x1c, 0x34, 0xee, 0x50, 0x1c, 0xba, 0xf1, 0xc6, 0xc1, 0xf5, 0x56, 0x6b, 0x0e, 0xe2,
+ 0xae, 0x62, 0x89, 0xad, 0x6c, 0x3c, 0xbb, 0x84, 0xb7, 0xf9, 0x55, 0x30, 0x6a, 0x39, 0x84, 0xbb, 0x87, 0x8d,
+ 0xc4, 0x60, 0x99, 0x82, 0x57, 0x73, 0x82, 0x35, 0x71, 0x79, 0x45, 0x53, 0x0c, 0x19, 0x79, 0x50, 0xde, 0x3a,
+ 0x15, 0x02, 0x81, 0xbf, 0xd9, 0x84, 0xbb, 0x4d, 0xed, 0xda, 0x6d, 0xc5, 0xa0, 0x06, 0xad, 0xd7, 0x61, 0x81,
+ 0xde, 0xcd, 0xdb, 0x33, 0x2f, 0x24, 0xf8, 0x0c, 0xe5, 0x28, 0xe8, 0xbb, 0x25, 0x4b, 0x94, 0x7a, 0x55, 0xdc,
+ 0xf2, 0x61, 0x1c, 0xb3, 0xe3, 0xa9, 0xeb, 0x87, 0xe6, 0x26, 0x3b, 0xfd, 0x34, 0x57, 0x2a, 0x1f, 0x0e, 0x70,
+ 0x39, 0x21, 0x0e, 0x36, 0x81, 0x4c, 0xb4, 0xc1, 0xb2, 0xcb, 0xaa, 0x94, 0x36, 0x1f, 0xad, 0x1f, 0x7e, 0x6c,
+ 0xa8, 0x26, 0x3a, 0xb5, 0xbd, 0xe0, 0xa0, 0xc4, 0x29, 0xae, 0x1e, 0xb3, 0xb2, 0x21, 0x56, 0x38, 0x86, 0xb5,
+ 0x41, 0x42, 0xf2, 0x2a, 0x58, 0x64, 0x34, 0xe0, 0xa8, 0x00, 0x12, 0x79, 0x54, 0xd6, 0x1d, 0x86, 0x89, 0xc0,
+ 0x9f, 0x36, 0xac, 0x73, 0xbd, 0xf0, 0x5f, 0x85, 0x84, 0xbb, 0x93, 0x8d, 0x21, 0x9b, 0xea, 0xca, 0x98, 0x4d,
+ 0xd8, 0x5f, 0x0c, 0x8f, 0xf7, 0xf5, 0xc7, 0x2f, 0xc7, 0x45, 0xbf, 0xe9, 0x7d, 0x38, 0x88, 0xad, 0xcc, 0x34,
+ 0x79, 0x4a, 0xf5, 0xf7, 0x4b, 0x3d, 0xe4, 0x12, 0xa4, 0xb4, 0xe2, 0x36, 0xf8, 0xe1, 0xef, 0x93, 0xa3, 0x43,
+ 0x57, 0x26, 0x99, 0x28, 0x90, 0x03, 0x46, 0x33, 0x8d, 0xb9, 0xc5, 0xb5, 0x4e, 0xad, 0xfc, 0xda, 0x9a, 0x6e,
+ 0x1d, 0x5b, 0xf8, 0x93, 0x23, 0x6d, 0x3e, 0x9c, 0xa6, 0xe3, 0x9a, 0x61, 0x89, 0x7e, 0xb1, 0x53, 0x55, 0x92,
+ 0x4f, 0xf8, 0xb2, 0x23, 0xc4, 0xd7, 0x74, 0x49, 0xe4, 0x30, 0x8c, 0xdb, 0xb6, 0xf9, 0x85, 0xff, 0x0e, 0x58,
+ 0x39, 0x51, 0x3e, 0x9c, 0xf4, 0x06, 0x5b, 0x40, 0x85, 0x3a, 0xd9, 0xc9, 0xdd, 0xc0, 0xf8, 0x5f, 0x7a, 0xcd,
+ 0x13, 0x86, 0xdd, 0x28, 0x29, 0x39, 0x6c, 0xad, 0x84, 0x3e, 0xdb, 0xc7, 0x7a, 0x7f, 0x8c, 0x9b, 0x09, 0x3c,
+ 0x62, 0xbd, 0x27, 0xdb, 0x07, 0x27, 0xbd, 0x59, 0x46, 0x79, 0xdb, 0x7c, 0x90, 0xde, 0xc7, 0xf0, 0x99, 0x28,
+ 0x40, 0xf5, 0x2a, 0x20, 0xa9, 0xe6, 0x54, 0xb9, 0x87, 0x74, 0x19, 0xab, 0x09, 0x60, 0x8f, 0xcd, 0xf8, 0x10,
+ 0xda, 0x2d, 0x17, 0x03, 0x96, 0x45, 0x64, 0x5f, 0xd1, 0xec, 0x53, 0xe0, 0x20, 0xa2, 0x09, 0x2d, 0x62, 0x4b,
+ 0xed, 0x5b, 0x6c, 0x1c, 0x71, 0x0c, 0x35, 0x7c, 0x6d, 0x3b, 0x0d, 0x2b, 0x1d, 0xf7, 0xd5, 0x28, 0xd3, 0x17,
+ 0x25, 0x7d, 0xdd, 0x4e, 0x1e, 0xdf, 0x80, 0x20, 0x28, 0x15, 0x2f, 0xdc, 0x12, 0x54, 0x28, 0x54, 0xf8, 0x34,
+ 0x6f, 0x30, 0xd6, 0x93, 0x09, 0x73, 0xde, 0xd7, 0x16, 0x5a, 0x83, 0x28, 0xd1, 0xa6, 0x00, 0xad, 0x78, 0xbc,
+ 0xd0, 0xb8, 0x22, 0x5a, 0x6f, 0xcb, 0xa3, 0x35, 0x55, 0x97, 0xea, 0x10, 0xb3, 0xfd, 0xa4, 0xdb, 0x10, 0xf4,
+ 0x7e, 0x3d, 0x15, 0x50, 0x6a, 0x82, 0x92, 0xba, 0xa6, 0xb6, 0x22, 0x53, 0xef, 0x4f, 0xcc, 0x08, 0x81, 0xbf,
+ 0x91, 0x46, 0x28, 0x8b, 0x1d, 0x94, 0x94, 0xc6, 0x14, 0x3a, 0x71, 0x4f, 0x67, 0x70, 0x55, 0xe0, 0x0a, 0x7c,
+ 0xe9, 0xe9, 0x3e, 0x4e, 0x09, 0xa0, 0xbf, 0x78, 0x70, 0x54, 0x82, 0x1d, 0x95, 0x92, 0x79, 0x9b, 0xad, 0x8c,
+ 0xc7, 0x37, 0x17, 0xfd, 0x2f, 0x5c, 0x59, 0xd2, 0x51, 0x82, 0x38, 0x47, 0xdf, 0x9c, 0x60, 0x82, 0x7b, 0xb1,
+ 0xbe, 0xcf, 0xd2, 0x29, 0xcf, 0x07, 0x49, 0xbb, 0x8e, 0x49, 0x2f, 0x88, 0x74, 0xe0, 0x92, 0x42, 0xde, 0xa9,
+ 0x77, 0xab, 0x3a, 0xec, 0x67, 0x89, 0x8a, 0xe4, 0x40, 0x68, 0x21, 0x2d, 0x7d, 0xa5, 0xfb, 0xec, 0xf7, 0x27,
+ 0x68, 0x4f, 0x6f, 0xb6, 0xa0, 0x35, 0xa1, 0x34, 0x34, 0x83, 0x3d, 0x20, 0xe8, 0xe8, 0x38, 0x57, 0x92, 0xc0,
+ 0x88, 0x3e, 0x62, 0x21, 0xc9, 0x13, 0xd2, 0xcd, 0x84, 0xef, 0x56, 0xb0, 0xb5, 0x8d, 0x33, 0x51, 0xde, 0x8f,
+ 0x35, 0x33, 0x73, 0xe2, 0x8d, 0x6d, 0xee, 0xe1, 0xe4, 0xc8, 0xf5, 0xbd, 0xc8, 0xdc, 0x98, 0x39, 0x72, 0x2e,
+ 0x5a, 0x9d, 0xf3, 0x95, 0x40, 0x88, 0xe8, 0x0a, 0xbe, 0xca, 0x95, 0xd3, 0x88, 0xef, 0xc7, 0x64, 0x35, 0xf5,
+ 0xcf, 0xb7, 0xb0, 0x24, 0xf3, 0x7b, 0x6f, 0x3f, 0xb8, 0x0d, 0x88, 0x23, 0x18, 0xa5, 0x96, 0xf7, 0x0e, 0x7b,
+ 0xbe, 0xb2, 0xfc, 0xf5, 0xdf, 0xa8, 0x02, 0x89, 0xcc, 0xf2, 0xa4, 0x79, 0x28, 0x9a, 0x72, 0x10, 0x0a, 0xae,
+ 0xf2, 0x9a, 0x44, 0xce, 0x15, 0x6f, 0x50, 0x98, 0x7e, 0x9e, 0xe4, 0x15, 0xff, 0x70, 0xc9, 0x43, 0x33, 0x39,
+ 0xbf, 0xc9, 0xc3, 0x6c, 0x26, 0xd4, 0xb8, 0xd4, 0x06, 0x66, 0x30, 0xe6, 0x08, 0x26, 0x63, 0x31, 0x31, 0x31,
+ 0xf7, 0xf1, 0x82, 0x7c, 0x17, 0xeb, 0x6c, 0x17, 0x92, 0x15, 0x6b, 0x31, 0x2d, 0xd1, 0x97, 0x0d, 0xf4, 0x39,
+ 0xae, 0xf6, 0xf1, 0x7e, 0xac, 0x42, 0xa9, 0x7c, 0xe6, 0x77, 0xe6, 0x8e, 0xb2, 0x35, 0x60, 0xd4, 0x17, 0x0d,
+ 0x47, 0xed, 0x86, 0x18, 0x0d, 0x37, 0xba, 0x5b, 0x1c, 0x84, 0x24, 0xcd, 0x39, 0x57, 0x17, 0x04, 0x50, 0x60,
+ 0xe9, 0x87, 0x1c, 0x8b, 0xa6, 0x4f, 0x64, 0x40, 0x8e, 0xad, 0x6f, 0xcf, 0x35, 0x41, 0x72, 0x01, 0xed, 0xb1,
+ 0xa6, 0x39, 0x4a, 0x49, 0xba, 0x12, 0x45, 0x85, 0xee, 0x08, 0x93, 0xef, 0x53, 0x1b, 0x19, 0xd1, 0x33, 0xa5,
+ 0xd8, 0x78, 0xff, 0x6e, 0xff, 0x9f, 0x75, 0x75, 0x14, 0x5c, 0xf8, 0x2f, 0x37, 0x48, 0x45, 0x39, 0x3f, 0x2a,
+ 0xce, 0xe8, 0x76, 0xa4, 0x69, 0x51, 0x12, 0xf4, 0x0d, 0xcc, 0x21, 0xf7, 0x6d, 0x24, 0xbd, 0x20, 0xee, 0x1e,
+ 0x10, 0x1f, 0xbd, 0x69, 0xed, 0xc7, 0x7f, 0x69, 0xb7, 0xa2, 0x5b, 0x59, 0x39, 0xdd, 0x35, 0xdb, 0x30, 0x99,
+ 0x9f, 0x3e, 0xc5, 0x87, 0x8c, 0x88, 0xca, 0x5b, 0x0b, 0xba, 0x6c, 0x0d, 0x87, 0x82, 0x33, 0xc8, 0xdc, 0x8f,
+ 0xb4, 0x5b, 0xc9, 0xf3, 0xb0, 0x50, 0x7c, 0x00, 0xf6, 0xe0, 0xd2, 0xc7, 0xd1, 0x62, 0x85, 0x37, 0x0e, 0xf6,
+ 0x90, 0x4c, 0x9e, 0xca, 0xf1, 0x81, 0x0f, 0x67, 0x04, 0xd2, 0xcb, 0xb8, 0x2e, 0xed, 0x96, 0xbd, 0x19, 0x55,
+ 0xf1, 0x56, 0x7b, 0x48, 0x0b, 0xd4, 0x1d, 0xcb, 0xab, 0x21, 0xba, 0x23, 0x56, 0xd1, 0xe6, 0xb5, 0xa5, 0x4a,
+ 0x01, 0x2b, 0x86, 0xfd, 0xfe, 0x67, 0x7d, 0xd4, 0x69, 0x2d, 0x67, 0x18, 0xad, 0xd2, 0xb4, 0x51, 0x52, 0x5d,
+ 0x9f, 0x44, 0x5b, 0xb3, 0xc5, 0xdf, 0xd8, 0xd5, 0xda, 0x2d, 0xb9, 0xe1, 0x00, 0x63, 0xcf, 0x00, 0xe5, 0x30,
+ 0x3e, 0x98, 0x87, 0x91, 0x54, 0xcc, 0x6a, 0x92, 0x9c, 0x35, 0x14, 0x71, 0x6a, 0xeb, 0xd2, 0x07, 0x2c, 0x01,
+ 0x43, 0xfa, 0x97, 0xe0, 0x0b, 0x8e, 0x23, 0xad, 0x82, 0xd2, 0x45, 0xc4, 0x8e, 0xc9, 0x08, 0xcf, 0xff, 0x98,
+ 0x42, 0x23, 0xde, 0xa4, 0xae, 0x9b, 0x65, 0xc8, 0x11, 0x39, 0xe1, 0xb1, 0xb0, 0xde, 0x17, 0x9c, 0x93, 0x64,
+ 0xd4, 0xfa, 0x74, 0xfb, 0x5b, 0xbc, 0x3e, 0xfd, 0x52, 0xd5, 0x7f, 0x0e, 0x43, 0x08, 0x5c, 0xf9, 0x1a, 0x35,
+ 0xd0, 0xc2, 0x82, 0x61, 0xe2, 0x3a, 0x60, 0xa1, 0xc6, 0xb9, 0xbe, 0x6c, 0xe2, 0x98, 0xbf, 0xc7, 0x42, 0x91,
+ 0x64, 0x99, 0xbd, 0x28, 0x90, 0x8d, 0xe6, 0x0b, 0x36, 0x73, 0xe1, 0xb2, 0x7b, 0x8e, 0x0f, 0xb1, 0x7d, 0xdf,
+ 0xe3, 0x23, 0x1d, 0x5e, 0xc8, 0x5e, 0xbe, 0x14, 0x76, 0xd0, 0x35, 0xe2, 0xb2, 0x6e, 0x90, 0x06, 0x06, 0xba,
+ 0xd3, 0xda, 0x22, 0x83, 0xb8, 0xfb, 0x05, 0xcb, 0xb3, 0xcf, 0x1f, 0xae, 0xb3, 0x92, 0x52, 0x56, 0x70, 0x6c,
+ 0x85, 0x86, 0xe0, 0xa0, 0xa1, 0x98, 0x0e, 0x4d, 0x6d, 0x94, 0x7a, 0x8f, 0x54, 0x2a, 0xe8, 0x61, 0xf9, 0xba,
+ 0x04, 0x78, 0x56, 0xaf, 0x3d, 0x78, 0x89, 0x6e, 0x31, 0x0c, 0xdf, 0x7e, 0x52, 0x03, 0xd7, 0xe4, 0xab, 0x3c,
+ 0x97, 0x92, 0xe2, 0xa8, 0xcc, 0x37, 0xd0, 0x83, 0x73, 0x01, 0x44, 0x82, 0xb9, 0xa4, 0x39, 0x97, 0x7f, 0x78,
+ 0x81, 0x68, 0x89, 0x3b, 0xd6, 0xb9, 0x7c, 0x67, 0xb6, 0xd8, 0x30, 0x15, 0x5f, 0x09, 0x60, 0x72, 0x6b, 0x9d,
+ 0x74, 0x33, 0x58, 0x43, 0xa7, 0x61, 0x1b, 0x21, 0x62, 0xbc, 0x72, 0xda, 0x84, 0xdb, 0x2b, 0x0f, 0x60, 0x13,
+ 0x64, 0x6b, 0x43, 0x0a, 0xb5, 0x54, 0xa0, 0xdf, 0xf0, 0xda, 0x95, 0x35, 0x81, 0xbb, 0xf7, 0x72, 0x27, 0xf6,
+ 0xe1, 0x54, 0xc2, 0x3d, 0x4c, 0x99, 0xc9, 0x45, 0x72, 0xc6, 0x47, 0xaa, 0xb4, 0x17, 0x6f, 0xca, 0xec, 0x0d,
+ 0x55, 0x30, 0xcb, 0xc3, 0x79, 0x99, 0xc5, 0x3b, 0x98, 0x3f, 0x2b, 0xb2, 0xcf, 0xbd, 0xbb, 0x90, 0xb6, 0x4a,
+ 0x46, 0x19, 0x37, 0x7e, 0x0b, 0x7c, 0x0f, 0x7f, 0x67, 0x4c, 0x5e, 0x84, 0xc2, 0xe6, 0xa3, 0x4d, 0x41, 0xd2,
+ 0x97, 0x4f, 0x1a, 0x30, 0x25, 0xf0, 0xfb, 0xb7, 0x45, 0xaf, 0xf1, 0xe8, 0x63, 0xb2, 0x50, 0x61, 0xf2, 0x87,
+ 0xcc, 0x34, 0x54, 0x6b, 0xa7, 0xee, 0x04, 0xa3, 0x3f, 0xaa, 0x63, 0x08, 0xf1, 0xb2, 0x1d, 0xf7, 0xbe, 0x3a,
+ 0xb4, 0x63, 0x1d, 0x01, 0x9a, 0x8a, 0xc3, 0x78, 0xf9, 0x17, 0x1c, 0x3f, 0x6b, 0x9e, 0xcf, 0xee, 0xce, 0x96,
+ 0x84, 0x4e, 0x05, 0xaf, 0x16, 0x03, 0x07, 0x81, 0x77, 0x25, 0xab, 0x67, 0x95, 0xfa, 0x6c, 0xc9, 0xd3, 0xd3,
+ 0x8a, 0xfe, 0xe2, 0xc4, 0xa2, 0x1c, 0x83, 0x3d, 0x71, 0xf1, 0xcc, 0xae, 0x8b, 0xb2, 0x82, 0xcc, 0x12, 0xb9,
+ 0x17, 0xd3, 0xf5, 0x80, 0xd8, 0x06, 0x18, 0x38, 0x12, 0x54, 0xd3, 0x0e, 0x78, 0x0e, 0xfd, 0xd7, 0xbe, 0x20,
+ 0x98, 0x3f, 0x74, 0xae, 0x0a, 0xda, 0x66, 0xa3, 0x02, 0xfc, 0xd6, 0x44, 0x94, 0xde, 0xda, 0xf2, 0x6c, 0xa1,
+ 0xa8, 0x32, 0xf3, 0x9b, 0xee, 0x10, 0x18, 0x35, 0xcd, 0x3b, 0x2d, 0x2f, 0x48, 0x75, 0xff, 0x39, 0xb5, 0x75,
+ 0x2c, 0x79, 0xfa, 0xa1, 0xc7, 0x2e, 0x89, 0x9b, 0xb1, 0x0d, 0x70, 0x07, 0x22, 0x76, 0x75, 0x22, 0x40, 0x1a,
+ 0x79, 0x6b, 0xf0, 0xa1, 0xda, 0x11, 0xda, 0x0e, 0x77, 0x5e, 0x35, 0x7f, 0xec, 0x20, 0x52, 0xed, 0x37, 0x38,
+ 0x35, 0x9b, 0x80, 0x6d, 0xd1, 0x6b, 0x34, 0x1c, 0xf3, 0x89, 0x65, 0x14, 0xc1, 0xcd, 0x4e, 0x4e, 0xd5, 0x58,
+ 0xcc, 0x18, 0x75, 0xb8, 0x79, 0x2a, 0xfd, 0xe5, 0xe6, 0x3f, 0xde, 0xeb, 0x77, 0x0a, 0x2e, 0x10, 0x5a, 0x7a,
+ 0x1e, 0xdd, 0x20, 0x42, 0x4c, 0x04, 0xe5, 0xdd, 0x34, 0x17, 0xde, 0x38, 0x45, 0x38, 0x39, 0x22, 0x15, 0xa8,
+ 0xfc, 0xae, 0x9f, 0x24, 0x88, 0x0e, 0xb7, 0x46, 0xb1, 0x2c, 0x18, 0x2d, 0xce, 0xb7, 0xe6, 0x49, 0x8b, 0xd5,
+ 0xe0, 0x92, 0xff, 0x4b, 0x70, 0xca, 0xaa, 0x3a, 0xff, 0x59, 0xd9, 0xc4, 0x6c, 0x3d, 0x45, 0x0d, 0x79, 0x11,
+ 0x02, 0xff, 0xec, 0xc8, 0xfb, 0xbc, 0xcd, 0xc2, 0xd2, 0xc9, 0xd5, 0x2c, 0x8b, 0x19, 0xb8, 0xfc, 0xda, 0x90,
+ 0x13, 0xb8, 0xc6, 0x96, 0x14, 0xb8, 0x26, 0x83, 0x27, 0x76, 0x35, 0x57, 0x17, 0x91, 0x9d, 0x56, 0xa5, 0x6a,
+ 0x3c, 0x12, 0xe1, 0x1e, 0xd8, 0x18, 0xee, 0xd0, 0x92, 0xc6, 0xa3, 0xae, 0x87, 0x46, 0xe9, 0x14, 0xaa, 0x8c,
+ 0x30, 0x98, 0xf4, 0x45, 0xaf, 0x1a, 0x59, 0x21, 0x7f, 0xaf, 0xfd, 0x0c, 0x36, 0xd8, 0x00, 0x0a, 0xcc, 0xc6,
+ 0x25, 0x6e, 0x8e, 0x48, 0x6d, 0x70, 0x6b, 0x0c, 0xc4, 0xb6, 0xde, 0xad, 0x67, 0x58, 0xe3, 0x3f, 0x08, 0xc3,
+ 0x58, 0xc7, 0x57, 0x78, 0x44, 0xe1, 0xe4, 0x9b, 0x12, 0x79, 0x0d, 0xb4, 0x9d, 0xb8, 0x19, 0x0c, 0x21, 0x6e,
+ 0x90, 0x79, 0x8f, 0x97, 0x99, 0xeb, 0x6d, 0xce, 0x34, 0x13, 0x9e, 0x16, 0x6b, 0x9c, 0xd5, 0x1e, 0x92, 0xc4,
+ 0x8d, 0xa7, 0x3f, 0x67, 0x7a, 0x46, 0xa8, 0x70, 0x08, 0xbd, 0x0a, 0x0e, 0x06, 0xc5, 0xea, 0x84, 0x8e, 0xc1,
+ 0xb6, 0x9a, 0x2e, 0xd8, 0xa3, 0x81, 0x1f, 0x81, 0x76, 0x65, 0xdd, 0x82, 0x47, 0xb9, 0x09, 0x67, 0x18, 0x0b,
+ 0xb8, 0xdd, 0x26, 0x95, 0xb3, 0x30, 0xc0, 0x6d, 0xef, 0xcb, 0xa3, 0xaf, 0xb6, 0x9f, 0xca, 0x80, 0xbb, 0x5f,
+ 0x1f, 0x7c, 0x49, 0x6c, 0xbf, 0xcc, 0x8a, 0xee, 0x19, 0xf0, 0xd2, 0xb7, 0x24, 0xad, 0x6e, 0xa1, 0x5f, 0x22,
+ 0x9d, 0xf4, 0x26, 0xc6, 0x62, 0x34, 0x74, 0xda, 0xff, 0xc5, 0x7b, 0x23, 0xf7, 0x1f, 0xea, 0x71, 0x07, 0xbd,
+ 0x9f, 0x8a, 0x4e, 0xdf, 0xe4, 0xc3, 0xcd, 0x46, 0x72, 0x56, 0x85, 0xd8, 0x35, 0x9c, 0xef, 0x93, 0xb6, 0x02,
+ 0x3b, 0xda, 0x78, 0x44, 0xca, 0x30, 0x79, 0x3b, 0x07, 0x64, 0x75, 0xed, 0x27, 0x0e, 0xf2, 0x78, 0xe8, 0xc0,
+ 0xf2, 0x61, 0xfb, 0xf3, 0xcd, 0x25, 0x8f, 0xca, 0x42, 0x2f, 0xdf, 0x46, 0xcc, 0xa4, 0xa7, 0x5a, 0x2d, 0xbd,
+ 0x1c, 0x77, 0x52, 0x08, 0x3a, 0xfd, 0xea, 0xe3, 0xf0, 0x37, 0x8c, 0xb6, 0x6a, 0xcf, 0x61, 0x2a, 0x26, 0x28,
+ 0xc2, 0x50, 0xd1, 0x4f, 0xbc, 0x72, 0x57, 0x6d, 0x9f, 0x4c, 0x32, 0xb3, 0xa8, 0x2b, 0xca, 0x50, 0x15, 0x64,
+ 0x84, 0xb5, 0x2b, 0xa2, 0x6e, 0x4f, 0x1d, 0x88, 0xc8, 0x48, 0x7c, 0xf4, 0x58, 0xe2, 0x97, 0x5c, 0x31, 0xf4,
+ 0x2d, 0x5f, 0x5a, 0xc9, 0x3d, 0x07, 0x21, 0xc5, 0x69, 0x15, 0xb1, 0x44, 0x90, 0x11, 0x5e, 0x7c, 0xfc, 0xd2,
+ 0x60, 0x6d, 0x3a, 0x92, 0x04, 0x5c, 0x2d, 0x56, 0x2a, 0x0a, 0x6b, 0x9c, 0x4f, 0xf2, 0xc4, 0xb8, 0x60, 0x08,
+ 0x52, 0x2a, 0x9a, 0x55, 0x4c, 0xf0, 0xcc, 0xa9, 0x83, 0xb4, 0x8e, 0x07, 0xc4, 0x30, 0x69, 0xaf, 0x94, 0xfb,
+ 0x3f, 0x3b, 0x1c, 0x97, 0xee, 0xa6, 0xb2, 0x84, 0x56, 0x45, 0x5f, 0x0a, 0xe7, 0x3a, 0x16, 0x4b, 0x8b, 0x54,
+ 0xd4, 0x35, 0x38, 0xd5, 0x01, 0x92, 0xfc, 0x20, 0x8b, 0x0f, 0x2d, 0xc2, 0x97, 0xe6, 0x29, 0x88, 0x0b, 0x35,
+ 0xee, 0x0a, 0x35, 0xd6, 0x93, 0xb2, 0x00, 0x2d, 0xc2, 0xae, 0x35, 0x21, 0x52, 0xdb, 0x48, 0x7f, 0xaa, 0xe8,
+ 0x75, 0xfc, 0xb5, 0x1f, 0x6d, 0xc1, 0x25, 0x69, 0x8c, 0x78, 0x29, 0xf1, 0x4a, 0x0c, 0x3e, 0xbe, 0x9a, 0x1a,
+ 0xd7, 0x8f, 0x61, 0x74, 0xb7, 0xd5, 0x4c, 0xb8, 0xd0, 0x14, 0xd6, 0x32, 0x57, 0x11, 0xde, 0x93, 0x0a, 0x9c,
+ 0x7a, 0x73, 0xeb, 0x28, 0x20, 0xf0, 0x37, 0x4c, 0xa4, 0x90, 0x13, 0xc4, 0xbe, 0x30, 0x19, 0x7a, 0x9b, 0xec,
+ 0x62, 0xef, 0x66, 0x4f, 0x59, 0x91, 0x27, 0x72, 0xb4, 0x5f, 0x5c, 0x0e, 0x0d, 0x8b, 0x3e, 0xc9, 0x5e, 0xaa,
+ 0x92, 0x7a, 0x76, 0xfa, 0xcb, 0x84, 0x53, 0x56, 0xda, 0x3f, 0xfa, 0x35, 0x31, 0xfd, 0xa5, 0xb8, 0x47, 0x7d,
+ 0x68, 0x30, 0x50, 0xc3, 0x6c, 0x5d, 0x18, 0xc0, 0xeb, 0x32, 0x83, 0x54, 0xd8, 0x17, 0xd2, 0x66, 0x4e, 0xcb,
+ 0xad, 0x95, 0x39, 0xb3, 0x34, 0xb0, 0x2a, 0x12, 0xbd, 0x68, 0x74, 0x88, 0xba, 0x9d, 0xc0, 0xbb, 0xb4, 0x0e,
+ 0xd7, 0x2f, 0xd4, 0x5d, 0x40, 0xc6, 0x0f, 0xef, 0x8a, 0xb6, 0x4c, 0x89, 0x4e, 0xed, 0xde, 0x43, 0x2b, 0x2d,
+ 0xd8, 0x7b, 0x96, 0x9c, 0x7b, 0x68, 0xb7, 0x09, 0xb2, 0xa0, 0x2f, 0x11, 0x2c, 0x6e, 0x1f, 0x8f, 0x9b, 0x34,
+ 0x18, 0xc9, 0xd4, 0xf9, 0xeb, 0x49, 0x65, 0x66, 0xe1, 0xe7, 0x17, 0xb3, 0x51, 0x7c, 0x19, 0x13, 0x51, 0x2b,
+ 0x2e, 0x5f, 0x45, 0x94, 0x5a, 0x02, 0x35, 0x82, 0xca, 0xfa, 0x77, 0x11, 0xc9, 0x75, 0xd4, 0x72, 0xf2, 0x99,
+ 0x47, 0x97, 0x26, 0x96, 0x80, 0x8b, 0x33, 0xff, 0xf6, 0xd0, 0x4a, 0x4a, 0xab, 0xde, 0x55, 0x7c, 0x6f, 0xc0,
+ 0xf2, 0x3d, 0x37, 0x54, 0xcf, 0xab, 0x15, 0x66, 0x02, 0x4b, 0x38, 0x04, 0x45, 0x18, 0x08, 0x05, 0x58, 0xd1,
+ 0xed, 0x10, 0xfe, 0xe0, 0xe2, 0xc7, 0x24, 0x30, 0x22, 0xcd, 0x06, 0xd9, 0x02, 0x37, 0x53, 0x21, 0x88, 0x3d,
+ 0x3f, 0x9e, 0x21, 0x77, 0xb5, 0x85, 0xf8, 0x3d, 0x15, 0xc4, 0x00, 0x61, 0x59, 0x07, 0x43, 0x0f, 0x1e, 0x92,
+ 0x9e, 0xba, 0xfc, 0xa0, 0x58, 0xfd, 0x2e, 0x87, 0x93, 0x82, 0xd6, 0x02, 0xf5, 0x84, 0x08, 0x96, 0x8a, 0xa3,
+ 0xf9, 0xd2, 0xc3, 0xf2, 0xad, 0xbc, 0x13, 0xcb, 0xe9, 0x98, 0xed, 0xcd, 0xc5, 0x83, 0xbc, 0x43, 0x91, 0xcc,
+ 0x19, 0x47, 0x14, 0x7e, 0x8c, 0x8e, 0x36, 0x5d, 0x9e, 0x96, 0x8d, 0x97, 0x61, 0xad, 0x73, 0x64, 0x47, 0xed,
+ 0x3e, 0x40, 0x76, 0x99, 0xbe, 0x47, 0xe7, 0x5f, 0xae, 0x4c, 0x88, 0x3e, 0x90, 0x08, 0xd9, 0xc6, 0x35, 0x4b,
+ 0x19, 0xe4, 0x7b, 0xfe, 0x23, 0x04, 0x10, 0x2a, 0x50, 0x37, 0x88, 0x18, 0x72, 0xd0, 0x2a, 0x2f, 0x77, 0xaa,
+ 0x09, 0xe0, 0xf2, 0x49, 0x7a, 0xf2, 0xf9, 0x6b, 0xa5, 0x53, 0x55, 0xd5, 0x28, 0xf9, 0x2c, 0x0c, 0x99, 0x33,
+ 0x31, 0xc6, 0xa5, 0xb2, 0x52, 0x30, 0x42, 0x8e, 0x53, 0xb4, 0x38, 0xd3, 0x89, 0xfd, 0x0f, 0x25, 0x79, 0xbc,
+ 0xac, 0xe3, 0x8c, 0x04, 0xfd, 0x38, 0x67, 0xf0, 0xb5, 0x5f, 0xb1, 0x66, 0xf2, 0xb3, 0xd6, 0x0d, 0x99, 0x66,
+ 0xb6, 0x7b, 0xf4, 0x75, 0xa9, 0xb6, 0x8b, 0xbf, 0x58, 0xf8, 0xcc, 0xe0, 0x2c, 0xf6, 0xaf, 0xae, 0x1a, 0xd1,
+ 0x62, 0x55, 0xec, 0xb5, 0xf7, 0xff, 0x7b, 0x32, 0xe5, 0x81, 0x4d, 0xc1, 0x29, 0x67, 0x84, 0xb9, 0x54, 0x03,
+ 0x35, 0x17, 0x21, 0xcf, 0x91, 0xcd, 0x60, 0x6e, 0x2d, 0x86, 0xe1, 0x16, 0x56, 0x6a, 0x53, 0x9b, 0x98, 0xb8,
+ 0x8c, 0x85, 0x5a, 0x3b, 0xa0, 0xc0, 0x9c, 0xb4, 0xc8, 0x90, 0xda, 0x29, 0xd6, 0xcd, 0xc7, 0x6b, 0x8d, 0x43,
+ 0x95, 0x3d, 0xeb, 0x58, 0x6c, 0x55, 0x9a, 0xf5, 0xa3, 0xe2, 0xb0, 0x6d, 0x00, 0xe7, 0x98, 0xe5, 0xcb, 0x7a,
+ 0xf3, 0x3f, 0x0b, 0x09, 0x47, 0x45, 0x37, 0xc4, 0x98, 0x90, 0x00, 0x39, 0x4a, 0xff, 0x62, 0x01, 0x97, 0xb8,
+ 0x24, 0x41, 0x61, 0xd5, 0xbe, 0xc1, 0xac, 0xa8, 0xe5, 0x36, 0x41, 0x33, 0x2f, 0xef, 0x7d, 0x5e, 0x94, 0x60,
+ 0x76, 0xbf, 0x6c, 0xb3, 0x7a, 0x59, 0x60, 0xd3, 0x78, 0xbc, 0xc6, 0x4d, 0xf5, 0xe0, 0x1d, 0x55, 0x51, 0xf2,
+ 0xed, 0x17, 0x19, 0x03, 0x8e, 0x2e, 0xd6, 0x3f, 0x43, 0x7d, 0x91, 0x5b, 0xc8, 0x0f, 0xf3, 0x03, 0x58, 0x95,
+ 0x67, 0xed, 0x8b, 0xe2, 0x45, 0x84, 0xa5, 0x6d, 0xf8, 0x98, 0x50, 0x7f, 0x89, 0xcf, 0xf2, 0x40, 0x05, 0x8d,
+ 0x09, 0x8d, 0xdd, 0x11, 0xf5, 0x4c, 0x09, 0x71, 0x96, 0x8c, 0x01, 0xca, 0x99, 0x78, 0xfa, 0x50, 0x83, 0x6b,
+ 0xeb, 0x0d, 0x65, 0x1d, 0xee, 0xc2, 0xb2, 0x03, 0x66, 0x60, 0xbd, 0xa1, 0x9d, 0x13, 0x50, 0x8f, 0xeb, 0x0b,
+ 0x9a, 0x9e, 0x26, 0x9a, 0x94, 0x1b, 0x85, 0x6e, 0x4d, 0xbb, 0x0f, 0x6d, 0x72, 0x8f, 0x45, 0xb8, 0x95, 0x18,
+ 0x55, 0x60, 0x07, 0x27, 0x59, 0xb1, 0x73, 0xf3, 0xf8, 0xfb, 0xa6, 0xa1, 0x70, 0xd6, 0xd3, 0x35, 0xea, 0xaf,
+ 0x7d, 0x70, 0x88, 0xcd, 0x73, 0x34, 0x08, 0x63, 0xbd, 0xf8, 0x9d, 0x29, 0x31, 0x12, 0xea, 0x9f, 0xd0, 0x0c,
+ 0x5a, 0x06, 0xa3, 0xbd, 0xf9, 0xd4, 0x36, 0x02, 0x1d, 0x5a, 0x80, 0xe2, 0x66, 0xcc, 0x0b, 0x08, 0xab, 0xef,
+ 0xf7, 0x06, 0x79, 0xcf, 0x90, 0x90, 0x11, 0x31, 0x00, 0xcf, 0x03, 0x37, 0xb7, 0x2b, 0xd1, 0x94, 0x98, 0xfd,
+ 0xe2, 0x21, 0x5f, 0x0f, 0xcc, 0x20, 0xad, 0x8a, 0xf9, 0xf6, 0x77, 0x0e, 0xe8, 0x57, 0x87, 0x69, 0xd8, 0x61,
+ 0x03, 0xb5, 0x57, 0xf0, 0xf2, 0xd8, 0x24, 0x7b, 0x5b, 0x32, 0xc0, 0xdb, 0xa8, 0xc8, 0xff, 0x6c, 0x0b, 0xe4,
+ 0x7d, 0xd1, 0x6a, 0xd5, 0x7e, 0xa1, 0x01, 0x9a, 0x5a, 0xcb, 0x5e, 0x67, 0xa6, 0x1c, 0xdd, 0x20, 0xcf, 0xa7,
+ 0x91, 0x10, 0x47, 0x06, 0xb6, 0x2e, 0xc5, 0xb5, 0x35, 0x75, 0xae, 0xe8, 0xc7, 0xea, 0xb1, 0xb4, 0x27, 0x1b,
+ 0x52, 0x8a, 0x8d, 0x98, 0xe2, 0xc2, 0x6a, 0x17, 0x9d, 0x3d, 0x0d, 0x6e, 0xcc, 0x21, 0x8a, 0xbe, 0x55, 0xcd,
+ 0x19, 0x03, 0x2a, 0x27, 0xb7, 0xfb, 0xdb, 0x1d, 0xc0, 0xf8, 0x33, 0x1d, 0x9c, 0x4d, 0x40, 0x8c, 0x85, 0x16,
+ 0x5a, 0xc3, 0x55, 0xc8, 0xc1, 0x80, 0xe9, 0x6a, 0xb9, 0x88, 0x77, 0xd6, 0xba, 0xdd, 0xc4, 0x57, 0xd6, 0x1e,
+ 0xee, 0x98, 0x3b, 0x46, 0x9a, 0xf2, 0xba, 0x47, 0x0a, 0x81, 0xe9, 0x86, 0x32, 0xad, 0xa8, 0x17, 0xa6, 0x12,
+ 0xf3, 0x13, 0x93, 0xde, 0x7f, 0x52, 0x8d, 0xe2, 0x5d, 0xab, 0xce, 0xf3, 0x5e, 0x40, 0x69, 0xf1, 0x00, 0x9d,
+ 0x26, 0x6a, 0xb5, 0xb7, 0x3b, 0x82, 0xf0, 0x51, 0xb2, 0x8b, 0xea, 0xf0, 0x42, 0xaa, 0x69, 0x4c, 0x3a, 0xc4,
+ 0x4e, 0xb7, 0x35, 0x83, 0x97, 0xec, 0xb6, 0xe9, 0x76, 0x80, 0xbb, 0x88, 0x47, 0x73, 0x77, 0x6f, 0x54, 0x77,
+ 0xf4, 0x93, 0x04, 0xb8, 0x70, 0x77, 0xe0, 0xf1, 0xc3, 0x24, 0x50, 0x20, 0xb7, 0xe5, 0x1c, 0xa1, 0xd2, 0xae,
+ 0xe1, 0x25, 0x65, 0x23, 0xb6, 0x8c, 0x6e, 0x24, 0x97, 0xb1, 0xbe, 0x3b, 0xd3, 0xf5, 0x30, 0xfb, 0xe3, 0x93,
+ 0x2d, 0x70, 0xac, 0xde, 0x5a, 0x6c, 0x34, 0x81, 0xd9, 0xef, 0xee, 0x34, 0xc1, 0x2e, 0xa6, 0xf3, 0xd5, 0xdc,
+ 0x0a, 0x97, 0x3e, 0x75, 0x30, 0x66, 0xc8, 0x1b, 0xef, 0x66, 0xb2, 0x4c, 0x4e, 0xee, 0x9d, 0xa6, 0x43, 0xc3,
+ 0x1e, 0x3f, 0x24, 0x7e, 0x08, 0xa5, 0x2d, 0x47, 0x4c, 0x10, 0x0f, 0xe7, 0x4c, 0xad, 0x45, 0x11, 0xc4, 0x53,
+ 0x99, 0x84, 0xf0, 0x27, 0x50, 0xa7, 0xe1, 0x0b, 0xf8, 0x9c, 0x46, 0xd2, 0x50, 0x26, 0xd8, 0x1f, 0x34, 0x44,
+ 0x1f, 0xdc, 0x70, 0x82, 0x49, 0x2a, 0x57, 0x70, 0xcb, 0x75, 0x50, 0x2d, 0xe2, 0x3b, 0x81, 0xed, 0x32, 0x15,
+ 0x62, 0x55, 0x12, 0x7c, 0xb5, 0xe0, 0xd8, 0xe1, 0xd5, 0x93, 0x02, 0x69, 0xb3, 0x78, 0x8b, 0x3c, 0xde, 0x9f,
+ 0x08, 0xf3, 0x0b, 0xba, 0xd3, 0x6f, 0xd2, 0x43, 0x94, 0xa3, 0xe9, 0x99, 0x7c, 0xa8, 0xcb, 0x7a, 0x19, 0xf8,
+ 0xcf, 0x06, 0x66, 0x4b, 0xf8, 0xd1, 0x96, 0x78, 0x48, 0x45, 0x22, 0xa7, 0xc5, 0x41, 0x86, 0xea, 0xf7, 0x92,
+ 0x55, 0x0a, 0x84, 0xb2, 0x62, 0xa2, 0xc0, 0xe6, 0xce, 0x10, 0x02, 0x2b, 0x0d, 0xe5, 0x50, 0xee, 0x41, 0xc7,
+ 0x2c, 0x03, 0x01, 0xf9, 0xfb, 0xc7, 0x69, 0x6d, 0xf3, 0x78, 0x36, 0xa9, 0x3d, 0x90, 0xe5, 0xf5, 0x26, 0xfc,
+ 0x7c, 0xb0, 0x29, 0x60, 0xce, 0xb9, 0x55, 0x98, 0x87, 0x5f, 0xd6, 0xac, 0xe5, 0x5a, 0x95, 0x4c, 0x06, 0xcb,
+ 0x16, 0x05, 0xf7, 0x6a, 0xd1, 0x31, 0xc3, 0xf9, 0x7e, 0x21, 0x01, 0x66, 0xf1, 0x82, 0x54, 0x08, 0x6c, 0xf3,
+ 0x3c, 0x01, 0xa7, 0xf8, 0x14, 0x2a, 0x95, 0x01, 0xed, 0x66, 0x2e, 0xe3, 0xbc, 0xb4, 0x1e, 0xcd, 0x7b, 0x7e,
+ 0x4a, 0xe1, 0x35, 0xee, 0x6b, 0xef, 0x17, 0x8b, 0x39, 0x48, 0x1c, 0xb1, 0x83, 0x95, 0x63, 0x00, 0xf9, 0x24,
+ 0x69, 0xe2, 0x2e, 0x88, 0xcf, 0x37, 0x26, 0xcf, 0xca, 0x18, 0x2a, 0x99, 0x0d, 0x89, 0xe6, 0xa9, 0x64, 0x8f,
+ 0xf2, 0x84, 0x45, 0xde, 0x02, 0xef, 0x25, 0x5a, 0xdd, 0x42, 0x95, 0x65, 0xf2, 0x6a, 0x24, 0x5b, 0x5d, 0x88,
+ 0x6d, 0x75, 0x45, 0x54, 0x71, 0x98, 0x2c, 0xb7, 0xee, 0x2c, 0x5b, 0x61, 0x5f, 0x51, 0xf6, 0x5a, 0xc3, 0x0e,
+ 0x6f, 0x0e, 0xfb, 0xb0, 0x74, 0xa2, 0x09, 0x0d, 0x6d, 0xc7, 0x77, 0x24, 0x0c, 0xb0, 0x70, 0xc9, 0x35, 0x99,
+ 0x77, 0xe7, 0xef, 0xcd, 0xda, 0x46, 0x52, 0x5d, 0xa3, 0x5f, 0x45, 0x6b, 0x2d, 0x53, 0x93, 0xbe, 0x9b, 0xc6,
+ 0xfc, 0xf9, 0x26, 0xf8, 0x5d, 0x87, 0xdf, 0x9a, 0x53, 0x89, 0x2a, 0x79, 0x3c, 0x21, 0xa5, 0x4c, 0x62, 0x3d,
+ 0x4c, 0xc0, 0x85, 0xab, 0xcc, 0x8f, 0xc5, 0x22, 0x51, 0xd7, 0xb6, 0x0c, 0xc7, 0x69, 0xac, 0xf6, 0x5b, 0x0d,
+ 0xfd, 0x89, 0x35, 0x10, 0x59, 0x99, 0xc0, 0x52, 0x3a, 0xd2, 0x13, 0x2b, 0xe6, 0xe7, 0x12, 0x8c, 0x6b, 0x44,
+ 0x0a, 0x9c, 0x2e, 0x3f, 0x2f, 0x12, 0xdb, 0x8e, 0x94, 0xa3, 0xd1, 0xd6, 0x41, 0x91, 0xab, 0x9d, 0xc2, 0x9d,
+ 0x73, 0xd4, 0x81, 0x3a, 0x39, 0xeb, 0x92, 0x12, 0x09, 0x6f, 0x06, 0xd9, 0x72, 0x07, 0xd4, 0x8d, 0x99, 0x5e,
+ 0xca, 0x6f, 0x28, 0xe7, 0x2c, 0xc9, 0xa8, 0xcf, 0x7b, 0x69, 0xfa, 0x9d, 0x99, 0xdb, 0xfe, 0xfb, 0x27, 0x42,
+ 0x94, 0xfb, 0xfb, 0x87, 0xaa, 0x5a, 0x38, 0x8b, 0xb8, 0xaf, 0x3a, 0xf9, 0x16, 0x4e, 0x70, 0x69, 0x2d, 0xea,
+ 0xe3, 0xcb, 0xf3, 0x04, 0x6e, 0xba, 0x86, 0x0e, 0xa4, 0xc3, 0xdb, 0x33, 0x10, 0xdf, 0x36, 0x49, 0xa1, 0x1a,
+ 0x9e, 0xc3, 0x6e, 0xf4, 0xd6, 0x85, 0x14, 0x2e, 0x19, 0x99, 0x89, 0xf5, 0x63, 0x6b, 0x0a, 0x07, 0x6d, 0xfc,
+ 0x9f, 0x90, 0xac, 0x64, 0xa1, 0x14, 0xbc, 0xa8, 0x8c, 0xa2, 0x9b, 0x48, 0x56, 0xfd, 0xcf, 0x65, 0xeb, 0x8b,
+ 0x8a, 0x71, 0xd7, 0xdf, 0x5e, 0xf5, 0xb4, 0x98, 0xe8, 0x9e, 0xbd, 0x5e, 0x8f, 0xb9, 0xe1, 0xcd, 0x2f, 0xb2,
+ 0x79, 0xbd, 0x82, 0xce, 0x7b, 0x9d, 0xd3, 0xf6, 0xec, 0x7e, 0xa0, 0xa0, 0xc1, 0x88, 0xee, 0x7e, 0x85, 0x70,
+ 0x16, 0x53, 0x9f, 0xfb, 0x64, 0x35, 0xf7, 0xd7, 0xe6, 0x62, 0x6d, 0x1a, 0x46, 0xc9, 0xe9, 0xf2, 0xb7, 0x91,
+ 0x56, 0xb7, 0x5e, 0xd0, 0x5b, 0x0e, 0xd7, 0x62, 0x2e, 0xd3, 0xf4, 0x65, 0x04, 0xd9, 0x63, 0xee, 0x8b, 0x0d,
+ 0x1f, 0xaf, 0x5d, 0xfe, 0x4b, 0x56, 0x4b, 0x15, 0xf6, 0xdb, 0xbc, 0xca, 0xeb, 0x35, 0xbf, 0x32, 0xa5, 0x5e,
+ 0xf4, 0x22, 0x7a, 0xca, 0xbf, 0xd5, 0xbb, 0x0e, 0x5b, 0x81, 0xb7, 0xef, 0xe8, 0x4d, 0x8b, 0x20, 0x09, 0x5d,
+ 0x32, 0x50, 0x29, 0xb1, 0xc2, 0x04, 0xcc, 0x8f, 0xec, 0x5e, 0x48, 0xf0, 0x87, 0x4c, 0xb3, 0x27, 0x2c, 0x5d,
+ 0x4a, 0xc6, 0x73, 0x9d, 0xd7, 0x30, 0xf6, 0x32, 0xc8, 0xc0, 0xb8, 0x33, 0x23, 0xd3, 0x3a, 0x5a, 0x5b, 0x85,
+ 0x3b, 0x54, 0x70, 0x5c, 0xd0, 0xee, 0xbe, 0x65, 0x47, 0xe5, 0x82, 0xcf, 0x9f, 0xd6, 0xd7, 0xf0, 0x09, 0x60,
+ 0x89, 0x43, 0xfc, 0x70, 0xbb, 0xef, 0x13, 0x60, 0xb3, 0x6a, 0x22, 0x29, 0x5c, 0x36, 0xc5, 0xfd, 0xe3, 0x66,
+ 0xba, 0x02, 0x77, 0x12, 0x2d, 0x2f, 0xb9, 0xc3, 0x4c, 0x24, 0x00, 0x74, 0x96, 0x1a, 0xf7, 0x29, 0xcb, 0x90,
+ 0x5a, 0x61, 0x83, 0x09, 0xd3, 0x37, 0x0d, 0x34, 0xb5, 0x89, 0xec, 0x48, 0x80, 0x81, 0x80, 0x94, 0x96, 0x88,
+ 0x8e, 0x91, 0x95, 0xe1, 0x0e, 0x4b, 0x71, 0x88, 0x9c, 0x93, 0x8d, 0x16, 0x2e, 0xc3, 0x32, 0xc1, 0xd5, 0xc9,
+ 0x25, 0x32, 0x53, 0x6f, 0x63, 0x49, 0x2f, 0x0d, 0xe4, 0xc1, 0xf0, 0x93, 0x0c, 0x3b, 0x11, 0x2d, 0xf9, 0x15,
+ 0x1a, 0xc6, 0xfa, 0xb3, 0x1b, 0xd8, 0x18, 0xb5, 0x9d, 0x88, 0x1e, 0xc1, 0xc4, 0x6e, 0xe8, 0x64, 0x80, 0x6f,
+ 0xf9, 0xff, 0x53, 0xc7, 0x30, 0x09, 0xae, 0x8f, 0x64, 0x81, 0xe0, 0xb8, 0x7d, 0xe8, 0xcd, 0xea, 0xb1, 0x48,
+ 0x39, 0x49, 0x45, 0x03
};
-// context = smart_lighting
+// context = simple_context_ar
static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x65, 0x6e, 0x00, 0x09,
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x61, 0x72, 0x00, 0x09,
0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x98, 0x1b, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c,
- 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20,
- 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x61,
- 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x74, 0x6f,
- 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
- 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69,
- 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74,
- 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c,
- 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x74, 0x6f,
- 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
- 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
- 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63,
- 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d,
- 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
- 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
- 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72,
- 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20,
- 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
- 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f,
- 0x6c, 0x6f, 0x72, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74,
- 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
- 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x61, 0x6c,
- 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
- 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20,
- 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20,
- 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68,
- 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
- 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67,
- 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
- 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28,
- 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
- 0x73, 0x5d, 0x20, 0x5b, 0x69, 0x6e, 0x2c, 0x20, 0x61, 0x74, 0x5d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x24, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66,
- 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66,
- 0x66, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
- 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28,
- 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x6f,
- 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
- 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c,
- 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20,
- 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68,
- 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74,
- 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73,
- 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24,
- 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68,
- 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d,
- 0x20, 0x6f, 0x66, 0x66, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65,
- 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
- 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68,
- 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x62, 0x6c, 0x75, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x72, 0x65,
- 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x72, 0x61, 0x6e, 0x67,
- 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x69, 0x6e, 0x6b, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x72, 0x65, 0x64, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2d, 0x20, 0x22, 0x77, 0x68, 0x69, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
- 0x20, 0x22, 0x79, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62,
- 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x62, 0x65, 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x68,
- 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6b,
- 0x69, 0x74, 0x63, 0x68, 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6c,
- 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2d, 0x20, 0x22, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x0a, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
- 0x1d, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x37, 0x00,
- 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00,
- 0x57, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00,
- 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00,
- 0x8d, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x9d, 0x00, 0x00, 0x00, 0xa1, 0x00,
- 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00,
- 0x61, 0x6c, 0x6c, 0x00, 0x61, 0x74, 0x00, 0x62, 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x65,
- 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x6c, 0x75, 0x65, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x00,
- 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x67, 0x72, 0x65, 0x65, 0x6e,
- 0x00, 0x68, 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x00, 0x69, 0x6e, 0x00, 0x6b, 0x69, 0x74, 0x63, 0x68, 0x65,
- 0x6e, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x00, 0x6c, 0x69, 0x76,
- 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x6d, 0x61, 0x6b, 0x65, 0x00, 0x6f, 0x66, 0x66, 0x00,
- 0x6f, 0x6e, 0x00, 0x6f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x00, 0x70,
- 0x69, 0x6e, 0x6b, 0x00, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x00, 0x72, 0x65, 0x64, 0x00, 0x73, 0x65, 0x74,
- 0x00, 0x73, 0x68, 0x75, 0x74, 0x00, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x00, 0x74, 0x68, 0x65, 0x00, 0x74,
- 0x6f, 0x00, 0x74, 0x75, 0x72, 0x6e, 0x00, 0x77, 0x68, 0x69, 0x74, 0x65, 0x00, 0x79, 0x65, 0x6c, 0x6c, 0x6f,
- 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
- 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
- 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
- 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
- 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
- 0x1d, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x25, 0x00,
- 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x1d, 0x00,
- 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
- 0x30, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x44, 0x00,
- 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00,
- 0x52, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x66, 0x00,
- 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00,
- 0x75, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7d, 0x00,
- 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00,
- 0x04, 0x15, 0x02, 0x1f, 0x07, 0x02, 0x20, 0x1c, 0x22, 0x16, 0x07, 0x0b, 0x09, 0x1c, 0x22, 0x16, 0x07, 0x15,
- 0x22, 0x08, 0x0d, 0x17, 0x13, 0x14, 0x15, 0x01, 0x26, 0x03, 0x1f, 0x14, 0x03, 0x15, 0x0c, 0x14, 0x04, 0x15,
- 0x0c, 0x0f, 0x1c, 0x12, 0x17, 0x10, 0x04, 0x15, 0x24, 0x0d, 0x11, 0x17, 0x14, 0x11, 0x08, 0x03, 0x17, 0x15,
- 0x06, 0x1f, 0x1d, 0x15, 0x06, 0x1f, 0x15, 0x11, 0x23, 0x11, 0x18, 0x1c, 0x22, 0x16, 0x16, 0x0d, 0x14, 0x04,
- 0x0e, 0x01, 0x17, 0x04, 0x17, 0x04, 0x1c, 0x03, 0x17, 0x13, 0x04, 0x1c, 0x11, 0x17, 0x13, 0x1b, 0x02, 0x17,
- 0x1f, 0x1c, 0x12, 0x1b, 0x11, 0x18, 0x14, 0x1b, 0x0c, 0x1b, 0x03, 0x15, 0x1c, 0x0b, 0x09, 0x1d, 0x0b, 0x1f,
- 0x1e, 0x03, 0x1f, 0x1d, 0x24, 0x11, 0x08, 0x0a, 0x03, 0x0a, 0x12, 0x1f, 0x03, 0x1f, 0x11, 0x1f, 0x22, 0x1f,
- 0x0c, 0x17, 0x10, 0x24, 0x06, 0x1f, 0x24, 0x06, 0x1f, 0x25, 0x0b, 0x15, 0x19, 0x00, 0x0f, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x12, 0x00,
- 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00,
- 0x18, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x22, 0x00,
- 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
- 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1d, 0x00,
- 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x09, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x10, 0x00,
- 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
- 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
- 0x07, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
- 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00,
- 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
- 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00,
- 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73, 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
- 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
- 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00,
- 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00,
- 0x31, 0x00, 0x00, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x00, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66, 0x00, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0x04, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x64, 0x0a,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00,
- 0x44, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x3c, 0x02,
- 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x58, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0xb8, 0x00,
- 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00,
- 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00,
- 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x90, 0x01,
- 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
- 0x34, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x34, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x5c, 0x01, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x01, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00,
- 0xa4, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd0, 0x01,
- 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0xa4, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00,
- 0x2c, 0x02, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x1c, 0x02, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
- 0x54, 0x02, 0x00, 0x00, 0xc8, 0x02, 0x00, 0x00, 0x3c, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x6c, 0x02, 0x00, 0x00, 0xa4, 0x02, 0x00, 0x00, 0x54, 0x02, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x02, 0x00, 0x00, 0x6c, 0x02,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x02, 0x00, 0x00,
- 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x02,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x02, 0x00, 0x00,
- 0xa4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x02,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00,
- 0xc8, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xf4, 0x02,
- 0x00, 0x00, 0x18, 0x03, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0xf4, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00,
- 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00,
- 0xf8, 0x05, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x88, 0x03, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0xd0, 0x03,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00,
- 0x38, 0x04, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x28, 0x04, 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x4c, 0x04, 0x00, 0x00, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00,
- 0x74, 0x04, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x04,
- 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0xb4, 0x04, 0x00, 0x00, 0xa0, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xc8, 0x04, 0x00, 0x00, 0xb4, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x38, 0x05, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x50, 0x05, 0x00, 0x00, 0x74, 0x05, 0x00, 0x00, 0x38, 0x05,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x05, 0x00, 0x00,
- 0x50, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x05,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0xd4, 0x05,
- 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0xb0, 0x05, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xc4, 0x05, 0x00, 0x00, 0xb0, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xe8, 0x05, 0x00, 0x00, 0xd4, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x28, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x10, 0x06,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00,
- 0x28, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x06,
- 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x64, 0x06, 0x00, 0x00, 0x50, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x88, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x9c, 0x06, 0x00, 0x00, 0x88, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xec, 0x06, 0x00, 0x00, 0x10, 0x07, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0xec, 0x06,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0xc0, 0x08, 0x00, 0x00,
- 0xf8, 0x08, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x20, 0x07,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x6c, 0x07, 0x00, 0x00,
- 0x90, 0x07, 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x48, 0x07,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x07, 0x00, 0x00,
- 0x6c, 0x07, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0xdc, 0x07,
- 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xcc, 0x07, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0xf0, 0x07, 0x00, 0x00, 0xdc, 0x07, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x2c, 0x08, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x08, 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x50, 0x08, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x74, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x08, 0x00, 0x00, 0xb0, 0x08, 0x00, 0x00, 0x74, 0x08,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x08, 0x00, 0x00,
- 0x8c, 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x08,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
- 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd4, 0x08, 0x00, 0x00, 0xc0, 0x08,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x08, 0x00, 0x00,
- 0xd4, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x09, 0x00, 0x00,
- 0xf8, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00,
- 0x6c, 0x09, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x5c, 0x09, 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x6c, 0x09, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xbc, 0x09, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe0, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00,
- 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf4, 0x09, 0x00, 0x00, 0xe0, 0x09,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
- 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x18, 0x0a, 0x00, 0x00, 0x04, 0x0a,
- 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00,
- 0x18, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x40, 0x0a,
- 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x54, 0x0a, 0x00, 0x00, 0x40, 0x0a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00,
- 0x8c, 0x0a, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0xb0, 0x0d,
- 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x05, 0x00, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0xd4, 0x0a, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x80, 0x0b,
- 0x00, 0x00, 0xa4, 0x0b, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xc4, 0x0a, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x0b, 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x0c, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x34, 0x0b, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x70, 0x0b, 0x00, 0x00,
- 0x34, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x60, 0x0b,
- 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x34, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x94, 0x0b, 0x00, 0x00,
- 0x80, 0x0b, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
- 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00,
- 0xa4, 0x0b, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x0b,
- 0x00, 0x00, 0xf4, 0x0b, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00, 0x00, 0xd0, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0c, 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x50, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x78, 0x0c, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0xb4, 0x0c, 0x00, 0x00,
- 0x78, 0x0c, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x0c,
- 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x78, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0c,
- 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00,
- 0x3c, 0x0d, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00, 0x2c, 0x0d, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x06, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x0d, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x54, 0x0d, 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x3c, 0x0d,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00,
- 0x54, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x7c, 0x0d,
- 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x3c, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x0d,
- 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x64, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xc8, 0x0d,
- 0x00, 0x00, 0xec, 0x0d, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xdc, 0x0d, 0x00, 0x00, 0xc8, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x64, 0x0e, 0x00, 0x00,
- 0x28, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x54, 0x0e,
- 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x28, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x0d,
- 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00,
- 0xc4, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xb4, 0x0e, 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xd8, 0x0e, 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_ENGLISH__
-
-#if defined(__PV_LANGUAGE_GERMAN__)
-
-// wake-word = hey computer
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xa9, 0x5b, 0x9a, 0x5d, 0x4f, 0x7b, 0x71, 0x04, 0x94, 0xb2, 0x6c, 0x15, 0x29, 0xbf, 0xde, 0x31, 0x9c, 0xa9,
- 0x74, 0x68, 0x62, 0xfe, 0x9f, 0x16, 0x8d, 0xe3, 0xeb, 0x5e, 0x09, 0x1c, 0xaf, 0x7a, 0xbd, 0x42, 0x32, 0x40,
- 0x7c, 0xbd, 0xe8, 0x62, 0x32, 0xa3, 0x0c, 0xfd, 0x13, 0x16, 0xd9, 0x56, 0x8a, 0x8e, 0x8c, 0xcd, 0xc9, 0x06,
- 0x6c, 0x29, 0x42, 0xe4, 0x78, 0x9a, 0x07, 0x13, 0x77, 0xff, 0x6e, 0x47, 0xa5, 0x5f, 0xd2, 0xec, 0x28, 0x70,
- 0xb5, 0x69, 0x31, 0xc7, 0xe0, 0x98, 0xbd, 0x15, 0x1d, 0xbc, 0x84, 0xe3, 0xe3, 0x5f, 0x6b, 0x51, 0x1f, 0x38,
- 0x2f, 0xe6, 0xd2, 0x23, 0xb4, 0x61, 0x5d, 0xb3, 0x2b, 0xf0, 0x17, 0xf0, 0x63, 0xca, 0x51, 0x61, 0x85, 0xfc,
- 0xab, 0xed, 0xab, 0xc7, 0x16, 0xa0, 0x9e, 0xf4, 0x16, 0xb5, 0xe3, 0x96, 0xda, 0x56, 0x78, 0x2b, 0xea, 0x6e,
- 0x7e, 0x93, 0xb1, 0xdc, 0x91, 0x1a, 0x81, 0x38, 0xfc, 0x3d, 0x8e, 0x8c, 0xfc, 0x23, 0xb1, 0x0d, 0xd0, 0xd6,
- 0xae, 0x90, 0xab, 0x6e, 0x7d, 0xed, 0x0f, 0x7d, 0x14, 0xaf, 0x10, 0xfc, 0xa5, 0x66, 0x57, 0x63, 0x40, 0x82,
- 0xcc, 0x69, 0x1d, 0x8b, 0x55, 0x82, 0xfa, 0x48, 0x4a, 0xa0, 0x63, 0x8b, 0x57, 0x93, 0xc3, 0xe8, 0xb1, 0x52,
- 0x40, 0x14, 0xc6, 0x8a, 0xb7, 0x85, 0x7c, 0x0b, 0x51, 0x76, 0xd6, 0x6c, 0x13, 0x34, 0x87, 0x91, 0x1a, 0xbb,
- 0x7b, 0x26, 0x05, 0xdd, 0xda, 0x82, 0x5a, 0xce, 0xfd, 0xf1, 0xe0, 0x49, 0x28, 0x9a, 0x05, 0xc0, 0x11, 0x30,
- 0x1b, 0x3a, 0x6d, 0xfe, 0x21, 0x79, 0x25, 0x27, 0x9d, 0xfd, 0xa2, 0xc3, 0xc2, 0x5a, 0xc3, 0xa4, 0xf5, 0x39,
- 0xaa, 0x4b, 0x93, 0x78, 0xa0, 0xae, 0x20, 0x90, 0x07, 0xe3, 0x21, 0x4b, 0x60, 0x9f, 0x83, 0x59, 0xe9, 0xdb,
- 0x55, 0x7b, 0xed, 0x34, 0x2a, 0x06, 0x28, 0x16, 0x8d, 0x55, 0xb0, 0x38, 0x2e, 0x46, 0xb3, 0x94, 0xa9, 0x05,
- 0x30, 0x6c, 0x38, 0x41, 0xe8, 0x94, 0xc9, 0x21, 0x52, 0xbf, 0xf8, 0x50, 0x97, 0x56, 0x45, 0xa5, 0x1f, 0x2b,
- 0x55, 0xaa, 0x22, 0x58, 0x79, 0x94, 0x7c, 0x06, 0x2f, 0x30, 0xfb, 0x65, 0x37, 0xdb, 0xb0, 0x24, 0xe7, 0x5e,
- 0xab, 0x21, 0xde, 0x24, 0x9c, 0x56, 0x64, 0x5b, 0x11, 0xf8, 0xaa, 0x64, 0xa5, 0x84, 0x9f, 0xbd, 0xec, 0x56,
- 0x7c, 0xc7, 0x46, 0x15, 0x84, 0x18, 0x26, 0x9c, 0x32, 0xdd, 0xef, 0xd9, 0x93, 0x67, 0x08, 0x76, 0xa7, 0x73,
- 0x4a, 0x9c, 0xbc, 0xc4, 0x16, 0x35, 0x2a, 0x59, 0xec, 0x6c, 0x9f, 0x7e, 0x0f, 0x8d, 0x82, 0x36, 0xbc, 0xaf,
- 0x9f, 0xb0, 0x96, 0x07, 0xb6, 0x8f, 0xda, 0x4b, 0xb5, 0xe3, 0xc3, 0x00, 0x6c, 0x95, 0x43, 0x7d, 0x98, 0xaf,
- 0xa6, 0x7e, 0x38, 0x0e, 0xc1, 0x0c, 0x90, 0x51, 0x83, 0x90, 0x72, 0xaa, 0xe4, 0x50, 0x17, 0x31, 0x4f, 0x0c,
- 0x6e, 0xb7, 0x10, 0x32, 0x42, 0x03, 0xc2, 0x24, 0x57, 0x6d, 0x07, 0x93, 0x23, 0x4c, 0xd8, 0x2e, 0x7d, 0x46,
- 0x17, 0x06, 0x5f, 0xcd, 0x37, 0xa2, 0x0a, 0x0b, 0x9e, 0xb6, 0x7b, 0x82, 0x09, 0xa2, 0x65, 0x41, 0xea, 0x70,
- 0x96, 0x8e, 0x19, 0x88, 0xf6, 0xef, 0xc2, 0x45, 0x69, 0xc2, 0xd8, 0xfd, 0xfe, 0xde, 0x6a, 0x75, 0x47, 0x08,
- 0x60, 0x38, 0xbd, 0x9d, 0xb0, 0xf5, 0x34, 0xca, 0x7b, 0xcb, 0x59, 0x86, 0x6c, 0xa2, 0x1a, 0x76, 0xa9, 0x8a,
- 0x36, 0x97, 0xe7, 0xa9, 0x2d, 0xdf, 0xfe, 0x1f, 0xdf, 0xa1, 0xfd, 0x07, 0x94, 0xe4, 0x09, 0x94, 0x30, 0xa2,
- 0x75, 0x31, 0xb8, 0xce, 0xb0, 0xd6, 0x6d, 0xb9, 0x46, 0xc2, 0xfa, 0xfc, 0xbc, 0xf0, 0x26, 0x24, 0x49, 0x42,
- 0x5d, 0x53, 0x19, 0xd4, 0x58, 0x5e, 0x77, 0x89, 0xdd, 0xad, 0xd3, 0xd7, 0xd7, 0xb8, 0xb9, 0xaa, 0x05, 0x67,
- 0xdb, 0x5f, 0xfe, 0xad, 0xa8, 0x31, 0xc1, 0xb2, 0x86, 0x31, 0x1d, 0x25, 0x60, 0xf6, 0x88, 0xa8, 0x6c, 0x2e,
- 0xee, 0x99, 0xf6, 0x68, 0x1d, 0x2d, 0x2b, 0x30, 0x69, 0xca, 0xd9, 0x05
-};
-
-// context = beleuchtung
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x64, 0x65, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x22, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x20, 0x24, 0x76, 0x72,
+ 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
+ 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x22, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa7, 0xd9, 0x84, 0xd9, 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88,
+ 0xd9, 0x84, 0xd8, 0xa9, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xaa, 0xd9,
+ 0x81, 0xd8, 0xa7, 0xd8, 0xad, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x33, 0x00,
+ 0x00, 0x00, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x00, 0xd8, 0xa7, 0xd9, 0x84, 0xd9,
+ 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88, 0xd9, 0x84, 0xd8, 0xa9, 0x00, 0xd8, 0xaa, 0xd9, 0x81, 0xd8, 0xa7,
+ 0xd8, 0xad, 0x00, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x00, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1e, 0x00,
+ 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x46, 0x00,
+ 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00,
+ 0x7c, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa6, 0x00,
+ 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
+ 0xc4, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xd6, 0x00,
+ 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xea, 0x00, 0x00, 0x00,
+ 0xf1, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x03, 0x01, 0x00, 0x00, 0x07, 0x01,
+ 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x16, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00,
+ 0x21, 0x01, 0x00, 0x00, 0x27, 0x01, 0x00, 0x00, 0x2b, 0x01, 0x00, 0x00, 0x30, 0x01, 0x00, 0x00, 0x36, 0x01,
+ 0x00, 0x00, 0x02, 0x10, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x02, 0x1a, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x20, 0x09,
+ 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10,
+ 0x16, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20,
+ 0x24, 0x03, 0x09, 0x10, 0x08, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03,
+ 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24,
+ 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a,
+ 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a,
+ 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03,
+ 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11,
+ 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x10, 0x08,
+ 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x0c, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a,
+ 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a, 0x0c, 0x0e, 0x21, 0x0e, 0x0e, 0x21, 0x0e, 0x10, 0x0e, 0x21, 0x0e, 0x03,
+ 0x0e, 0x21, 0x0e, 0x1a, 0x0e, 0x21, 0x0e, 0x1a, 0x0c, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x0e, 0x1a, 0x24, 0x10,
+ 0x0e, 0x10, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x18, 0x10, 0x0a, 0x10,
+ 0x11, 0x10, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x11, 0x18, 0x10, 0x0a, 0x11, 0x10,
+ 0x18, 0x03, 0x0a, 0x11, 0x18, 0x03, 0x0a, 0x11, 0x03, 0x0c, 0x18, 0x03, 0x0a, 0x11, 0x1a, 0x0c, 0x18, 0x1a,
+ 0x0a, 0x10, 0x11, 0x18, 0x1a, 0x0a, 0x10, 0x11, 0x10, 0x18, 0x1a, 0x0a, 0x11, 0x18, 0x1a, 0x0a, 0x11, 0x10,
+ 0x18, 0x1a, 0x0a, 0x11, 0x1a, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69,
+ 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x18, 0x00,
+ 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_ARABIC__
+
+#if defined(__PV_LANGUAGE_GERMAN__)
+
+// wake-word = hey computer
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x97, 0x6f, 0x9c, 0x1d, 0x10, 0xb1, 0xbe, 0xcc, 0x81, 0xc4, 0xe7, 0xf1, 0xeb, 0xcd, 0x55, 0xd6, 0x74, 0x17,
+ 0xed, 0x0d, 0x6a, 0xbe, 0x39, 0xf7, 0xc6, 0x32, 0xe8, 0x31, 0x27, 0x37, 0x98, 0xea, 0x12, 0xbb, 0x53, 0xd6,
+ 0xa5, 0x80, 0xe7, 0x7d, 0x67, 0x29, 0x87, 0xf7, 0x09, 0x46, 0xe2, 0x3b, 0x52, 0xbb, 0x64, 0x92, 0x53, 0xb2,
+ 0x3d, 0x09, 0xd4, 0xa8, 0x7a, 0x34, 0x80, 0xfd, 0x6d, 0x5d, 0x33, 0x9e, 0x85, 0xb3, 0x2c, 0xd0, 0xc4, 0x52,
+ 0xe4, 0x9d, 0x46, 0x0c, 0x83, 0x36, 0x48, 0x34, 0xb2, 0xfb, 0x51, 0xad, 0xd4, 0x78, 0x30, 0x87, 0xfd, 0xf6,
+ 0x79, 0x60, 0x3a, 0x4d, 0x53, 0xb8, 0x80, 0x58, 0xa2, 0xf1, 0x68, 0x9e, 0x95, 0x72, 0x9e, 0xbe, 0xd9, 0xa5,
+ 0xdc, 0x15, 0xaa, 0x18, 0x41, 0xc6, 0x9f, 0xfc, 0x09, 0xef, 0x5a, 0x3a, 0x9f, 0xda, 0x40, 0x5d, 0x32, 0xef,
+ 0xad, 0x90, 0x22, 0xa1, 0xc7, 0xd7, 0xa0, 0x19, 0xbf, 0xa2, 0x17, 0xd6, 0xcb, 0x2a, 0x81, 0xa2, 0x1d, 0x02,
+ 0xcf, 0x16, 0xea, 0x2a, 0x29, 0x7a, 0xbc, 0x34, 0x97, 0x83, 0x75, 0x31, 0x7d, 0x7f, 0xf6, 0x1b, 0x72, 0xdb,
+ 0x07, 0xaf, 0xdd, 0xb6, 0xf9, 0x2a, 0xa4, 0x8d, 0x38, 0xe4, 0x43, 0xd0, 0x40, 0x66, 0x68, 0x4a, 0x2f, 0x21,
+ 0x23, 0xb5, 0x22, 0x42, 0x27, 0x5a, 0x03, 0x94, 0x93, 0x6d, 0x99, 0xa7, 0x6f, 0x13, 0x4e, 0x4f, 0x32, 0x6e,
+ 0x8f, 0x5e, 0x36, 0x19, 0xe1, 0x32, 0x08, 0x58, 0xc4, 0xa3, 0xf7, 0x60, 0x17, 0xec, 0xea, 0x78, 0x1d, 0x2b,
+ 0xbc, 0x6f, 0x80, 0x97, 0x88, 0x88, 0x6f, 0xf9, 0xf4, 0x99, 0x15, 0x12, 0x25, 0x54, 0xdf, 0x02, 0xdb, 0x6b,
+ 0x35, 0x04, 0x51, 0xd7, 0x5d, 0x7e, 0xee, 0xef, 0x85, 0x48, 0x55, 0x5c, 0x70, 0x70, 0xbb, 0xc2, 0x8f, 0x92,
+ 0x67, 0x43, 0x81, 0xa1, 0xca, 0x89, 0xf7, 0xa4, 0xd1, 0xa9, 0x86, 0x34, 0x41, 0xfa, 0xc0, 0x04, 0x9b, 0xcd,
+ 0x7e, 0x45, 0xbd, 0x8f, 0x72, 0x06, 0x0c, 0x40, 0x3e, 0x68, 0x62, 0x08, 0x76, 0xca, 0xbe, 0xef, 0xad, 0x18,
+ 0x3f, 0x2c, 0x68, 0x99, 0xfb, 0xb0, 0x9b, 0x4b, 0x64, 0x90, 0x8c, 0x70, 0xfe, 0x9d, 0xb4, 0x99, 0x3f, 0x30,
+ 0x5e, 0x8a, 0xea, 0x72, 0x2d, 0x2b, 0xb6, 0x77, 0x3f, 0x6e, 0xfd, 0x47, 0x7d, 0x1d, 0x44, 0xcb, 0x2d, 0x86,
+ 0x56, 0x95, 0xbf, 0xc9, 0xf8, 0x13, 0x3a, 0x3b, 0xd8, 0x15, 0x29, 0x08, 0x12, 0x34, 0x16, 0xca, 0x01, 0xde,
+ 0x99, 0xc9, 0xe7, 0x1a, 0x56, 0x64, 0x17, 0x2a, 0x1a, 0x24, 0xb8, 0x50, 0x01, 0x5c, 0x89, 0x07, 0x0c, 0x8c,
+ 0x9c, 0x0c, 0x1a, 0x3f, 0xea, 0x05, 0x67, 0x84, 0xd5, 0xc7, 0x6f, 0xe2, 0x3f, 0x92, 0x7c, 0x62, 0x0b, 0xb9,
+ 0xaa, 0xac, 0xa3, 0x68, 0x72, 0xb1, 0xca, 0x68, 0xf4, 0x3d, 0x95, 0x06, 0x14, 0x55, 0x4f, 0xb4, 0x84, 0x3d,
+ 0x5c, 0x49, 0x25, 0x52, 0x0a, 0x3a, 0xf5, 0x8b, 0x2d, 0x5f, 0x3e, 0x3d, 0x71, 0x0d, 0xae, 0xa1, 0x9d, 0x22,
+ 0xc7, 0x6e, 0xcf, 0x94, 0xec, 0xc5, 0xc0, 0x10, 0xbd, 0xc7, 0x54, 0x84, 0x72, 0x9a, 0xf3, 0x2e, 0xd0, 0xe0,
+ 0x29, 0x54, 0xda, 0xe2, 0x69, 0x76, 0x7c, 0x71, 0x5d, 0x1c, 0xb9, 0x7a, 0xe8, 0x5f, 0x19, 0x34, 0xe8, 0x49,
+ 0xa6, 0x61, 0x9c, 0x37, 0x0a, 0x5c, 0xac, 0x4b, 0x25, 0xe1, 0x44, 0x82, 0x0b, 0xe1, 0xe8, 0xbb, 0xdb, 0xae,
+ 0xcd, 0x55, 0x7b, 0xa9, 0xab, 0x94, 0x65, 0x15, 0x79, 0x27, 0x40, 0x83, 0x97, 0x08, 0xc2, 0x22, 0xb0, 0x31,
+ 0x36, 0x3a, 0x1e, 0x7e, 0x7d, 0x2b, 0x78, 0x30, 0x7c, 0x49, 0x1c, 0xa2, 0x65, 0x41, 0x95, 0x28, 0xef, 0x4d,
+ 0xa6, 0xb5, 0xab, 0xd9, 0xc7, 0x87, 0x18, 0xa9, 0x93, 0xb3, 0x78, 0x07, 0xf6, 0x62, 0x15, 0x58, 0x69, 0x50,
+ 0x52, 0xc8, 0x68, 0x37, 0xf3, 0x3e, 0x4e, 0x4b, 0xa8, 0x85, 0x1d, 0xcc, 0x77, 0x0e, 0x9e, 0x4c, 0x13, 0xee,
+ 0x72, 0xb4, 0xf4, 0x8f, 0x47, 0x8e, 0x55, 0x74, 0x45, 0xc6, 0x2f, 0x43
+};
+
+// context = beleuchtung
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x64, 0x65, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f,
0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x66, 0xc3, 0xa4, 0x72, 0x62,
@@ -751,49 +575,511 @@ static const uint8_t CONTEXT_ARRAY[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
-#endif // __PV_LANGUAGE_GERMAN__
+#endif // __PV_LANGUAGE_GERMAN__
+
+#if defined(__PV_LANGUAGE_ENGLISH__)
+
+// wake-word = picovoice
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x1a, 0x68, 0xd0, 0xd2, 0x03, 0xc2, 0x6e, 0xa8, 0x55, 0x24, 0x05, 0xa9, 0xa4, 0x4b, 0xb8, 0x1d, 0x5b, 0x39,
+ 0x6b, 0xc1, 0xb0, 0x5b, 0xe0, 0x23, 0xa6, 0x59, 0x0a, 0xab, 0x04, 0x94, 0xfb, 0xd5, 0x69, 0x30, 0x65, 0x58,
+ 0x41, 0x10, 0x27, 0x73, 0x31, 0x4c, 0xe6, 0x26, 0x51, 0x2b, 0x83, 0x4a, 0x98, 0x6d, 0x3c, 0xf3, 0x34, 0xb2,
+ 0x2b, 0xb2, 0xa6, 0x30, 0x78, 0x76, 0x70, 0x32, 0x82, 0x89, 0x9f, 0xc2, 0xd8, 0x40, 0x06, 0x7e, 0x5c, 0x4f,
+ 0xa6, 0x03, 0xd8, 0x0a, 0x80, 0x37, 0xfe, 0x92, 0x90, 0x0c, 0x9d, 0xd3, 0x77, 0xf6, 0xdc, 0xab, 0x9a, 0x8d,
+ 0x52, 0x1b, 0x5f, 0x15, 0x9c, 0x60, 0x87, 0xba, 0xd0, 0x36, 0xf4, 0x0e, 0xe2, 0x31, 0xef, 0x88, 0x9a, 0x33,
+ 0xd7, 0xaf, 0xb2, 0xdc, 0x62, 0x1d, 0xb2, 0xbb, 0x00, 0x99, 0x1f, 0x6b, 0xd7, 0xd4, 0x60, 0x68, 0xd4, 0x81,
+ 0x7d, 0xcc, 0x08, 0x04, 0xe5, 0x39, 0x47, 0x34, 0xc8, 0x9a, 0xce, 0x73, 0xe8, 0x4f, 0xf3, 0xa5, 0x3c, 0x76,
+ 0x75, 0x96, 0x73, 0x46, 0xc3, 0x4b, 0x9e, 0x00, 0x94, 0x3e, 0xa7, 0x24, 0x71, 0x8a, 0x16, 0xc2, 0x85, 0x66,
+ 0x68, 0xde, 0x07, 0xeb, 0xba, 0xa0, 0xbe, 0x92, 0xf6, 0xd8, 0xb7, 0x73, 0xe7, 0xe0, 0xf0, 0xc8, 0x12, 0x4a,
+ 0x4e, 0xd8, 0x0e, 0xac, 0x3b, 0x55, 0x7e, 0x2a, 0x33, 0x72, 0x65, 0x25, 0xe7, 0x85, 0xce, 0x5b, 0xe1, 0xa2,
+ 0x89, 0x8f, 0xc3, 0xfb, 0x6c, 0xf6, 0x64, 0x58, 0xa3, 0xc9, 0x81, 0x24, 0x0f, 0x9f, 0x2f, 0x2d, 0x00, 0x07,
+ 0x68, 0x03, 0xd7, 0x5d, 0x41, 0x39, 0xe8, 0xbf, 0xc4, 0x0a, 0x84, 0x81, 0x39, 0x5b, 0x82, 0x48, 0x42, 0x7b,
+ 0xa8, 0x52, 0x7b, 0x0b, 0x26, 0xd6, 0x83, 0xd5, 0x2b, 0x33, 0x32, 0x1d, 0x16, 0xab, 0x2c, 0xbe, 0x75, 0xca,
+ 0x69, 0x07, 0x1d, 0x00, 0x1b, 0x56, 0x59, 0xe3, 0xea, 0x87, 0x8f, 0x3f, 0x1d, 0xf4, 0xff, 0xf1, 0xf5, 0xda,
+ 0x57, 0x9e, 0xae, 0xa9, 0xab, 0x3c, 0xfd, 0xc8, 0x0b, 0x95, 0x22, 0x16, 0x45, 0x13, 0xf8, 0x36, 0x18, 0x16,
+ 0xac, 0x8b, 0x60, 0xa3, 0x2d, 0xf0, 0xd3, 0x14, 0x60, 0x97, 0xdd, 0x11, 0x81, 0x52, 0xf5, 0x37, 0xf2, 0xbc,
+ 0xa4, 0x72, 0x2e, 0xc8, 0x8d, 0xbf, 0xa3, 0x9e, 0x5e, 0xfa, 0xef, 0x23, 0x45, 0x91, 0x8a, 0x86, 0x66, 0x13,
+ 0x05, 0x6e, 0x3d, 0xbc, 0xd7, 0xef, 0xe1, 0x44, 0x02, 0x75, 0x65, 0x55, 0xcd, 0x85, 0x3e, 0x31, 0xe2, 0x8b,
+ 0x2b, 0xbd, 0x3f, 0xca, 0x4e, 0xdf, 0xb2, 0xca, 0x4b, 0x45, 0x9f, 0xf0, 0x3d, 0x97, 0x83, 0xe6, 0x0b, 0xcd,
+ 0x2b, 0xd3, 0x0d, 0xdb, 0x57, 0xd1, 0x18, 0xfa, 0xcf, 0x84, 0x50, 0xff, 0xdb, 0xa6, 0x5d, 0x7c, 0x0c, 0x71,
+ 0x8e, 0xb2, 0x36, 0x61, 0x13, 0xa4, 0x41, 0x26, 0xcf, 0x8d, 0xa8, 0xf8, 0x0f, 0xef, 0xb8, 0x2a, 0x4d, 0xf6,
+ 0x6b, 0x09, 0x5e, 0x5f, 0xf8, 0x8e, 0x4e, 0x9b, 0x68, 0x3d, 0x73, 0xa0, 0xdd, 0x1b, 0x8c, 0x56, 0x14, 0x98,
+ 0xf7, 0xc8, 0xd6, 0x99, 0x52, 0xcf, 0x7b, 0x11, 0x70, 0xe2, 0x22, 0x06, 0x7e, 0x0f, 0x0e, 0xd2, 0x5d, 0x58,
+ 0x74, 0xfc, 0x1a, 0xf9, 0xc9, 0x9f, 0xd8, 0x42, 0x0b, 0xe3, 0xa9, 0x28, 0xab, 0xce, 0x6b, 0x19, 0x4b, 0xea,
+ 0x53, 0x8b, 0x4d, 0x53, 0x81, 0xca, 0xec, 0x56, 0x82, 0xa5, 0x63, 0xbb, 0x6a, 0x11, 0x48, 0xe2, 0xc4, 0x4e,
+ 0xee, 0x24, 0x19, 0x16, 0x81, 0xb0, 0xa3, 0xfa, 0xe5, 0x2e, 0x0d, 0x89, 0x0b, 0x2f, 0xe0, 0x03, 0x83, 0x8b,
+ 0x3a, 0x75, 0xf4, 0x3a, 0x7e, 0x7c, 0x87, 0x7a, 0x68, 0x44, 0x5e, 0xb9, 0xd0, 0x50, 0xfc, 0xe3, 0x57, 0xc0,
+ 0xaf, 0xbb, 0x1f, 0xe2, 0x72, 0x3a, 0xc4, 0x9a, 0xa5, 0xf2, 0x7c, 0x8a, 0xe7, 0xad, 0xb8, 0x4b, 0x07, 0xa7,
+ 0xcb, 0xfd, 0x6c, 0x10, 0x13, 0x36, 0xec, 0x46, 0x73, 0x3b, 0xec, 0x84, 0xc3, 0x8f, 0x7a, 0x53, 0xf1, 0x9f,
+ 0x05, 0x92, 0xad, 0x11, 0xad, 0xe2, 0x5f, 0xe6, 0xf7, 0xc1, 0xbe, 0x50, 0x18, 0xf0, 0x25, 0xe0, 0x07, 0x51,
+ 0x7f, 0x5d, 0x42, 0xb9, 0xa8, 0x55, 0x9d, 0x01, 0x32, 0x70, 0xdb, 0x77, 0x7f, 0xe8, 0xa3, 0x94, 0xe8, 0x17,
+ 0x03, 0x1f, 0x22, 0x5c, 0x21, 0x20, 0x35, 0xea, 0x7b, 0xb5, 0xcb, 0xc7, 0x59, 0x8e, 0x08, 0x55, 0x91, 0xdd,
+ 0x35, 0x58, 0xc9, 0x37, 0xa5, 0xfa, 0xcb, 0x7d, 0x3d, 0x74, 0x45, 0xae, 0xe8, 0x1c, 0xd4, 0xe4, 0x96, 0x11,
+ 0x7c, 0x30, 0x27, 0xd7, 0x3a, 0xc2, 0xfb, 0x0c, 0x03, 0xa7, 0xe3, 0xaa, 0xdf, 0xa2, 0x81, 0xbe, 0xae, 0x12,
+ 0x3d, 0x0d, 0x23, 0x58, 0x3a, 0x7c, 0x8a, 0x33, 0x0a, 0xc9, 0xdd, 0x86, 0x8d, 0xaa, 0xf8, 0x76, 0x78, 0x89,
+ 0x33, 0xe0, 0xd7, 0x53, 0xce, 0x36, 0x21, 0x86, 0xf9, 0xe2, 0x6d, 0xda, 0x63, 0xf5, 0x18, 0xfe, 0xff, 0x66,
+ 0x19, 0x5e, 0x46, 0x4c, 0x20, 0xcb, 0x85, 0xf8, 0x93, 0x9e, 0xf5, 0xb3, 0x1a, 0xe3, 0x77, 0x4e, 0xc0, 0xeb,
+ 0xfb, 0xe3, 0xb3, 0xed, 0x23, 0x39, 0xfd, 0xfd, 0x5d, 0xa0, 0x4c, 0x3c, 0xdb, 0x62, 0x1e, 0xf8, 0xbb, 0xd6,
+ 0x43, 0x4a, 0x2c, 0x4c, 0x7c, 0xea, 0x5f, 0xc4, 0xf3, 0x82, 0x3c, 0x22, 0x02, 0x79, 0xd2, 0xb9, 0xa9, 0xaa,
+ 0x4f, 0x9e, 0xdd, 0x0e, 0x4d, 0xb4, 0xdd, 0x09, 0xde, 0x71, 0xd8, 0x9b, 0xdf, 0xd1, 0x0f, 0xeb, 0x34, 0x50,
+ 0xea, 0xc6, 0x31, 0xe7, 0xb2, 0x2b, 0x98, 0x95, 0x0a, 0x3c, 0x39, 0xc2, 0xf2, 0x7a, 0x56, 0x64, 0xfb, 0x15,
+ 0x07, 0x34, 0x3b, 0x93, 0x51, 0xd9, 0x34, 0xad, 0xc5, 0x90, 0x2b, 0x72, 0x39, 0x37, 0x1c, 0xe3, 0xb1, 0x3d,
+ 0x37, 0x0b, 0x5c, 0xa7, 0x78, 0xab, 0x32, 0x0b, 0xf5, 0xb5, 0x99, 0x1b, 0xb6, 0xee, 0x39, 0xb8, 0x2a, 0x12,
+ 0x30, 0x1c, 0xcb, 0xa7, 0xc3, 0x9b, 0xc4, 0xd8, 0x6f, 0x47, 0xea, 0x55, 0xac, 0x59, 0x45, 0x3c, 0x9f, 0xfc,
+ 0xea, 0x7a, 0x0e, 0xa6, 0x59, 0xdd, 0xb7, 0xce, 0x88, 0x77, 0x51, 0xd1, 0x1d, 0xd7, 0xda, 0x7d, 0x62, 0x7d,
+ 0x28, 0xa3, 0x90, 0x13, 0x45, 0x2e, 0x21, 0xc9, 0x6c, 0x12, 0xf3, 0xc9, 0x4e, 0xf9, 0x19, 0x2c, 0x82, 0xf3,
+ 0x72, 0xa7, 0xd6, 0xa5, 0x0b, 0x5d, 0xcf, 0xd9, 0x24, 0x41, 0x1e, 0xf8, 0xac, 0x9f, 0x93, 0xd1, 0xae, 0xc3,
+ 0x1c, 0xb2, 0xde, 0x5a, 0x1c, 0xc1, 0x0e, 0x37, 0x3c, 0x14, 0xca, 0xfe, 0x49, 0x50, 0xd9, 0x98, 0x26, 0x99,
+ 0x81, 0x87, 0xa6, 0x85, 0x09, 0xf0, 0x7c, 0x31, 0xab, 0xbe, 0xd8, 0x7b, 0xb6, 0xa1, 0x6b, 0xef, 0x97, 0x8a,
+ 0xd3, 0xfe, 0xfb, 0x94, 0xc4, 0x05, 0x95, 0x13, 0x6f, 0xfa, 0x13, 0xb7, 0x96, 0x8e, 0x0c, 0xb4, 0xd1, 0xf2,
+ 0x55, 0x08, 0x32, 0x88, 0xb1, 0x5e, 0x53, 0xa4, 0x50, 0xeb, 0x3a, 0x07, 0x7a, 0xc7, 0x47, 0x53, 0xc4, 0xac,
+ 0x3a, 0x34, 0xd1, 0x71, 0x17, 0x9f, 0xc0, 0x33, 0xed, 0xde, 0x4d, 0x8e, 0x1d, 0xfa, 0x63, 0xc2, 0xc5, 0x30,
+ 0x05, 0xff
+};
+
+// context = smart_lighting
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x65, 0x6e, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x98, 0x1b, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c,
+ 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20,
+ 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67,
+ 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x61,
+ 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x74, 0x6f,
+ 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
+ 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69,
+ 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74,
+ 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c,
+ 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x74, 0x6f,
+ 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
+ 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
+ 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
+ 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63,
+ 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68,
+ 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d,
+ 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
+ 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
+ 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
+ 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72,
+ 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20,
+ 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
+ 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f,
+ 0x6c, 0x6f, 0x72, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74,
+ 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
+ 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
+ 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x61, 0x6c,
+ 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x73, 0x74,
+ 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
+ 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20,
+ 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20,
+ 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68,
+ 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
+ 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
+ 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67,
+ 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
+ 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
+ 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28,
+ 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
+ 0x73, 0x5d, 0x20, 0x5b, 0x69, 0x6e, 0x2c, 0x20, 0x61, 0x74, 0x5d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x24, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66,
+ 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66,
+ 0x66, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
+ 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28,
+ 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x6f,
+ 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
+ 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c,
+ 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20,
+ 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68,
+ 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74,
+ 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73,
+ 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24,
+ 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68,
+ 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d,
+ 0x20, 0x6f, 0x66, 0x66, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65,
+ 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
+ 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68,
+ 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x62, 0x6c, 0x75, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x72, 0x65,
+ 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x72, 0x61, 0x6e, 0x67,
+ 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x69, 0x6e, 0x6b, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x72, 0x65, 0x64, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0x77, 0x68, 0x69, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
+ 0x20, 0x22, 0x79, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x74,
+ 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62,
+ 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x62, 0x65, 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x68,
+ 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6b,
+ 0x69, 0x74, 0x63, 0x68, 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6c,
+ 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2d, 0x20, 0x22, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x0a, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x1d, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x37, 0x00,
+ 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00,
+ 0x57, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00,
+ 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00,
+ 0x8d, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x9d, 0x00, 0x00, 0x00, 0xa1, 0x00,
+ 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00,
+ 0x61, 0x6c, 0x6c, 0x00, 0x61, 0x74, 0x00, 0x62, 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x65,
+ 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x6c, 0x75, 0x65, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x00,
+ 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x67, 0x72, 0x65, 0x65, 0x6e,
+ 0x00, 0x68, 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x00, 0x69, 0x6e, 0x00, 0x6b, 0x69, 0x74, 0x63, 0x68, 0x65,
+ 0x6e, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x00, 0x6c, 0x69, 0x76,
+ 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x6d, 0x61, 0x6b, 0x65, 0x00, 0x6f, 0x66, 0x66, 0x00,
+ 0x6f, 0x6e, 0x00, 0x6f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x00, 0x70,
+ 0x69, 0x6e, 0x6b, 0x00, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x00, 0x72, 0x65, 0x64, 0x00, 0x73, 0x65, 0x74,
+ 0x00, 0x73, 0x68, 0x75, 0x74, 0x00, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x00, 0x74, 0x68, 0x65, 0x00, 0x74,
+ 0x6f, 0x00, 0x74, 0x75, 0x72, 0x6e, 0x00, 0x77, 0x68, 0x69, 0x74, 0x65, 0x00, 0x79, 0x65, 0x6c, 0x6c, 0x6f,
+ 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
+ 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
+ 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x1d, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x25, 0x00,
+ 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x1d, 0x00,
+ 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
+ 0x30, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x44, 0x00,
+ 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00,
+ 0x52, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x66, 0x00,
+ 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00,
+ 0x75, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7d, 0x00,
+ 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00,
+ 0x04, 0x15, 0x02, 0x1f, 0x07, 0x02, 0x20, 0x1c, 0x22, 0x16, 0x07, 0x0b, 0x09, 0x1c, 0x22, 0x16, 0x07, 0x15,
+ 0x22, 0x08, 0x0d, 0x17, 0x13, 0x14, 0x15, 0x01, 0x26, 0x03, 0x1f, 0x14, 0x03, 0x15, 0x0c, 0x14, 0x04, 0x15,
+ 0x0c, 0x0f, 0x1c, 0x12, 0x17, 0x10, 0x04, 0x15, 0x24, 0x0d, 0x11, 0x17, 0x14, 0x11, 0x08, 0x03, 0x17, 0x15,
+ 0x06, 0x1f, 0x1d, 0x15, 0x06, 0x1f, 0x15, 0x11, 0x23, 0x11, 0x18, 0x1c, 0x22, 0x16, 0x16, 0x0d, 0x14, 0x04,
+ 0x0e, 0x01, 0x17, 0x04, 0x17, 0x04, 0x1c, 0x03, 0x17, 0x13, 0x04, 0x1c, 0x11, 0x17, 0x13, 0x1b, 0x02, 0x17,
+ 0x1f, 0x1c, 0x12, 0x1b, 0x11, 0x18, 0x14, 0x1b, 0x0c, 0x1b, 0x03, 0x15, 0x1c, 0x0b, 0x09, 0x1d, 0x0b, 0x1f,
+ 0x1e, 0x03, 0x1f, 0x1d, 0x24, 0x11, 0x08, 0x0a, 0x03, 0x0a, 0x12, 0x1f, 0x03, 0x1f, 0x11, 0x1f, 0x22, 0x1f,
+ 0x0c, 0x17, 0x10, 0x24, 0x06, 0x1f, 0x24, 0x06, 0x1f, 0x25, 0x0b, 0x15, 0x19, 0x00, 0x0f, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x12, 0x00,
+ 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x22, 0x00,
+ 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1d, 0x00,
+ 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x10, 0x00,
+ 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
+ 0x07, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
+ 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00,
+ 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
+ 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00,
+ 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73, 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
+ 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00,
+ 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73,
+ 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00,
+ 0x31, 0x00, 0x00, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x63, 0x68,
+ 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x00, 0x63, 0x68, 0x61,
+ 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66, 0x00, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x04, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x64, 0x0a,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00,
+ 0x44, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x3c, 0x02,
+ 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x58, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0xb8, 0x00,
+ 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00,
+ 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x90, 0x01,
+ 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x34, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x34, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x5c, 0x01, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x01, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00,
+ 0xa4, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd0, 0x01,
+ 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0xa4, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00,
+ 0x2c, 0x02, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x1c, 0x02, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x54, 0x02, 0x00, 0x00, 0xc8, 0x02, 0x00, 0x00, 0x3c, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x6c, 0x02, 0x00, 0x00, 0xa4, 0x02, 0x00, 0x00, 0x54, 0x02, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x02, 0x00, 0x00, 0x6c, 0x02,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x02, 0x00, 0x00,
+ 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x02,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x02, 0x00, 0x00,
+ 0xa4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x02,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00,
+ 0xc8, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xf4, 0x02,
+ 0x00, 0x00, 0x18, 0x03, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0xf4, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00,
+ 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00,
+ 0xf8, 0x05, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x88, 0x03, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0xd0, 0x03,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00,
+ 0x38, 0x04, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x28, 0x04, 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x4c, 0x04, 0x00, 0x00, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00,
+ 0x74, 0x04, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x04,
+ 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xb4, 0x04, 0x00, 0x00, 0xa0, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xc8, 0x04, 0x00, 0x00, 0xb4, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x38, 0x05, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x50, 0x05, 0x00, 0x00, 0x74, 0x05, 0x00, 0x00, 0x38, 0x05,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x05, 0x00, 0x00,
+ 0x50, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x05,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0xd4, 0x05,
+ 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xb0, 0x05, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xc4, 0x05, 0x00, 0x00, 0xb0, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xe8, 0x05, 0x00, 0x00, 0xd4, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x28, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x10, 0x06,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00,
+ 0x28, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x06,
+ 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x64, 0x06, 0x00, 0x00, 0x50, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x88, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x9c, 0x06, 0x00, 0x00, 0x88, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xec, 0x06, 0x00, 0x00, 0x10, 0x07, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0xec, 0x06,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0xc0, 0x08, 0x00, 0x00,
+ 0xf8, 0x08, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x20, 0x07,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x6c, 0x07, 0x00, 0x00,
+ 0x90, 0x07, 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x48, 0x07,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x07, 0x00, 0x00,
+ 0x6c, 0x07, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0xdc, 0x07,
+ 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xcc, 0x07, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xf0, 0x07, 0x00, 0x00, 0xdc, 0x07, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x2c, 0x08, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x08, 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x50, 0x08, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x74, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x08, 0x00, 0x00, 0xb0, 0x08, 0x00, 0x00, 0x74, 0x08,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x08, 0x00, 0x00,
+ 0x8c, 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x08,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
+ 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd4, 0x08, 0x00, 0x00, 0xc0, 0x08,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x08, 0x00, 0x00,
+ 0xd4, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x09, 0x00, 0x00,
+ 0xf8, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00,
+ 0x6c, 0x09, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x5c, 0x09, 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x6c, 0x09, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xbc, 0x09, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe0, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf4, 0x09, 0x00, 0x00, 0xe0, 0x09,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x18, 0x0a, 0x00, 0x00, 0x04, 0x0a,
+ 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00,
+ 0x18, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x40, 0x0a,
+ 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x54, 0x0a, 0x00, 0x00, 0x40, 0x0a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00,
+ 0x8c, 0x0a, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0xb0, 0x0d,
+ 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x05, 0x00, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0xd4, 0x0a, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x80, 0x0b,
+ 0x00, 0x00, 0xa4, 0x0b, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xc4, 0x0a, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x0b, 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x0c, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x34, 0x0b, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x70, 0x0b, 0x00, 0x00,
+ 0x34, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x60, 0x0b,
+ 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x34, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x94, 0x0b, 0x00, 0x00,
+ 0x80, 0x0b, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
+ 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00,
+ 0xa4, 0x0b, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x0b,
+ 0x00, 0x00, 0xf4, 0x0b, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00, 0x00, 0xd0, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0c, 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x50, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x78, 0x0c, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0xb4, 0x0c, 0x00, 0x00,
+ 0x78, 0x0c, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x0c,
+ 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x78, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0c,
+ 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00,
+ 0x3c, 0x0d, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00, 0x2c, 0x0d, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x0d, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x54, 0x0d, 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x3c, 0x0d,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00,
+ 0x54, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x7c, 0x0d,
+ 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x3c, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x0d,
+ 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x64, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xc8, 0x0d,
+ 0x00, 0x00, 0xec, 0x0d, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xdc, 0x0d, 0x00, 0x00, 0xc8, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x64, 0x0e, 0x00, 0x00,
+ 0x28, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x54, 0x0e,
+ 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x28, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x0d,
+ 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00,
+ 0xc4, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xb4, 0x0e, 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xd8, 0x0e, 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_ENGLISH__
#if defined(__PV_LANGUAGE_SPANISH__)
// wake-word = hola computadora
static const uint8_t KEYWORD_ARRAY[] = {
- 0xd4, 0xbc, 0x3c, 0xc6, 0x53, 0xe3, 0xa4, 0xc2, 0x2d, 0xa6, 0x98, 0x5b, 0xeb, 0x97, 0xc3, 0xff, 0xec, 0x5f,
- 0xec, 0x07, 0x3a, 0x72, 0x68, 0x85, 0x7d, 0x38, 0xa6, 0x67, 0x39, 0x16, 0x8d, 0xf4, 0x30, 0x8e, 0x79, 0x02,
- 0x5b, 0x65, 0xbc, 0xb7, 0x93, 0x5d, 0x90, 0x8c, 0x4c, 0x91, 0xac, 0x51, 0x10, 0xc5, 0xf7, 0x5a, 0xd6, 0x69,
- 0x1f, 0x8d, 0xb1, 0x2a, 0xbc, 0xfc, 0x71, 0xb7, 0x1e, 0x94, 0xab, 0x26, 0xb7, 0x97, 0x5c, 0x70, 0x49, 0x1e,
- 0x0f, 0x33, 0x36, 0xa0, 0xfb, 0x84, 0xbb, 0x56, 0x3d, 0xb7, 0x22, 0xc9, 0x6b, 0x1b, 0xf8, 0x33, 0x51, 0xd9,
- 0x83, 0xd7, 0x2d, 0x44, 0x2f, 0x89, 0x07, 0x1f, 0x41, 0x75, 0xb1, 0xbc, 0xde, 0x21, 0xa1, 0xac, 0x8b, 0x40,
- 0xf5, 0x56, 0xa0, 0xe7, 0xab, 0x98, 0xf3, 0x03, 0x98, 0x27, 0x10, 0xd3, 0xb2, 0x6f, 0xa0, 0x27, 0x5c, 0x3e,
- 0xa8, 0x08, 0x79, 0xea, 0xf4, 0xce, 0x73, 0xf8, 0x59, 0xc9, 0xf5, 0xf3, 0xf0, 0x60, 0x2d, 0xcc, 0xc1, 0x37,
- 0x12, 0x97, 0x64, 0x0d, 0xa8, 0xf3, 0x7b, 0xcb, 0x76, 0xf0, 0x9e, 0x86, 0xe5, 0x06, 0x15, 0xd7, 0x2a, 0xeb,
- 0xd4, 0x0a, 0xd7, 0x29, 0xde, 0x06, 0x55, 0xdc, 0x7d, 0xd0, 0xd4, 0xc1, 0x44, 0x25, 0x53, 0x30, 0xd7, 0x17,
- 0xe9, 0x13, 0x2a, 0x52, 0x66, 0x6c, 0x1a, 0x8a, 0x66, 0xfd, 0xa9, 0x6d, 0x49, 0x08, 0xf0, 0x10, 0x49, 0x76,
- 0xc5, 0xd8, 0xce, 0xa9, 0x3c, 0xe5, 0xd6, 0xa5, 0xd3, 0xc3, 0x0d, 0x65, 0xa2, 0x3a, 0x1c, 0xf2, 0x37, 0xa1,
- 0xab, 0x2d, 0x26, 0x31, 0xb0, 0x4d, 0xe3, 0xd1, 0xd0, 0xfd, 0x88, 0xf5, 0x7e, 0x1a, 0xd7, 0x15, 0xf3, 0x3b,
- 0xb7, 0xdd, 0xb8, 0x4c, 0x86, 0x99, 0xf0, 0xf3, 0xb1, 0x26, 0x9d, 0x24, 0xf8, 0xd8, 0xdb, 0x4b, 0x5b, 0xc3,
- 0x91, 0x05, 0x27, 0xb3, 0x21, 0x48, 0x9c, 0x8a, 0x1b, 0x95, 0xce, 0xee, 0x7b, 0x54, 0xa2, 0xc4, 0xe8, 0x44,
- 0xe9, 0x1f, 0x1a, 0xa9, 0xff, 0x8e, 0xd1, 0x06, 0xf4, 0xab, 0x8f, 0x4f, 0x6a, 0xec, 0x47, 0xf5, 0x65, 0x7f,
- 0x19, 0x98, 0x6b, 0xbf, 0xfe, 0x51, 0x0b, 0x04, 0x38, 0xb7, 0x76, 0x63, 0x87, 0xb0, 0x90, 0x53, 0x7b, 0x49,
- 0x37, 0x25, 0xe1, 0x2a, 0x67, 0x4b, 0xcd, 0x5d, 0x71, 0x99, 0x1e, 0x50, 0xdf, 0xc9, 0x76, 0xd2, 0x84, 0xda,
- 0x0c, 0xed, 0x88, 0x1d, 0x10, 0xf3, 0x10, 0xcd, 0xfa, 0x73, 0x8d, 0x0c, 0xaa, 0x30, 0xc0, 0xd5, 0x10, 0xb6,
- 0x9d, 0xdb, 0x32, 0x41, 0x6d, 0x71, 0x9e, 0x70, 0xbb, 0xe4, 0x61, 0x87, 0xb0, 0x3a, 0xa5, 0x8b, 0x61, 0xe4,
- 0x18, 0x9a, 0x14, 0x12, 0x77, 0x52, 0x05, 0xbd, 0xd1, 0x0a, 0x75, 0x52, 0x7b, 0xe3, 0xf8, 0xca, 0xee, 0xe0,
- 0xcc, 0xb4, 0xe3, 0x17, 0xec, 0x4b, 0x35, 0x0b, 0x1b, 0x2e, 0x35, 0x83, 0x72, 0x48, 0x8f, 0x7e, 0x2a, 0x2a,
- 0x72, 0x19, 0x71, 0x1b, 0x42, 0x4e, 0x05, 0x31, 0x5d, 0x04, 0xd4, 0xb8, 0xb0, 0x09, 0xd9, 0x6d, 0x6a, 0x85,
- 0xa0, 0xfc, 0xe8, 0x4a, 0x96, 0x4d, 0xed, 0x7e, 0xd7, 0x43, 0x61, 0x17, 0x92, 0x80, 0xa1, 0x94, 0x5b, 0x5b,
- 0xd1, 0x21, 0xe2, 0xa8, 0x7e, 0xd8, 0x55, 0x74, 0x31, 0x65, 0xc8, 0xab, 0x11, 0x43, 0x33, 0xdf, 0xa2, 0x9d,
- 0x3d, 0x39, 0xdf, 0x22, 0x15, 0xac, 0x8a, 0x4b, 0x15, 0xcc, 0xa0, 0x24, 0x94, 0x6d, 0x41, 0x68, 0x18, 0xe2,
- 0xc9, 0x68, 0x13, 0xf3, 0xfa, 0x53, 0xc3, 0xe9, 0xa4, 0x98, 0x45, 0x68, 0x77, 0x7f, 0x60, 0x4a, 0x81, 0x98,
- 0x8b, 0xae, 0xe2, 0x86, 0x60, 0x9d, 0xce, 0x79, 0x9e, 0x1c, 0xc4, 0xa4, 0xc3, 0x7f, 0x7f, 0x10, 0x1b, 0x0a,
- 0x30, 0x6b, 0x6c, 0x50, 0x9a, 0x12, 0xb2, 0x46, 0x75, 0xc5, 0xb3, 0xb8, 0x7b, 0x89, 0x6e, 0xe4, 0xf5, 0xa7,
- 0x52, 0x39, 0x25, 0x48, 0xc2, 0xea, 0x6a, 0xa8, 0x25, 0xe2, 0xe8, 0xbd, 0xf1, 0xe5, 0x1c, 0x4e, 0xae, 0x5f,
- 0xac, 0x26, 0xe9, 0x95, 0xd3, 0x58, 0x3f, 0x8a, 0x67, 0x62, 0x85, 0xa6, 0xb0, 0x1d, 0xa9, 0xe7, 0x31, 0xf5,
- 0x5d, 0x31, 0x25, 0x88, 0x40, 0x7f, 0x83, 0xa6, 0x56, 0x6f, 0xbd, 0x2d, 0x87, 0xd9, 0x97, 0x81, 0x43, 0xc0,
- 0xa0, 0xa6, 0x6b, 0xfe, 0xae, 0x98, 0x7a, 0xc9, 0x8a, 0x00, 0x51, 0xff, 0x8a, 0x47, 0x33, 0x0b, 0x88, 0x95,
- 0xff, 0xa8, 0x11, 0xee, 0x4c, 0x43, 0xf4, 0x89, 0xdf, 0x4d, 0xf5, 0x07, 0xbb, 0x7e, 0x61, 0xaa, 0xcf, 0xd2,
- 0x85, 0xf6, 0xba, 0x20, 0x91, 0xc6, 0x3f, 0x3f, 0xc4, 0xb1, 0xf6, 0xb8, 0x03, 0x54, 0x68, 0x65, 0xef, 0x30,
- 0x59, 0xb3, 0xac, 0xb2, 0xe8, 0x15, 0x43, 0x09, 0x45, 0xc7, 0x07, 0x46, 0x35, 0x17, 0x9a, 0x75, 0x53, 0x5e,
- 0x98, 0x69, 0xf6, 0xf2
+ 0x1c, 0xce, 0x7c, 0xd9, 0xc2, 0x23, 0x16, 0x70, 0x85, 0xf7, 0x93, 0x1a, 0x59, 0xd0, 0x62, 0xce, 0xac, 0x16,
+ 0xd1, 0x3e, 0x05, 0x02, 0x6d, 0x26, 0x65, 0x81, 0xc9, 0xd5, 0xae, 0x93, 0x30, 0x29, 0x02, 0x0a, 0x0d, 0xc3,
+ 0xc9, 0xf7, 0x80, 0xfc, 0x2a, 0x2c, 0x76, 0x68, 0xb3, 0x78, 0x70, 0x64, 0xf6, 0xbb, 0xbe, 0x84, 0xa3, 0xae,
+ 0x4a, 0x9b, 0x96, 0x84, 0x8e, 0x5b, 0xc9, 0x8d, 0x80, 0x6a, 0xd9, 0xf8, 0x20, 0x9a, 0xcf, 0x55, 0x23, 0x33,
+ 0x7c, 0x6a, 0x99, 0x16, 0x0f, 0x04, 0x87, 0x41, 0xef, 0x3f, 0x0f, 0x20, 0xe0, 0xe6, 0xdd, 0x1f, 0x62, 0x0a,
+ 0x0c, 0x13, 0x0d, 0x59, 0x52, 0x1d, 0x6d, 0x59, 0x95, 0xec, 0xf8, 0xe1, 0x08, 0x17, 0x5a, 0xaf, 0x87, 0x6e,
+ 0xdf, 0x24, 0x2f, 0x39, 0x8e, 0xcc, 0x90, 0xbd, 0xd3, 0x3d, 0x7d, 0xba, 0x07, 0xcd, 0xe3, 0x0a, 0xf3, 0x96,
+ 0x31, 0x13, 0x3d, 0xa1, 0x0b, 0x00, 0xb2, 0x54, 0x41, 0xbe, 0x1b, 0x83, 0x5d, 0xbc, 0x44, 0x7c, 0x36, 0x69,
+ 0xd1, 0x87, 0x24, 0xf8, 0x5c, 0x72, 0xe8, 0x65, 0x65, 0x49, 0xae, 0xee, 0xe2, 0xf9, 0x13, 0x40, 0x18, 0x4a,
+ 0xaf, 0x4e, 0xf8, 0xe4, 0x65, 0xe1, 0x4e, 0x5a, 0xb9, 0xcc, 0x32, 0xab, 0x37, 0xfe, 0x82, 0x54, 0xec, 0x7c,
+ 0xb7, 0x1d, 0x09, 0x66, 0x59, 0xd5, 0x47, 0x3f, 0x71, 0xa2, 0xb8, 0x74, 0xe6, 0x41, 0x8b, 0x63, 0x0e, 0xcc,
+ 0xd7, 0xc8, 0x56, 0xa5, 0xe1, 0x06, 0x81, 0x95, 0x45, 0x5c, 0x20, 0x82, 0xdb, 0xe2, 0x5a, 0xba, 0xc6, 0x16,
+ 0x4f, 0x08, 0x51, 0xb5, 0xcd, 0x0c, 0x2f, 0x7c, 0x96, 0xff, 0xfc, 0x5e, 0x21, 0xc0, 0x14, 0xf0, 0x50, 0xa6,
+ 0x7a, 0x09, 0xbb, 0xcf, 0x4b, 0x14, 0x39, 0xc0, 0x03, 0xd3, 0x2c, 0x6a, 0x45, 0xfe, 0xf8, 0xea, 0x77, 0xd4,
+ 0x2b, 0xfb, 0x24, 0x58, 0xd1, 0x73, 0x93, 0x13, 0x3a, 0x32, 0x16, 0x3a, 0xb5, 0x64, 0x97, 0x6f, 0xc7, 0xa6,
+ 0x71, 0xee, 0x47, 0x5a, 0xeb, 0x66, 0xad, 0xb3, 0xf5, 0x1f, 0x0c, 0x14, 0x3a, 0xfc, 0xb4, 0x53, 0xc2, 0xaa,
+ 0xf6, 0x77, 0x1d, 0x0c, 0x6a, 0x6c, 0x78, 0xb8, 0xb5, 0x7d, 0xd2, 0x8b, 0x97, 0x04, 0xbe, 0x0c, 0xa9, 0xa8,
+ 0x6c, 0x48, 0x6b, 0x92, 0x14, 0x44, 0x3c, 0x6e, 0x64, 0x95, 0x0f, 0xf6, 0x0f, 0x5d, 0x74, 0xf8, 0xa6, 0xc4,
+ 0xf4, 0x26, 0x04, 0x38, 0xb5, 0x79, 0x4a, 0xe5, 0x47, 0xb2, 0xc6, 0x5a, 0x82, 0xd6, 0xfd, 0x19, 0xfd, 0xd2,
+ 0xef, 0x7b, 0x29, 0xc1, 0x2c, 0xc7, 0x03, 0xff, 0xa1, 0xfd, 0xf5, 0x91, 0x87, 0x4f, 0x8a, 0x68, 0x40, 0xdd,
+ 0xb4, 0x6d, 0x64, 0xb4, 0x8b, 0x0c, 0x87, 0x54, 0x68, 0x1b, 0xc3, 0x12, 0x52, 0xb9, 0x1f, 0x0d, 0x0b, 0x4b,
+ 0x5a, 0x88, 0x79, 0x6e, 0xdc, 0x1d, 0x45, 0x37, 0xca, 0x44, 0x18, 0xb6, 0x9f, 0x2e, 0xdc, 0x24, 0xcc, 0xb2,
+ 0x20, 0x66, 0x4e, 0x88, 0x4f, 0x3c, 0x1e, 0x52, 0x02, 0x30, 0x58, 0xb7, 0x7b, 0xaa, 0xf4, 0x95, 0xee, 0xbe,
+ 0xbc, 0xbf, 0x2a, 0x8b, 0xe8, 0xff, 0x14, 0xb5, 0xad, 0xc2, 0xfc, 0x1d, 0xef, 0xc8, 0x56, 0x4f, 0xb5, 0xa5,
+ 0x6e, 0xa4, 0x47, 0x27, 0xaa, 0x12, 0xf6, 0x8d, 0x85, 0xc9, 0xb0, 0x16, 0xbb, 0xed, 0x63, 0x64, 0xa3, 0x4d,
+ 0x71, 0x03, 0x2e, 0xa8, 0xf3, 0xdf, 0x1e, 0x03, 0x45, 0x96, 0xae, 0x71, 0xad, 0x0e, 0xf4, 0x1a, 0xec, 0x59,
+ 0xc5, 0x35, 0x7f, 0x4f, 0xbb, 0x30, 0x36, 0xff, 0x81, 0x6f, 0x17, 0xe6, 0xba, 0x1a, 0xb6, 0xb0, 0xfa, 0x52,
+ 0x45, 0xec, 0xd8, 0x8e, 0x2e, 0xef, 0x4c, 0x56, 0xba, 0x3d, 0xa8, 0x84, 0x57, 0xa1, 0x81, 0x08, 0xe0, 0x80,
+ 0x75, 0x01, 0xf3, 0x09, 0x93, 0x14, 0xd4, 0x19, 0xc4, 0xe9, 0x1c, 0xf8, 0x0e, 0xa9, 0x43, 0x02, 0xa3, 0x4d,
+ 0x21, 0xa0, 0x37, 0x35, 0x76, 0x49, 0xb5, 0xf0, 0x2b, 0x7d, 0xd8, 0x65, 0xee, 0x6a, 0xb6, 0x0a, 0x64, 0xe3,
+ 0x16, 0x1c, 0xfa, 0x49, 0x29, 0x6f, 0x4a, 0x0f, 0xab, 0x2c, 0xbc, 0x33, 0x95, 0x6d, 0xcf, 0xc7, 0x0a, 0x7c,
+ 0x4a, 0x89, 0xbc, 0x2d, 0x53, 0x06, 0x84, 0xac, 0x7a, 0x29, 0x8f, 0xea, 0xed, 0x17, 0xbb, 0x11, 0xc3, 0x73,
+ 0x68, 0x4f, 0x42, 0xe7, 0x3a, 0xf6, 0x73, 0x16, 0x00, 0xa8, 0xb9, 0x03, 0x65, 0xb1, 0xb6, 0x37, 0x22, 0x0c,
+ 0xff, 0x54, 0x8a, 0xe5, 0xf4, 0xd0, 0xe9, 0xa9, 0x85, 0x4d, 0x17, 0x6c, 0x21, 0xad, 0x04, 0x72, 0x34, 0x11,
+ 0xfc, 0x35, 0x04, 0xac, 0x46, 0xc4, 0xa0, 0xe9, 0x9e, 0x1d, 0x65, 0x6f, 0xf5, 0xcb, 0xd1, 0xe3, 0x28, 0xcf,
+ 0x5b, 0xc3, 0x9f, 0xa8, 0x7a, 0x59, 0x94, 0xb6, 0xca, 0xbd, 0x32, 0x79, 0x72, 0x41, 0x57, 0xfb, 0x03, 0x21,
+ 0x4d, 0x2a, 0x6c, 0x7c
};
// context = iluminación_inteligente
@@ -986,47 +1272,144 @@ static const uint8_t CONTEXT_ARRAY[] = {
#endif // __PV_LANGUAGE_SPANISH__
+#if defined(__PV_LANGUAGE_FARSI__)
+
+// wake-word = سلام رایانه
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x59, 0x31, 0x28, 0x1e, 0xd6, 0xd3, 0x96, 0x5b, 0xcc, 0x53, 0x9b, 0x26, 0xf2, 0xdd, 0x74, 0xe3, 0xc0, 0x07,
+ 0x05, 0xb1, 0x68, 0x0c, 0x1e, 0x4c, 0x73, 0xac, 0x70, 0xe6, 0x4c, 0x78, 0x98, 0xcb, 0x8e, 0x6e, 0xe2, 0x25,
+ 0x3c, 0xfa, 0xf6, 0x01, 0x0d, 0x8a, 0x82, 0xdd, 0xa8, 0xed, 0x0f, 0x61, 0x9b, 0x18, 0x31, 0xa5, 0x64, 0x52,
+ 0x81, 0xf6, 0xce, 0xc6, 0x7b, 0xf2, 0xb6, 0x49, 0x4f, 0x59, 0x12, 0x86, 0x72, 0xe7, 0xd8, 0x6a, 0xab, 0x54,
+ 0x67, 0x47, 0xbf, 0x29, 0xa0, 0x0e, 0x93, 0x52, 0x9d, 0x76, 0x12, 0x26, 0x1a, 0xb7, 0x36, 0x62, 0xd4, 0xc8,
+ 0x4f, 0x27, 0x62, 0x2f, 0x6e, 0x4e, 0xf8, 0xf6, 0x44, 0x7c, 0x19, 0x36, 0xb0, 0x62, 0x18, 0x04, 0x30, 0xd4,
+ 0x6e, 0x3f, 0xa9, 0x4b, 0xcd, 0xaa, 0x71, 0x23, 0xef, 0xcb, 0x2a, 0x8c, 0x56, 0x6a, 0x5e, 0x18, 0x1e, 0x0a,
+ 0xb1, 0xed, 0x1c, 0x5a, 0xeb, 0x52, 0x83, 0xd6, 0xb2, 0x8c, 0x48, 0xeb, 0x5f, 0x3f, 0xfb, 0xdf, 0x37, 0x80,
+ 0xf5, 0xb0, 0xd4, 0x5b, 0x50, 0x2d, 0x68, 0x8d, 0x84, 0x25, 0xf8, 0x93, 0xa3, 0x52, 0xec, 0x3a, 0x6d, 0x36,
+ 0x2d, 0xa4, 0xb0, 0x25, 0xf2, 0x08, 0xb3, 0x23, 0x79, 0x36, 0x52, 0x04, 0x1b, 0x1d, 0x95, 0x90, 0xb0, 0x6c,
+ 0xdc, 0x5b, 0xe5, 0xb4, 0xd4, 0x42, 0x69, 0x6b, 0xda, 0xad, 0x1f, 0xca, 0xe5, 0xa0, 0xee, 0x90, 0xdb, 0xdf,
+ 0x26, 0xd6, 0x94, 0xcc, 0x13, 0xe5, 0x07, 0xfc, 0x94, 0x34, 0x7e, 0x38, 0x52, 0x67, 0xe6, 0x2a, 0x39, 0xc0,
+ 0xd3, 0x72, 0xc5, 0x2b, 0x0c, 0x6f, 0xcf, 0x57, 0x7a, 0xd3, 0x84, 0xa2, 0x17, 0xf8, 0xea, 0xf0, 0x96, 0xce,
+ 0xa4, 0xdf, 0xa9, 0xe8, 0xa9, 0x2f, 0xea, 0x20, 0xa7, 0xc0, 0xba, 0xee, 0xb0, 0x2b, 0x42, 0xf8, 0x15, 0x76,
+ 0x55, 0x4f, 0x99, 0xb7, 0x01, 0x78, 0xc8, 0xaf, 0x69, 0xa3, 0xad, 0x13, 0xf7, 0x6e, 0x1c, 0xa7, 0xe8, 0x13,
+ 0x3c, 0x3d, 0x1e, 0xd8, 0x8b, 0x8c, 0xc5, 0x34, 0x7c, 0x11, 0x33, 0xae, 0x67, 0x14, 0x64, 0x68, 0x1f, 0xf8,
+ 0x95, 0x66, 0x4a, 0x47, 0xde, 0x58, 0x3a, 0x48, 0x09, 0xad, 0x43, 0xe1, 0x59, 0x71, 0xf6, 0xf1, 0x87, 0xc4,
+ 0x45, 0xd2, 0xf7, 0x62, 0x0c, 0x33, 0xda, 0xa2, 0x77, 0x20, 0x15, 0x45, 0x58, 0x0a, 0xb0, 0x4c, 0x33, 0xe4,
+ 0x33, 0x89, 0xb7, 0x00, 0xa7, 0x94, 0x82, 0xd2, 0x47, 0xae, 0x9b, 0x60, 0xbd, 0x4f, 0xe3, 0xca, 0x7e, 0xc0,
+ 0xc4, 0xcb, 0x8a, 0x9d, 0x8c, 0x15, 0x81, 0x87, 0xd7, 0x4e, 0xec, 0x00, 0x72, 0xe4, 0x1c, 0xd0, 0xb3, 0x41,
+ 0xd2, 0x40, 0x33, 0xca, 0xbc, 0xbc, 0x80, 0x4f, 0x64, 0x3d, 0x32, 0x0f, 0x86, 0x4b, 0x3f, 0x74, 0x17, 0x4b,
+ 0x35, 0xe1, 0x8a, 0x23, 0xc6, 0xcf, 0xca, 0x51, 0x0a, 0xed, 0xdf, 0x4b, 0x3b, 0x5b, 0xa3, 0xfb, 0x98, 0x0e,
+ 0xe4, 0x27, 0x69, 0xfa, 0x14, 0xb7, 0x06, 0x62, 0x10, 0x93, 0x17, 0x0d, 0x85, 0xeb, 0xf0, 0xd7, 0x8e, 0x33,
+ 0xfb, 0x26, 0x1b, 0x57, 0x94, 0xe4, 0x15, 0x9b, 0x47, 0xae, 0xd1, 0x32, 0x66, 0x92, 0x0b, 0x7d, 0x90, 0xc2,
+ 0x7d, 0xde, 0x5a, 0x12, 0x71, 0x25, 0xa8, 0x77, 0x8f, 0x71, 0xf2, 0x14, 0x4f, 0xf0, 0xaf, 0x5d, 0x6d, 0x71,
+ 0xd8, 0xa4, 0x94, 0xc7, 0x1f, 0x5e, 0x21, 0x3a, 0x59, 0x44, 0x03, 0x92, 0xb0, 0xdc, 0xef, 0x06, 0x00, 0x45,
+ 0x78, 0x0e, 0xc6, 0x87, 0xb0, 0x7b, 0xf3, 0xd4, 0xcb, 0x36, 0xa1, 0xe4, 0xda, 0x24, 0x6c, 0x6b, 0x73, 0xb1,
+ 0xfe, 0x72, 0xf4, 0x9b, 0x86, 0x66, 0xf2, 0x2f, 0x37, 0x0e, 0xd3, 0x35, 0x2a, 0xcd, 0xe1, 0xa5, 0x28, 0xba,
+ 0xcc, 0xb7, 0xd8, 0x13, 0x84, 0x4b, 0xa9, 0xa7, 0x29, 0x46, 0x2e, 0x5c, 0x58, 0x1e, 0x4f, 0x29, 0xda, 0x64,
+ 0x7d, 0xd7, 0x5f, 0x7c, 0x1d, 0xc2, 0x34, 0x53, 0xb8, 0xb8, 0xd9, 0x14, 0xb8, 0x0b, 0x65, 0xa1, 0x2c, 0x89,
+ 0x72, 0x46, 0x29, 0x7a, 0x07, 0xba, 0x7d, 0x53, 0xf3, 0x88, 0x41, 0x15, 0xa2, 0xa4, 0x85, 0xa2, 0x94, 0x5a,
+ 0xd3, 0x94, 0xef, 0xf2, 0x27, 0x9e, 0x04, 0xc8, 0x96, 0x4c, 0x46, 0xfe, 0xf3, 0x8b, 0x55, 0xb6, 0xce, 0xbc,
+ 0xc0, 0x71, 0xba, 0xd8, 0x3c, 0xd9, 0x6c, 0x7c, 0xe2, 0xf3, 0x40, 0x6f, 0xec, 0x09, 0x55, 0x5e, 0x9a, 0xb9,
+ 0xdf, 0x9b, 0x05, 0x21, 0xd0, 0x64, 0x9c, 0x22, 0x2d, 0x10, 0x5d, 0xdc, 0x20, 0x63, 0x1b, 0x2d, 0x9a, 0x89,
+ 0x46, 0xf2, 0x3e, 0xb2, 0xb5, 0x49, 0x96, 0x24, 0x79, 0x89, 0x92, 0xf4, 0xd6, 0xee, 0xf1, 0x8d, 0xb6, 0xb2,
+ 0x60, 0x22, 0xda, 0x15, 0xb7, 0xa4, 0xfc, 0x09, 0xce, 0x3f, 0xe9, 0x47, 0x54, 0xad, 0xfe, 0x0a, 0x5c, 0xe2,
+ 0x77, 0x37, 0xab, 0x94, 0x01, 0x3d, 0x43, 0xac, 0xb6, 0x49, 0x39, 0x7d, 0xa0, 0x9f, 0x6e, 0xde, 0x54, 0x79,
+ 0x6f, 0xdd, 0x25, 0xcc, 0x5e, 0xc9, 0x68, 0xbe, 0x08, 0x73, 0x81, 0xe8, 0x42, 0x61, 0x7d, 0xe7, 0x07, 0xbd,
+ 0x05, 0x2c, 0x36, 0x54, 0xb1, 0x17, 0xd4, 0xe0, 0xe2, 0x8c, 0x3d, 0xe1, 0x58, 0xb1, 0xd4, 0x0f, 0x80, 0x7d,
+ 0x1f, 0x97, 0x00, 0xf6, 0x02, 0xca, 0x1b, 0xbf, 0x83, 0x5d, 0xa0, 0x50, 0x44, 0x88, 0xc8, 0x45, 0x36, 0x89,
+ 0xc0, 0x73, 0x80, 0x9b, 0x62, 0x36, 0x4a, 0xdc, 0xfa, 0x94, 0x13, 0x86, 0x86, 0x64, 0x90, 0xbc, 0xa4, 0xae,
+ 0xa9, 0xbe, 0xd5, 0x73, 0xb5, 0x11, 0x76, 0x46, 0x97, 0x48, 0x2f, 0x3f, 0x3f, 0xc5, 0x6c, 0xba, 0x5b, 0xfa,
+ 0xda, 0x89, 0xa2, 0x94, 0xac, 0xf9, 0x8a, 0x71, 0x0c, 0xbc, 0x5a, 0x0c, 0x05, 0x70, 0x1b, 0xd4, 0xbb, 0x38,
+ 0xc8, 0xf8, 0xa0, 0x72, 0xd7, 0x92, 0xfa, 0x2d, 0x2c, 0x4d, 0x24, 0xf9, 0x96, 0x71, 0x5d, 0x48, 0x20, 0xc2,
+ 0xb8, 0x06, 0x6d, 0x01, 0x3a, 0x2d, 0xc3, 0x92, 0x3a, 0x44, 0x13, 0xdb, 0xc9, 0x42, 0x40, 0x71, 0xa1, 0x43,
+ 0x99, 0x75, 0x86, 0x30, 0xc3, 0x90, 0xfb, 0x95, 0x73, 0x1f, 0x8c, 0xc6, 0x43, 0x83, 0x8d, 0xc4, 0xdf, 0x18,
+ 0x9c, 0xdf, 0x1a, 0xf2, 0x98, 0xd8, 0x6c, 0x4c, 0x5c, 0x27, 0xb5, 0x7c, 0x2a, 0xab, 0xf2, 0xfe, 0x86, 0x1c,
+ 0xbc, 0x23, 0x37, 0x4d, 0xc8, 0x63, 0x10, 0xa5, 0x0f, 0xc9
+};
+
+// context = simple_context_fa
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x66, 0x61, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x60, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x20, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x63, 0x6f, 0x66, 0x66, 0x65,
+ 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd9, 0x82, 0xd9, 0x87, 0xd9, 0x88,
+ 0xd9, 0x87, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa8, 0xd8, 0xb1, 0xd9, 0x88,
+ 0x20, 0xd8, 0xa8, 0xd9, 0x87, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa2, 0xd8, 0xb4, 0xd9, 0xbe, 0xd8, 0xb2, 0xd8, 0xae, 0xd8, 0xa7, 0xd9, 0x86,
+ 0xd9, 0x87, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xda, 0xa9, 0xd9, 0x84, 0xd8,
+ 0xa7, 0xd8, 0xb3, 0x20, 0xd8, 0xaf, 0xd8, 0xb1, 0xd8, 0xb3, 0x22, 0x0a, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x26, 0x00,
+ 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0xd8, 0xa2, 0xd8, 0xb4, 0xd9, 0xbe, 0xd8, 0xb2, 0xd8, 0xae, 0xd8, 0xa7,
+ 0xd9, 0x86, 0xd9, 0x87, 0x00, 0xd8, 0xa8, 0xd8, 0xb1, 0xd9, 0x88, 0x00, 0xd8, 0xa8, 0xd9, 0x87, 0x00, 0xd9,
+ 0x82, 0xd9, 0x87, 0xd9, 0x88, 0xd9, 0x87, 0x00, 0xda, 0xa9, 0xd9, 0x84, 0xd8, 0xa7, 0xd8, 0xb3, 0x20, 0xd8,
+ 0xaf, 0xd8, 0xb1, 0xd8, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1d, 0x00,
+ 0x00, 0x00, 0x1d, 0x1f, 0x12, 0x01, 0x1c, 0x1b, 0x1d, 0x10, 0x06, 0x03, 0x11, 0x14, 0x11, 0x03, 0x07, 0x13,
+ 0x01, 0x09, 0x1a, 0x07, 0x0d, 0x06, 0x0e, 0x1d, 0x15, 0x04, 0x01, 0x14, 0x15, 0x00, 0x00, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x6d, 0x61, 0x6b, 0x65,
+ 0x5f, 0x63, 0x6f, 0x66, 0x66, 0x65, 0x65, 0x00, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_FARSI__
+
#if defined(__PV_LANGUAGE_FRENCH__)
// wake-word = bonjour ordinateur
static const uint8_t KEYWORD_ARRAY[] = {
- 0xef, 0x2e, 0x44, 0x7a, 0x25, 0x80, 0x58, 0x42, 0xb3, 0xf2, 0xde, 0xca, 0x89, 0xbc, 0x54, 0x67, 0xe9, 0xdf,
- 0x14, 0x87, 0x1e, 0xf4, 0x1e, 0xae, 0x47, 0xcc, 0x96, 0x3f, 0x74, 0x9b, 0x8b, 0x27, 0x49, 0x6d, 0x1e, 0x78,
- 0x66, 0x07, 0x83, 0x1f, 0xc3, 0x87, 0x5f, 0xf3, 0x0f, 0x4f, 0x6f, 0x00, 0xf5, 0x3e, 0x65, 0x9b, 0xe7, 0xcb,
- 0xe7, 0x55, 0xfa, 0xc1, 0x50, 0xdb, 0xdf, 0x7d, 0x9e, 0xb0, 0xf0, 0xf4, 0x2a, 0x54, 0x4b, 0xea, 0x37, 0xd2,
- 0xc7, 0x9e, 0x19, 0xd0, 0x14, 0xf0, 0x42, 0x80, 0xfd, 0x56, 0x5d, 0x23, 0x14, 0x3a, 0x43, 0x9a, 0xcf, 0xbb,
- 0x67, 0xc9, 0x2d, 0x2b, 0x58, 0x15, 0xb5, 0x31, 0x9a, 0xd7, 0xff, 0xd6, 0x7e, 0x27, 0x4b, 0x6d, 0x11, 0x57,
- 0x45, 0xaf, 0x54, 0x86, 0x5d, 0x97, 0xf9, 0x9f, 0xc0, 0x26, 0x53, 0xce, 0xed, 0x03, 0x69, 0x04, 0x9a, 0x34,
- 0x95, 0x58, 0x64, 0x84, 0x2d, 0x55, 0x49, 0xee, 0x05, 0xf4, 0xb2, 0x1e, 0x97, 0x08, 0x75, 0xe4, 0xd7, 0xd1,
- 0x81, 0x61, 0x4f, 0x7c, 0x1c, 0x40, 0x94, 0x60, 0x18, 0xfb, 0xf4, 0x2d, 0x68, 0xd0, 0xea, 0x1f, 0x0b, 0x38,
- 0xca, 0xcc, 0x91, 0x86, 0x5f, 0xef, 0xcb, 0x0e, 0x33, 0xd8, 0x3f, 0x1c, 0x13, 0x4f, 0x82, 0x74, 0xb7, 0x4c,
- 0xd6, 0x35, 0x07, 0x7c, 0x8f, 0x0f, 0x6d, 0xb9, 0x05, 0xe4, 0xea, 0xce, 0x91, 0x14, 0xc5, 0xf8, 0xee, 0xee,
- 0x36, 0x65, 0x58, 0xae, 0xdb, 0xd3, 0x05, 0xda, 0x52, 0x86, 0xa8, 0xe4, 0x90, 0xca, 0x99, 0xf8, 0x03, 0x94,
- 0xaa, 0x97, 0x02, 0xcc, 0x12, 0xe2, 0x70, 0x43, 0x06, 0x19, 0x23, 0xd7, 0xc7, 0x2b, 0x5f, 0x46, 0x01, 0x05,
- 0xea, 0x61, 0xf9, 0xc8, 0x9b, 0x1e, 0x18, 0x86, 0x8d, 0x8e, 0xb8, 0xab, 0x1b, 0x5b, 0x16, 0x4e, 0x4d, 0xc1,
- 0x16, 0x8b, 0xad, 0xd5, 0xf9, 0x18, 0x18, 0x7c, 0x77, 0x76, 0x43, 0x17, 0xd0, 0x10, 0x1e, 0x6a, 0xb3, 0x18,
- 0x18, 0xbe, 0x81, 0x5b, 0x31, 0x49, 0xef, 0xb6, 0xec, 0xfb, 0x04, 0xab, 0xa9, 0xb5, 0xb3, 0x66, 0xe2, 0xb4,
- 0x84, 0xc4, 0x64, 0xbd, 0x30, 0x89, 0x02, 0x42, 0x85, 0x25, 0xf7, 0x39, 0xdc, 0x10, 0x71, 0x1b, 0x2e, 0xdc,
- 0xd6, 0x2c, 0xc2, 0x68, 0x8e, 0x2c, 0xd0, 0x57, 0xc1, 0xdd, 0xc2, 0xb6, 0x3c, 0x71, 0xac, 0x64, 0x71, 0x62,
- 0x53, 0x51, 0x72, 0xb6, 0x04, 0x5a, 0x75, 0xe8, 0xb0, 0x15, 0x86, 0x17, 0x10, 0xaf, 0x95, 0x92, 0x43, 0xd4,
- 0xf3, 0x31, 0x4d, 0x8d, 0x8c, 0x13, 0xc8, 0xee, 0xac, 0xc2, 0x80, 0x7e, 0x05, 0xb2, 0x7a, 0x97, 0xd5, 0xe1,
- 0xf2, 0x52, 0x42, 0x3a, 0x80, 0x0d, 0x6c, 0x5b, 0x45, 0xb4, 0x8b, 0x4d, 0x53, 0x8d, 0xc1, 0x28, 0x85, 0xcb,
- 0xac, 0x71, 0xf4, 0x8d, 0x13, 0x34, 0x80, 0x6d, 0x1a, 0x81, 0x42, 0xe5, 0x30, 0x99, 0x55, 0x8d, 0x37, 0x37,
- 0xe7, 0x40, 0xc7, 0x14, 0x6a, 0x3d, 0xd6, 0x67, 0x3f, 0x9e, 0x51, 0xf3, 0xa1, 0x71, 0x12, 0x68, 0xba, 0xd7,
- 0x52, 0x3e, 0x41, 0x63, 0xee, 0x67, 0x85, 0xf5, 0xdf, 0x00, 0xe5, 0xa5, 0xe8, 0xe7, 0x58, 0x25, 0x65, 0x3d,
- 0xe3, 0x2e, 0xea, 0x9f, 0x19, 0x63, 0x8e, 0xd1, 0x71, 0x6c, 0x2f, 0x10, 0xe4, 0x8c, 0x5d, 0x4a, 0x3b, 0x92,
- 0x40, 0x3a, 0x9b, 0x55, 0x12, 0x2a, 0xc4, 0xff, 0x64, 0x52, 0x42, 0xab, 0xc5, 0x66, 0x8d, 0x5c, 0x71, 0x1b,
- 0x50, 0x1d, 0x8f, 0x8f, 0x8b, 0xa4, 0x31, 0x91, 0x9d, 0x23, 0xaf, 0x22, 0xa6, 0x50, 0x86, 0x0c, 0xab, 0x4c,
- 0x66, 0x3e, 0x65, 0x2b, 0xf7, 0xe3, 0xd2, 0x63, 0x72, 0x99, 0x60, 0x31, 0x31, 0xa5, 0x3c, 0x13, 0x4c, 0xa4,
- 0x8b, 0xc6, 0x10, 0x22, 0xef, 0x59, 0x8d, 0xb6, 0x34, 0x61, 0x1a, 0x06, 0x85, 0x52, 0xd2, 0xe5, 0x13, 0x23,
- 0x7a, 0x29, 0x26, 0x49, 0xfe, 0x62, 0xde, 0x06, 0xab, 0x53, 0x7b, 0xaf, 0xaf, 0x4a, 0x8d, 0x97, 0xd6, 0x57,
- 0x81, 0xbb, 0xd0, 0x8b, 0x43, 0x6e, 0xc3, 0x20, 0x4b, 0xe7, 0xec, 0x01, 0x1c, 0x47, 0x09, 0x7c, 0x01, 0xa7,
- 0x75, 0x8c, 0xc3, 0x91, 0x01, 0x10, 0xd9, 0x33, 0x61, 0xc7, 0x48, 0xad, 0xff, 0xf8, 0x82, 0x6a, 0xba, 0x34,
- 0xc6, 0x50, 0xf6, 0x3a, 0xa9, 0xc8, 0x6a, 0x82, 0x9a, 0xe0, 0x7f, 0xfb, 0xad, 0xc1, 0x84, 0x1f, 0x69, 0x1f,
- 0x96, 0xb2, 0xdc, 0x4b, 0xc8, 0xb3, 0x67, 0xb1, 0x42, 0x00, 0x71, 0xf4, 0xd6, 0x79, 0xfa, 0xce, 0x7f, 0xc2,
- 0xab, 0x90, 0x24, 0x89, 0x12, 0x13, 0x1d, 0x54, 0x7e, 0x4a, 0x4b, 0x09, 0xaa, 0xe0, 0x25, 0x9a, 0x98, 0x8f,
- 0x07, 0xc3, 0x4d, 0xaa, 0x08, 0x60, 0x59, 0x2d, 0xda, 0xed, 0x99, 0x3b, 0x45, 0xa1, 0x90, 0xe3, 0xd7, 0x6a,
- 0x05, 0xda, 0x92, 0x9b, 0xc3, 0x54, 0xed, 0x04, 0xbb, 0x36, 0xb1, 0x7f
+ 0xbb, 0x5c, 0xb1, 0xe7, 0xbd, 0xc8, 0x3c, 0xc7, 0xa4, 0xbe, 0x37, 0x23, 0xf5, 0xcc, 0xa2, 0x7a, 0x6f, 0x00,
+ 0x62, 0x72, 0x34, 0x7b, 0x73, 0xa2, 0xeb, 0xe8, 0x6c, 0x9d, 0x82, 0xfb, 0x48, 0x63, 0x03, 0xec, 0x3f, 0x7d,
+ 0xf0, 0xae, 0xe5, 0xb1, 0x47, 0x58, 0x8e, 0xf3, 0xbf, 0x7b, 0xd0, 0x77, 0x12, 0xd1, 0xc6, 0x54, 0xda, 0xc3,
+ 0x20, 0xca, 0x7b, 0x20, 0x30, 0xf1, 0x47, 0xe1, 0xdb, 0xca, 0x70, 0x0c, 0x86, 0x79, 0xe5, 0x02, 0x63, 0x7b,
+ 0x5f, 0x48, 0x2e, 0xb1, 0x44, 0x1d, 0xb6, 0xd3, 0x58, 0x2b, 0x7b, 0x50, 0xc8, 0x8a, 0xd4, 0xa0, 0x20, 0x7b,
+ 0x01, 0x0a, 0x84, 0x18, 0xb4, 0x3a, 0xe7, 0x49, 0x86, 0x70, 0xf3, 0xfc, 0x21, 0xc6, 0xc2, 0xeb, 0x65, 0x26,
+ 0x70, 0xa1, 0x7d, 0x7a, 0xeb, 0x26, 0xc2, 0x72, 0x20, 0xdd, 0x32, 0x6d, 0x5b, 0x1e, 0x9f, 0x97, 0x87, 0x7e,
+ 0x0b, 0xf3, 0x2c, 0x50, 0x2b, 0x95, 0x28, 0x62, 0xcd, 0x0f, 0xb5, 0xb5, 0x40, 0x26, 0x22, 0x48, 0xf7, 0x23,
+ 0x8f, 0x95, 0x86, 0xcc, 0xac, 0xcb, 0x80, 0xbb, 0xd8, 0xe2, 0xb4, 0xb7, 0x3c, 0x78, 0xe7, 0x87, 0xac, 0x04,
+ 0xca, 0x48, 0x54, 0xdb, 0xdd, 0x79, 0x23, 0xa3, 0x8a, 0xff, 0x87, 0x26, 0x88, 0x7a, 0x74, 0x64, 0xfa, 0xeb,
+ 0xa0, 0x0b, 0x28, 0x73, 0x43, 0xbe, 0xa7, 0x34, 0xbe, 0xab, 0x35, 0x86, 0x72, 0xac, 0xdb, 0xe9, 0x01, 0x10,
+ 0xb0, 0x6e, 0x7e, 0x75, 0x90, 0x5b, 0x6b, 0xaa, 0xfb, 0x16, 0x31, 0x22, 0x25, 0x1b, 0xa3, 0x48, 0x4d, 0x6a,
+ 0x63, 0xa9, 0x5e, 0x57, 0x33, 0xf2, 0x09, 0x26, 0x29, 0xa7, 0x70, 0xed, 0xd5, 0x15, 0x3f, 0x5e, 0x52, 0x07,
+ 0x03, 0x4b, 0x88, 0x30, 0xea, 0x95, 0x9e, 0xc9, 0xfd, 0x16, 0x94, 0xce, 0x6d, 0xb3, 0x3c, 0xb6, 0x9f, 0x92,
+ 0x21, 0x90, 0xc0, 0xdc, 0xcd, 0xb2, 0x48, 0x6b, 0x27, 0xc0, 0x0f, 0x52, 0xfc, 0x81, 0x99, 0xbd, 0x56, 0x82,
+ 0x67, 0xd4, 0x41, 0x14, 0x0e, 0x06, 0x51, 0xa4, 0x67, 0xba, 0xd0, 0x8f, 0x40, 0xd2, 0x6e, 0x7b, 0xb8, 0xb2,
+ 0x70, 0xd8, 0xb0, 0xf3, 0xf6, 0x16, 0x1a, 0xcd, 0x48, 0xa7, 0x6a, 0xec, 0x3b, 0xe2, 0x2d, 0x13, 0x61, 0xc0,
+ 0xaf, 0x16, 0x92, 0xae, 0xea, 0xea, 0x66, 0xb7, 0xa8, 0x60, 0xd1, 0x16, 0x0e, 0xdd, 0xcf, 0x5f, 0x86, 0xeb,
+ 0xcc, 0xff, 0xeb, 0x74, 0x18, 0x52, 0xbe, 0xc5, 0x58, 0x87, 0x01, 0xda, 0x06, 0x01, 0x91, 0x3c, 0x42, 0xc2,
+ 0xd7, 0x67, 0x5e, 0xe0, 0x74, 0xad, 0x06, 0x59, 0x6a, 0x48, 0x11, 0xb9, 0x61, 0xdc, 0xe2, 0xc8, 0x5c, 0x2b,
+ 0x24, 0x54, 0x95, 0xe7, 0x9f, 0x1b, 0x8b, 0x10, 0x44, 0x0a, 0x1d, 0x26, 0x07, 0xf0, 0x5c, 0xa6, 0x9d, 0x63,
+ 0x51, 0x51, 0x29, 0x09, 0xbd, 0x4a, 0xa1, 0xa2, 0x44, 0x8c, 0x9a, 0x90, 0xd6, 0x1b, 0x74, 0x63, 0x3f, 0xc4,
+ 0xb2, 0x4b, 0x88, 0x67, 0x70, 0xd9, 0x73, 0x3e, 0x29, 0x9b, 0x85, 0xd5, 0x9b, 0x1b, 0x58, 0xf8, 0xee, 0x40,
+ 0x03, 0x83, 0x35, 0xa2, 0xd5, 0x0f, 0x28, 0x40, 0x06, 0xbb, 0xfa, 0xf1, 0x20, 0xa9, 0xc5, 0x33, 0xe6, 0x6a,
+ 0x9d, 0x90, 0xc6, 0xf6, 0x78, 0xaf, 0x8f, 0xc6, 0x00, 0x56, 0xab, 0x64, 0x95, 0x8a, 0xe6, 0xf9, 0x65, 0xfe,
+ 0x7b, 0xa7, 0x75, 0x6b, 0x63, 0x39, 0x03, 0x86, 0xf9, 0xf7, 0x59, 0xf1, 0x56, 0x3a, 0xdb, 0xbd, 0xa3, 0x96,
+ 0xd8, 0xba, 0x8a, 0x46, 0x52, 0xbc, 0xd2, 0x98, 0x87, 0xda, 0xaa, 0xf3, 0x07, 0xcc, 0x10, 0x6c, 0xd5, 0xa7,
+ 0x63, 0xab, 0xc2, 0x2a, 0x2f, 0x62, 0x6b, 0x36, 0xcc, 0x38, 0x0d, 0xc6, 0xd8, 0xac, 0xb1, 0x65, 0x5b, 0x5a,
+ 0x10, 0xc5, 0x8e, 0xe9, 0xfb, 0x46, 0xea, 0xe5, 0xf5, 0xf8, 0xd5, 0x04, 0x9f, 0x0b, 0x4d, 0x98, 0x54, 0xdd,
+ 0xed, 0xb1, 0x35, 0x87, 0x1c, 0xd8, 0x99, 0xe4, 0x5e, 0xd2, 0x0d, 0xb3, 0x4c, 0x0f, 0x44, 0xd0, 0x10, 0x07,
+ 0x87, 0x17, 0xb6, 0x22, 0xe9, 0x2a, 0x70, 0x56, 0x07, 0x33, 0x3c, 0x93, 0xdb, 0x13, 0x4c, 0x2f, 0x17, 0xc0,
+ 0xf5, 0xe4, 0xaf, 0x60, 0x36, 0xd7, 0x61, 0xeb, 0x37, 0x64, 0x4d, 0xb3, 0x96, 0xc8, 0x7d, 0x76, 0x64, 0x98,
+ 0xc6, 0xc5, 0x64, 0x73, 0xeb, 0x11, 0x49, 0x57, 0xc9, 0x4e, 0x60, 0xe8, 0x28, 0x1b, 0x5f, 0x01, 0x5e, 0xff,
+ 0xbb, 0x2a, 0xf9, 0x1d, 0xa8, 0x15, 0x84, 0x5b, 0xb2, 0xd9, 0x68, 0x4f, 0x29, 0x95, 0xa5, 0x33, 0x2e, 0x84,
+ 0x43, 0x87, 0x35, 0x9e, 0x09, 0x2f, 0x07, 0x15, 0x4e, 0xcb, 0x5b, 0x0e, 0x1a, 0x4a, 0x5b, 0xcc, 0xe2, 0x98,
+ 0x63, 0x99, 0xa9, 0xe3, 0x42, 0xe4, 0xa6, 0x8e, 0xbf, 0xd4, 0xb9, 0x54, 0xd6, 0x27, 0xed, 0x0a, 0x73, 0xa7,
+ 0x8e, 0x39, 0xc6, 0x87, 0x8c, 0xc8, 0x5e, 0xda, 0xcd, 0xf1, 0x63, 0xaa
};
// context = éclairage_intelligent
@@ -1206,44 +1589,148 @@ static const uint8_t CONTEXT_ARRAY[] = {
#endif // __PV_LANGUAGE_FRENCH__
+#if defined(__PV_LANGUAGE_HINDI__)
+
+// wake-word = नमस्ते कंप्यूटर
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0xdc, 0xad, 0x59, 0xc4, 0xf5, 0xbf, 0xc7, 0x7a, 0xf7, 0xfa, 0x59, 0xd5, 0x41, 0x65, 0x7f, 0x25, 0x80, 0x0a,
+ 0x66, 0x99, 0x32, 0xb5, 0x28, 0xc3, 0x94, 0xa3, 0xcd, 0xdb, 0xd2, 0x80, 0x61, 0xd5, 0x90, 0x12, 0x09, 0x7e,
+ 0x4f, 0xc1, 0x43, 0xbc, 0x8e, 0x9c, 0x6c, 0x14, 0xbb, 0xe3, 0x48, 0x00, 0xfb, 0xc4, 0x98, 0x96, 0xd0, 0x56,
+ 0x0c, 0xc2, 0x4a, 0x64, 0xf5, 0x04, 0x81, 0xd2, 0x28, 0xda, 0x79, 0xba, 0x20, 0x67, 0xf0, 0xf5, 0x40, 0x1f,
+ 0x63, 0xf3, 0x5d, 0x1b, 0x4a, 0xc8, 0x75, 0xbc, 0x37, 0x00, 0xf1, 0x60, 0x6b, 0x58, 0xa8, 0x37, 0x90, 0x2f,
+ 0x37, 0x29, 0xe1, 0x15, 0xb2, 0xa9, 0x1a, 0x99, 0xa1, 0x5d, 0xbb, 0xf9, 0x0a, 0x9d, 0x9c, 0xa9, 0x69, 0x55,
+ 0xd6, 0xc2, 0x16, 0x46, 0xd6, 0x3d, 0x2a, 0xc6, 0xc4, 0xda, 0x0b, 0x7d, 0x1d, 0x3d, 0x4c, 0x70, 0x26, 0x8d,
+ 0xd9, 0x7a, 0xca, 0x94, 0x46, 0x3b, 0x92, 0xd5, 0x78, 0xee, 0xa6, 0xe3, 0x7b, 0xcb, 0x60, 0xe2, 0xd1, 0x89,
+ 0x32, 0x3f, 0x03, 0x89, 0x35, 0x97, 0x62, 0x64, 0xf1, 0xcb, 0xfe, 0x19, 0x6b, 0xf6, 0xba, 0xe4, 0xdf, 0x44,
+ 0xd4, 0xdc, 0x76, 0xd3, 0x72, 0x49, 0x84, 0xea, 0x54, 0x1d, 0x7b, 0x0f, 0xe3, 0x90, 0x75, 0x47, 0xaa, 0xb9,
+ 0xcf, 0xd0, 0xe4, 0xaf, 0xeb, 0xd2, 0xf9, 0xac, 0xef, 0xe6, 0x76, 0x25, 0x5c, 0x55, 0xc2, 0xbe, 0x13, 0xb9,
+ 0xb1, 0x68, 0x69, 0x3f, 0xd3, 0xb3, 0x25, 0xaa, 0x4a, 0xa1, 0xfd, 0xb8, 0x99, 0x08, 0x3a, 0x13, 0x4b, 0x7d,
+ 0xc8, 0x7a, 0xca, 0xee, 0x5d, 0xd5, 0xd9, 0xd1, 0xc0, 0xaf, 0x2c, 0x6c, 0xeb, 0x18, 0xac, 0x95, 0x69, 0x2a,
+ 0xe7, 0x92, 0x8b, 0x8a, 0xcf, 0xf6, 0x16, 0xd1, 0x44, 0x20, 0xc3, 0x76, 0xe2, 0x38, 0x8b, 0x18, 0xae, 0x85,
+ 0xd9, 0xc6, 0x73, 0x7b, 0xe2, 0xfa, 0xf0, 0x36, 0x2a, 0x9c, 0x9c, 0xb2, 0x0f, 0xc0, 0x8f, 0x7b, 0xaf, 0x3b,
+ 0xda, 0x7b, 0x02, 0x3b, 0x62, 0x1a, 0x9c, 0x16, 0xce, 0x2b, 0x36, 0x9c, 0x5e, 0x04, 0x7f, 0xa9, 0xd0, 0x53,
+ 0xc6, 0x7e, 0xd6, 0x9a, 0x17, 0xac, 0xdd, 0x2e, 0x25, 0x93, 0xc1, 0x72, 0x33, 0x80, 0xdf, 0x7d, 0x22, 0x08,
+ 0x90, 0xd3, 0xda, 0x6c, 0x19, 0x30, 0x9d, 0x3e, 0x90, 0xb4, 0x22, 0x0e, 0xbd, 0x91, 0xc6, 0xf4, 0xb1, 0x8d,
+ 0x0f, 0xf5, 0xa4, 0x93, 0x40, 0xfa, 0xbe, 0xbb, 0x11, 0x76, 0xe2, 0x45, 0x8a, 0x69, 0xd2, 0x65, 0xcb, 0x36,
+ 0xca, 0xa9, 0xc3, 0x06, 0x7d, 0xcb, 0x8f, 0x7b, 0x14, 0xf0, 0xef, 0x63, 0xba, 0xe3, 0x60, 0x24, 0x0d, 0x40,
+ 0xcf, 0x13, 0x47, 0x87, 0x6b, 0x7d, 0x66, 0x7a, 0xae, 0xe6, 0xf9, 0xd7, 0x56, 0x91, 0xad, 0xb1, 0x41, 0xb5,
+ 0x3a, 0x8c, 0x97, 0x04, 0x83, 0xe0, 0x30, 0x00, 0xe8, 0xf7, 0xfe, 0x76, 0xef, 0xff, 0x9c, 0x18, 0x50, 0xee,
+ 0xa8, 0x81, 0x9b, 0x7e, 0x68, 0x6c, 0x9a, 0x21, 0xda, 0x1b, 0xc0, 0xc9, 0xad, 0x07, 0x6c, 0x1b, 0x26, 0x38,
+ 0x78, 0xab, 0x19, 0x1f, 0xa6, 0x80, 0x98, 0x4c, 0x26, 0x4f, 0x51, 0xeb, 0xf2, 0xca, 0x29, 0x0d, 0x54, 0x16,
+ 0x4d, 0xb1, 0xf3, 0x43, 0x62, 0x2c, 0xa3, 0xc8, 0x27, 0xd8, 0xc4, 0x22, 0xc7, 0x42, 0xc5, 0x65, 0x17, 0x4d,
+ 0x8f, 0xbd, 0x98, 0x19, 0x77, 0xa0, 0x3f, 0x15, 0x77, 0x36, 0x7b, 0x9a, 0x79, 0xe7, 0x59, 0x7e, 0xe5, 0xa3,
+ 0x59, 0x66, 0x96, 0xf9, 0x7e, 0xf9, 0x4f, 0x8c, 0x02, 0xfe, 0x4b, 0x69, 0x01, 0x5d, 0xa8, 0x05, 0xe0, 0xeb,
+ 0xb4, 0x14, 0xdb, 0x50, 0x17, 0xb4, 0x94, 0xe5, 0xd3, 0x51, 0x79, 0xa6, 0xfd, 0xe5, 0x14, 0xea, 0xa5, 0x7d,
+ 0x10, 0x11, 0xa5, 0x09, 0xec, 0xec, 0x0c, 0xf8, 0x7e, 0x74, 0xd6, 0xe5, 0x58, 0x91, 0xd1, 0x36, 0x26, 0x44,
+ 0xe6, 0x09, 0xf9, 0xce, 0x41, 0x11, 0xb5, 0x0b, 0xee, 0xe0, 0xf6, 0xe9, 0xa7, 0x87, 0x35, 0x19, 0x11, 0x92,
+ 0x57, 0xc0, 0xa5, 0xfb, 0xb2, 0xd1, 0x44, 0x32, 0x22, 0x59, 0x6a, 0x70, 0x1c, 0xa2, 0xf4, 0x2b, 0x6d, 0x98,
+ 0x9f, 0x57, 0xfe, 0xfc, 0x4c, 0x50, 0x97, 0x82, 0xfe, 0xa1, 0xab, 0x16, 0x62, 0x33, 0xe9, 0x38, 0x29, 0x98,
+ 0xa3, 0x46, 0x75, 0xab, 0xd1, 0xda, 0x73, 0x95, 0x93, 0x87, 0xd8, 0x85, 0x3c, 0x7b, 0x9e, 0x76, 0x1c, 0x35,
+ 0xbb, 0x68, 0x92, 0x4d, 0xa6, 0x78, 0x90, 0x92, 0xcd, 0x82, 0xf7, 0x85, 0x30, 0x96, 0x0e, 0xa0, 0xce, 0x1e,
+ 0x8c, 0xf0, 0x0d, 0x34, 0xef, 0x60, 0xc6, 0xe1, 0x50, 0x48, 0x8a, 0x9b, 0xa1, 0xef, 0xc3, 0xb9, 0xc6, 0x2a,
+ 0x8f, 0xb7, 0xa6, 0xc4, 0x31, 0xa0, 0x55, 0xc1, 0xa8, 0x36, 0x7a, 0xe7, 0x4c, 0x2d, 0x56, 0x5d, 0x3e, 0xa3,
+ 0xda, 0x98, 0xb2, 0x40, 0x1f, 0x51, 0x8f, 0xf6, 0xdc, 0xf4, 0x49, 0x13, 0x4b, 0x05, 0x93, 0x8d, 0x4d, 0x29,
+ 0xa7, 0x5b, 0x27, 0x12, 0xcf, 0x24, 0x00, 0xad, 0x04, 0x18, 0x7c, 0x0f, 0x1f, 0x92, 0xfc, 0xed, 0xcc, 0x26,
+ 0x27, 0x6d, 0x2c, 0xa3, 0xc1, 0xde, 0x52, 0xf6, 0x22, 0x49, 0x85, 0x82, 0xfb, 0x89, 0x86, 0x10, 0xa3, 0x0c,
+ 0xb7, 0xd7, 0x0c, 0x30, 0x86, 0xc0, 0xe4, 0xd3, 0xc7, 0xb2, 0x1e, 0x89, 0x2a, 0x63, 0x53, 0x61, 0xe4, 0x37,
+ 0x1b, 0xfe, 0xd8, 0xf9, 0xcf, 0xdd, 0x9a, 0xcc, 0xef, 0x32, 0x98, 0x1a, 0x85, 0x95, 0x6b, 0x26, 0x50, 0x2b,
+ 0x45, 0xbf, 0x8a, 0x28, 0xfa, 0x7c, 0x59, 0x2c, 0x06, 0xf5, 0x7f, 0x0a, 0x75, 0xc7, 0x52, 0xce, 0x1c, 0x04,
+ 0x13, 0x66, 0x8b, 0x4d, 0x5c, 0x0d, 0x20, 0x8a, 0x75, 0x49, 0xf7, 0x9e, 0x2b, 0x47, 0x40, 0x22, 0x58, 0x32,
+ 0x14, 0x90, 0xc7, 0xa3, 0xc1, 0x0d, 0x68, 0x41, 0x63, 0xce, 0xab, 0x91, 0x60, 0x14, 0x02, 0x33, 0x51, 0x98,
+ 0xef, 0x79, 0xa7, 0x58, 0xa8, 0x91, 0x5c, 0xcd, 0x8d, 0xf1, 0x57, 0x4c, 0xa3, 0x45, 0x9b, 0x3c, 0x95, 0x58,
+ 0x9f, 0x58, 0xb2, 0x43, 0x74, 0xc0, 0x0f, 0x4e, 0x68, 0xa5, 0xd3, 0xbb, 0xa9, 0x47
+};
+
+// context = simple_context_hi
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x68, 0x69, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0,
+ 0xa4, 0xbe, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70,
+ 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4,
+ 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x20, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95, 0x20,
+ 0x24, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x20, 0xe0, 0xa4, 0xa6,
+ 0xe0, 0xa5, 0x8b, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0,
+ 0xa4, 0xb8, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0,
+ 0xa4, 0xac, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5,
+ 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87,
+ 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
+ 0x3b, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95,
+ 0x00, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xa6, 0xe0,
+ 0xa5, 0x8b, 0x00, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0, 0xa4, 0xbe, 0xe0, 0xa4, 0xb8,
+ 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x00, 0xe0,
+ 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0xe0, 0xa4, 0xb8,
+ 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0, 0xa4, 0xac,
+ 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x0e, 0x17, 0x17, 0x0e, 0x19, 0x05, 0x0a, 0x1d, 0x1e, 0x15, 0x05, 0x24, 0x05, 0x1a,
+ 0x2a, 0x16, 0x0e, 0x21, 0x04, 0x24, 0x07, 0x04, 0x21, 0x14, 0x24, 0x28, 0x21, 0x03, 0x06, 0x0e, 0x21, 0x14,
+ 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
+ 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_HINDI__
+
#if defined(__PV_LANGUAGE_ITALIAN__)
// wake-word = ciao computer
static const uint8_t KEYWORD_ARRAY[] = {
- 0x74, 0x54, 0x95, 0x9b, 0x89, 0x7b, 0x24, 0xe3, 0xb1, 0xa6, 0xf4, 0x2e, 0x56, 0x94, 0xbd, 0xc5, 0x87, 0x3c,
- 0x84, 0x91, 0xf9, 0x1c, 0xe1, 0x99, 0x0e, 0xc1, 0x54, 0x31, 0x3f, 0x78, 0xd1, 0x30, 0x33, 0x56, 0x05, 0xaf,
- 0x85, 0x9e, 0x5a, 0xe7, 0xd0, 0x88, 0x2e, 0xac, 0x78, 0xb3, 0x9f, 0x94, 0x44, 0xe9, 0x2f, 0x0c, 0x6e, 0x61,
- 0xb7, 0x24, 0xcd, 0xdb, 0x4e, 0x68, 0xdd, 0x9e, 0xab, 0x21, 0xdb, 0xb8, 0x17, 0x0f, 0xa0, 0x7d, 0x4a, 0x2b,
- 0xf2, 0x19, 0xac, 0x1a, 0x02, 0x6a, 0x21, 0x2a, 0x09, 0x7d, 0x85, 0x68, 0x54, 0x33, 0x05, 0xca, 0x91, 0x62,
- 0xce, 0x0b, 0x0b, 0x58, 0xa0, 0xac, 0x85, 0x49, 0xa8, 0xf5, 0x1d, 0x7e, 0xce, 0x8c, 0x73, 0xfe, 0xbd, 0x98,
- 0xe8, 0x30, 0x28, 0xbe, 0x9e, 0x07, 0xdf, 0x93, 0x34, 0x63, 0x49, 0x09, 0x40, 0x16, 0xfa, 0x64, 0x62, 0x33,
- 0xf9, 0x42, 0x36, 0xcc, 0x89, 0x2f, 0x44, 0xca, 0xd6, 0x3a, 0x8b, 0xd8, 0x3b, 0x60, 0x89, 0x29, 0x13, 0x76,
- 0x5d, 0x52, 0xdc, 0x84, 0x0c, 0xd8, 0x1f, 0x00, 0x5e, 0xfb, 0x6a, 0xc4, 0x55, 0xb9, 0xb7, 0x76, 0xc5, 0xc6,
- 0x0b, 0xb6, 0xc2, 0xfd, 0x76, 0xdd, 0x3a, 0xf8, 0x47, 0xa6, 0xd2, 0xa4, 0xa3, 0x3d, 0x4a, 0xa8, 0x12, 0x0e,
- 0x92, 0xfb, 0x14, 0xbb, 0xee, 0x61, 0x29, 0xbc, 0x4d, 0x3f, 0xcf, 0x00, 0x6f, 0x59, 0x9a, 0x77, 0x03, 0x1f,
- 0x83, 0xdf, 0x63, 0x68, 0x41, 0x84, 0x4f, 0xe0, 0xbe, 0x8f, 0x2f, 0xec, 0x15, 0x15, 0xd2, 0xce, 0x52, 0x98,
- 0x94, 0x61, 0xb6, 0xa0, 0x43, 0xda, 0x11, 0xa6, 0x2a, 0x57, 0x8a, 0x17, 0x17, 0x36, 0x1a, 0xcc, 0xe0, 0xf2,
- 0x21, 0x4d, 0x77, 0x79, 0x59, 0x4b, 0x18, 0x31, 0x90, 0xe6, 0xbc, 0xe4, 0xa6, 0x68, 0x11, 0x15, 0x85, 0x30,
- 0xd9, 0x8c, 0xf9, 0x79, 0xfe, 0x47, 0x9e, 0xc3, 0x93, 0x14, 0xab, 0xf5, 0xf4, 0xcb, 0xad, 0x68, 0xad, 0x0b,
- 0xb6, 0x49, 0xed, 0x6b, 0xbe, 0x2b, 0x44, 0x26, 0xa5, 0x56, 0xa9, 0xaa, 0x3e, 0x93, 0xf0, 0x22, 0x45, 0x63,
- 0xbd, 0x0b, 0xe4, 0x49, 0x9c, 0x60, 0xab, 0xda, 0xf4, 0xaf, 0x28, 0x19, 0xb3, 0x56, 0xa4, 0x93, 0xf9, 0x8c,
- 0xf7, 0xcc, 0xe6, 0x03, 0x24, 0x1c, 0x5f, 0x74, 0xfd, 0xb5, 0x58, 0xfb, 0x7d, 0x2a, 0xba, 0x2b, 0x33, 0xe7,
- 0x59, 0x8f, 0x0b, 0xca, 0xd1, 0x6d, 0x48, 0xd4, 0x7a, 0xb0, 0x64, 0xf4, 0x77, 0x79, 0x2a, 0x8a, 0x6b, 0x16,
- 0x0b, 0x44, 0x14, 0x8a, 0xfb, 0x25, 0x2b, 0x50, 0xc6, 0x94, 0x36, 0xc7, 0x04, 0xef, 0x52, 0x56, 0x66, 0xad,
- 0x85, 0xc8, 0x2d, 0x86, 0x0d, 0xb3, 0xed, 0x08, 0x4a, 0x89, 0x8f, 0x87, 0x75, 0xfc, 0x13, 0xfe, 0xc1, 0x6a,
- 0x97, 0x09, 0xa6, 0xbb, 0x64, 0x45, 0xfc, 0x12, 0x33, 0x7e, 0x90, 0x00, 0x8c, 0x2e, 0x79, 0x87, 0x63, 0xd1,
- 0x6e, 0x31, 0x99, 0x4d, 0xa6, 0x8f, 0xc3, 0x8d, 0xb8, 0x43, 0x42, 0x1e, 0x99, 0x37, 0x7e, 0x49, 0x9a, 0xe4,
- 0x8b, 0x27, 0xea, 0x57, 0x1d, 0x23, 0xf8, 0xe6, 0xd9, 0x4f, 0xd5, 0x29, 0x19, 0x01, 0x65, 0x73, 0xd7, 0x40,
- 0x5f, 0x95, 0xb5, 0x59, 0x69, 0x24, 0x04, 0x94, 0xf9, 0xa8, 0x02, 0x53, 0x0d, 0x82, 0x3a, 0x95, 0x74, 0xae,
- 0x92, 0x9e, 0x57, 0x1f, 0x85, 0x71, 0xef, 0x48, 0xdd, 0x64, 0xd0, 0xb8, 0x1c, 0x32, 0x29, 0x16, 0x02, 0x10,
- 0xd7, 0xe3, 0x34, 0x66, 0x59, 0xcb, 0xba, 0xef, 0xda, 0xba, 0x0c, 0xe8, 0xe8, 0x05, 0x5b, 0x94, 0x70, 0xef,
- 0x74, 0x12, 0x97, 0x38, 0xc4, 0xc7, 0x2c, 0x18, 0x51, 0x2f, 0x8f, 0xe6, 0x0c, 0x18, 0x62, 0xcb, 0x61, 0x20,
- 0x38, 0x44, 0x19, 0x57, 0x31, 0xa5, 0xff, 0xc0, 0x0f, 0xf8, 0x1b, 0x57, 0x02, 0xd9, 0x06, 0x68, 0x3c, 0x02,
- 0x5b, 0x05, 0xdf, 0x24, 0x3e, 0xcd, 0xbc, 0x05, 0x18, 0x91, 0xf6, 0x92, 0x45, 0x4f, 0x8b, 0x46, 0x94, 0x0d,
- 0x8d, 0xf7, 0x37, 0x73, 0xa5, 0x9e, 0xb8, 0x32, 0x7e, 0x70, 0x89, 0x9d, 0x3d, 0x74, 0x98, 0xaf, 0x16, 0xd6,
- 0xd6, 0x18, 0x90, 0x0a, 0xd6, 0x51, 0xc6, 0x80, 0xf1, 0xe9, 0x6f, 0x2d, 0x6e, 0x60, 0x35, 0x5e, 0x76, 0xcd,
- 0xb9, 0x6e, 0xb0, 0x4f, 0x23, 0x4d, 0xe6, 0x64, 0x96, 0xf2, 0xe6, 0x4e, 0x18, 0xf3, 0xe9, 0x61, 0xe9, 0x02,
- 0xcc, 0x2b
+ 0xdf, 0x32, 0x2e, 0x43, 0xc4, 0x4e, 0x14, 0x3c, 0x1c, 0xd3, 0xd0, 0x53, 0x60, 0x28, 0x78, 0x4f, 0x46, 0xa8,
+ 0xf3, 0x57, 0xcb, 0x0f, 0xda, 0x5b, 0xeb, 0xbe, 0xd8, 0x12, 0x85, 0x90, 0xac, 0x1c, 0x21, 0x4a, 0x54, 0x78,
+ 0x7b, 0x04, 0xce, 0x9b, 0xa0, 0x9f, 0x54, 0xb6, 0xca, 0x8c, 0xb7, 0x36, 0x2e, 0x23, 0xc4, 0x15, 0x29, 0xca,
+ 0xd8, 0x79, 0x97, 0x1f, 0xd8, 0xb8, 0xc4, 0xc8, 0xe2, 0xe0, 0xb3, 0xea, 0xd7, 0x26, 0xf3, 0xcc, 0xf9, 0x98,
+ 0xd6, 0x84, 0x52, 0xf1, 0x1a, 0xc8, 0x08, 0x42, 0x7f, 0xbd, 0xb1, 0x6c, 0x53, 0x3a, 0x18, 0xee, 0xee, 0xae,
+ 0x58, 0x11, 0x8e, 0xf6, 0x95, 0x10, 0x6a, 0x86, 0xe0, 0x26, 0x73, 0xe1, 0x5f, 0xc5, 0xa9, 0x7e, 0xc9, 0x67,
+ 0xa3, 0xff, 0xcd, 0xbb, 0x38, 0x80, 0x1d, 0x82, 0x9e, 0x1e, 0x14, 0xb2, 0x19, 0x36, 0x5f, 0xef, 0xe4, 0x16,
+ 0x36, 0x2e, 0x32, 0x50, 0xcb, 0xea, 0x16, 0x55, 0xe1, 0xb1, 0xed, 0x34, 0x9b, 0x97, 0x24, 0x9f, 0x74, 0xdf,
+ 0x85, 0xf1, 0x7c, 0xdc, 0x44, 0x4d, 0x92, 0xb8, 0xb8, 0x4a, 0xfd, 0xa4, 0x1b, 0x69, 0xe3, 0x1b, 0xe1, 0x02,
+ 0x8d, 0x43, 0xba, 0x15, 0x1d, 0xfa, 0xca, 0xf5, 0x87, 0x70, 0xfd, 0xc1, 0x26, 0xcc, 0x92, 0x0f, 0x16, 0x84,
+ 0x29, 0xef, 0x77, 0x88, 0x97, 0x14, 0x6e, 0x8e, 0xb9, 0x16, 0x2c, 0xd0, 0xd8, 0xb5, 0x82, 0x92, 0x18, 0x93,
+ 0xe8, 0xee, 0x3e, 0xd3, 0xcd, 0x0e, 0x1e, 0xb4, 0x56, 0xc3, 0x4d, 0xd5, 0xaa, 0x69, 0xc1, 0x8e, 0x1d, 0x60,
+ 0xd8, 0x8c, 0x29, 0x48, 0x20, 0x63, 0xe7, 0x7e, 0x88, 0xb9, 0xd3, 0x05, 0x7b, 0x07, 0x79, 0xc3, 0x2a, 0x30,
+ 0x3b, 0x9d, 0xe6, 0x6d, 0x65, 0x20, 0x15, 0x62, 0x79, 0x9d, 0xd1, 0x22, 0xd4, 0x32, 0x87, 0x6e, 0x56, 0x85,
+ 0x57, 0x6c, 0xed, 0x56, 0x82, 0xa6, 0xed, 0x6f, 0x3a, 0x12, 0x5c, 0x53, 0xc3, 0x52, 0x76, 0xd1, 0x16, 0x90,
+ 0x6b, 0x87, 0x6d, 0xb8, 0xbf, 0xc9, 0x84, 0xf6, 0xbd, 0xaa, 0x80, 0x24, 0xd7, 0x6b, 0x81, 0x2c, 0xa8, 0xcb,
+ 0x21, 0x08, 0xdd, 0x94, 0x5d, 0x86, 0x2b, 0x0a, 0xcb, 0x2c, 0x5d, 0xa5, 0xfb, 0x1b, 0xda, 0x99, 0x42, 0xcb,
+ 0xef, 0xd4, 0x36, 0x2f, 0xb3, 0xba, 0x46, 0x6e, 0xbf, 0x2c, 0x31, 0x09, 0xc4, 0xe0, 0x0c, 0xbd, 0x18, 0x4d,
+ 0xa5, 0x0e, 0xf2, 0xea, 0x65, 0x2b, 0xb5, 0x57, 0x82, 0x47, 0xda, 0x2e, 0xed, 0xc3, 0xcf, 0xbf, 0x4c, 0xda,
+ 0x60, 0x5c, 0x3a, 0xf5, 0xe2, 0xff, 0x6e, 0x45, 0x71, 0x61, 0xa9, 0xd4, 0x7d, 0x75, 0xcd, 0x1d, 0xcf, 0xcf,
+ 0x83, 0xa2, 0x16, 0xce, 0x58, 0xf1, 0xe0, 0xfe, 0xba, 0x1a, 0x82, 0xe3, 0x77, 0x6f, 0x56, 0x62, 0x68, 0xae,
+ 0xd7, 0x66, 0x64, 0x31, 0x36, 0x58, 0xb1, 0x0f, 0xcb, 0x16, 0x78, 0x4d, 0x6c, 0x46, 0x17, 0xb7, 0xd9, 0xf0,
+ 0x15, 0x80, 0xe7, 0x97, 0x09, 0x25, 0xbe, 0x98, 0xd9, 0xe1, 0x48, 0x37, 0x63, 0x11, 0xd0, 0xf1, 0xd5, 0x00,
+ 0x4c, 0xf4, 0x9a, 0x3e, 0x24, 0xdf, 0x33, 0x03, 0x68, 0x6b, 0x79, 0x31, 0x30, 0x1b, 0xfc, 0x17, 0x18, 0xba,
+ 0x2c, 0x5f, 0x18, 0x65, 0xb3, 0xf7, 0x86, 0x3a, 0xdc, 0x6f, 0x7e, 0x42, 0xfb, 0x3f, 0x16, 0x86, 0x7d, 0x46,
+ 0xb0, 0x8e, 0x9a, 0x05, 0x38, 0x52, 0x56, 0x80, 0xef, 0x3c, 0x65, 0x5b, 0xc2, 0x59, 0x64, 0x18, 0xe7, 0x08,
+ 0xe6, 0x9f, 0x6e, 0x81, 0xa6, 0xb0, 0x96, 0xb6, 0x99, 0x88, 0x20, 0x13, 0x8f, 0x72, 0x93, 0xbb, 0xc8, 0x68,
+ 0x3f, 0x3f, 0xf8, 0xe4, 0x55, 0xfa, 0x41, 0x94, 0x1d, 0xba, 0x30, 0x2c, 0xc5, 0x34, 0x1b, 0x27, 0x0b, 0x20,
+ 0x6d, 0xb5, 0x07, 0x07, 0xf5, 0x59, 0x25, 0x35, 0xcc, 0x11, 0x44, 0x31, 0x56, 0x44, 0x93, 0xf3, 0x84, 0x0a,
+ 0x3e, 0xe4, 0x30, 0xe5, 0x39, 0xcf, 0x8e, 0xe3, 0xb9, 0x7d, 0x94, 0xf1, 0xe7, 0x48, 0xf3, 0x9b, 0x52, 0x61,
+ 0x05, 0x39, 0x91, 0xb7, 0xc2, 0x20, 0x77, 0xe7, 0x2f, 0xfe, 0xd7, 0xbf, 0xfd, 0x9c, 0xab, 0x31, 0xb4, 0x64,
+ 0x03, 0xb7, 0x42, 0xeb, 0x99, 0xeb, 0x10, 0x8d, 0x7c, 0xaa, 0xe2, 0x3a, 0x59, 0x2c, 0x5d, 0xb5, 0xcb, 0xf9,
+ 0x0b, 0xe0, 0xe4, 0x6b, 0x3f, 0x80, 0xa7, 0x8f, 0x0a, 0x7e, 0x7a, 0x2a, 0x50, 0x6b, 0xc9, 0x9c, 0x9b, 0x21,
+ 0x77, 0xcb
};
// context = illuminazione
@@ -1535,53 +2022,53 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_JAPANESE__)
-// wake-word = konnichiwa konpyūtā
+// wake-word = こんにちは コンピューター
static const uint8_t KEYWORD_ARRAY[] = {
- 0xf9, 0x5a, 0xc7, 0xf5, 0xa7, 0xe9, 0x06, 0x3f, 0x00, 0x3a, 0x82, 0x94, 0x96, 0xc2, 0xa7, 0x82, 0xc3, 0x85,
- 0xc3, 0xec, 0xd9, 0x43, 0x14, 0x8f, 0x2a, 0xcf, 0x34, 0x77, 0x17, 0xfc, 0x81, 0x08, 0xf2, 0xb0, 0x16, 0x42,
- 0x3b, 0x2d, 0x95, 0xb3, 0xad, 0x00, 0xfc, 0xbb, 0x15, 0x2e, 0xba, 0x7e, 0x8a, 0x28, 0xfc, 0x46, 0x38, 0x6d,
- 0xeb, 0x07, 0xa7, 0xc3, 0x53, 0x2e, 0x3c, 0xd5, 0x3c, 0x69, 0xc5, 0x1d, 0x46, 0x1f, 0x0e, 0x93, 0x81, 0xc9,
- 0x8a, 0xc8, 0x32, 0xbe, 0x8f, 0xb6, 0xb2, 0x8a, 0x67, 0x1b, 0xc6, 0xba, 0x66, 0xf9, 0x2d, 0x48, 0x74, 0x0f,
- 0x31, 0xb2, 0x1d, 0x59, 0xe8, 0x65, 0x90, 0x0a, 0xea, 0x01, 0x03, 0x2e, 0xaf, 0x95, 0x7b, 0x15, 0x2a, 0xdb,
- 0xa4, 0x36, 0x73, 0x15, 0xe5, 0x23, 0xdc, 0xec, 0x93, 0x4e, 0x16, 0x04, 0x1d, 0x4c, 0x5b, 0x16, 0x25, 0x38,
- 0x61, 0xba, 0xc2, 0x48, 0x52, 0x2c, 0xa2, 0xfb, 0x59, 0xb6, 0x7b, 0x11, 0xc6, 0x5e, 0x96, 0x1b, 0xe4, 0x0d,
- 0x01, 0x8d, 0x22, 0xea, 0xbd, 0x1a, 0xb2, 0x31, 0x70, 0xa9, 0x1b, 0x25, 0x07, 0x0a, 0x17, 0xff, 0xf4, 0xfd,
- 0xdf, 0xf4, 0x0f, 0x60, 0xb7, 0x9f, 0xaa, 0x4c, 0xb9, 0xed, 0x97, 0x16, 0xc5, 0x03, 0x28, 0xef, 0xe8, 0x41,
- 0x2a, 0x45, 0x72, 0x48, 0xa1, 0x8f, 0x2c, 0x89, 0x23, 0x78, 0x50, 0xe1, 0xbe, 0xe1, 0x16, 0x63, 0x1b, 0x9f,
- 0x3b, 0x33, 0xf4, 0x7b, 0xf0, 0xfa, 0xd4, 0xfe, 0x6f, 0x54, 0x69, 0x8b, 0x89, 0x7b, 0x2f, 0x4f, 0x3f, 0x4b,
- 0xf7, 0x8c, 0xed, 0x99, 0x52, 0x87, 0x94, 0x26, 0x04, 0x51, 0xd9, 0x57, 0xab, 0xf7, 0xc3, 0x89, 0xc9, 0x46,
- 0x59, 0xb4, 0x0e, 0xef, 0xa1, 0xf3, 0x7a, 0x30, 0xec, 0x43, 0xfe, 0xf8, 0x7d, 0x9c, 0x94, 0x1f, 0xa2, 0xf2,
- 0x5d, 0x69, 0x01, 0xdd, 0x7f, 0xf7, 0x3c, 0x72, 0x7b, 0xa9, 0xa5, 0x99, 0x0d, 0xe9, 0x46, 0xb1, 0x36, 0x76,
- 0x2f, 0x4c, 0xf6, 0x65, 0x33, 0xb1, 0x0f, 0x90, 0x37, 0x62, 0xd2, 0xb7, 0x5b, 0x5b, 0x8b, 0xef, 0x0e, 0x3f,
- 0x97, 0xcd, 0xbf, 0x1e, 0xba, 0x65, 0x69, 0xaf, 0x99, 0xab, 0xa7, 0x20, 0xe3, 0x4f, 0xf3, 0x26, 0xda, 0x3c,
- 0x06, 0xb9, 0x10, 0xcc, 0x4e, 0x7d, 0xb4, 0x23, 0x51, 0xa4, 0x0b, 0x36, 0x40, 0x46, 0xa5, 0x2b, 0xe7, 0xa8,
- 0xd4, 0x30, 0xdb, 0x92, 0x5a, 0x10, 0x26, 0x23, 0x34, 0x07, 0x89, 0x1c, 0x93, 0xda, 0xf9, 0x0d, 0x5d, 0x59,
- 0xa9, 0x19, 0xfc, 0x02, 0x54, 0xfd, 0x68, 0x6d, 0x8e, 0x25, 0xf9, 0xf5, 0x76, 0xe0, 0x3e, 0x0a, 0x15, 0xce,
- 0x89, 0xdc, 0x53, 0xf6, 0xb7, 0xd3, 0xb6, 0xda, 0xc7, 0xdb, 0x36, 0x03, 0x49, 0xe1, 0x66, 0x43, 0x3c, 0xa8,
- 0x62, 0x31, 0xb9, 0x8e, 0x94, 0xc8, 0x74, 0x30, 0x67, 0x37, 0x27, 0x8f, 0x91, 0x83, 0xda, 0xc0, 0x17, 0xeb,
- 0xb6, 0x87, 0x72, 0x38, 0x2e, 0x21, 0xd7, 0x74, 0x28, 0x8f, 0x20, 0xe6, 0x37, 0x74, 0x7e, 0xe9, 0xa9, 0x48,
- 0x33, 0x42, 0x17, 0x12, 0x3d, 0x47, 0xc3, 0x25, 0x63, 0x26, 0xd0, 0x56, 0xbe, 0xaa, 0x79, 0x14, 0x0b, 0x93,
- 0xc6, 0xf1, 0x9a, 0x31, 0x71, 0x99, 0x22, 0x3d, 0xad, 0x93, 0xeb, 0x2f, 0xc2, 0x7b, 0x89, 0xb2, 0x28, 0xae,
- 0xcd, 0x60, 0xbd, 0x26, 0xc5, 0x71, 0x3c, 0x30, 0x55, 0xc0, 0xc8, 0xbd, 0xf9, 0x9b, 0x47, 0x58, 0x86, 0xcf,
- 0x69, 0x9a, 0x3a, 0xb0, 0x66, 0xc9, 0x04, 0x95, 0x84, 0x5c, 0x10, 0xa7, 0xab, 0x35, 0x82, 0x30, 0xfb, 0xfc,
- 0xe8, 0x8b, 0xab, 0xb0, 0xc1, 0x44, 0xff, 0x28, 0x6b, 0x8a, 0x85, 0xa6, 0xfe, 0x2c, 0x66, 0x70, 0x38, 0x6d,
- 0x79, 0xbb, 0xde, 0x03, 0x1e, 0x17, 0x64, 0x09, 0xbd, 0x0c, 0x86, 0x39, 0xbb, 0x30, 0xdb, 0x2f, 0x45, 0x2b,
- 0x5c, 0x5d, 0xb5, 0x48, 0xa6, 0xa0, 0x6e, 0x06, 0xcf, 0x36, 0x9c, 0xed, 0x3f, 0x5e, 0x22, 0x70, 0xc9, 0x9b,
- 0xaf, 0x29, 0x7b, 0x11, 0xa3, 0x16, 0x45, 0x89, 0xd5, 0x3d, 0x0d, 0xff, 0xfd, 0x3b, 0x06, 0x3d, 0xf9, 0x46,
- 0x3e, 0xa4, 0x0a, 0xcf, 0xa3, 0x0a, 0xb5, 0x95, 0x05, 0xdb, 0xad, 0x0e, 0x8e, 0xb6, 0x36, 0xf2, 0xd6, 0xd1,
- 0xa1, 0xee, 0x48, 0x36, 0xa0, 0xa6, 0xba, 0x7a, 0x9c, 0xd6, 0x28, 0x65, 0xe6, 0xfb, 0xe6, 0x43, 0x81, 0x14,
- 0xdc, 0xd5, 0x3b, 0x4b, 0x2d, 0x4b, 0x8a, 0x3a, 0x2d, 0x23, 0x8b, 0xc0, 0x83, 0x61, 0x5c, 0x68, 0xf2, 0xaf,
- 0xbf, 0x5f, 0x21, 0xc5, 0x8a, 0xa7, 0xa5, 0x97, 0x8d, 0xb8, 0xd2, 0x49, 0x0d, 0xcd, 0x5f, 0x9f, 0x36, 0xc4,
- 0x2c, 0x73, 0xa1, 0xe8, 0xa9, 0xb1, 0x7d, 0x6c, 0xaf, 0x3a, 0x67, 0x8c, 0xe9, 0xf8, 0xa9, 0x1c, 0xd1, 0xc7,
- 0x97, 0x1f, 0xee, 0x6c, 0x38, 0x07, 0x9f, 0x83, 0xec, 0x7c, 0xcf, 0xc2, 0x4c, 0xf7, 0x2d, 0x0f, 0x87, 0x23,
- 0x05, 0x56, 0x08, 0x52, 0xa9, 0xad, 0xab, 0x3f, 0x7f, 0x0a, 0xed, 0xd2, 0xca, 0x6b, 0xb5, 0xb2, 0x47, 0x79,
- 0x33, 0x4a, 0x7e, 0x9c, 0x56, 0x74, 0xe2, 0x3e, 0x57, 0x08, 0xb5, 0x49, 0xa4, 0x60, 0x33, 0xea, 0x9b, 0xe4,
- 0x38, 0x6b, 0x6b, 0x80, 0xde, 0x1c, 0xdd, 0x5d, 0x16, 0xb2, 0x66, 0xd2, 0x8c, 0x96, 0x5f, 0x14, 0x92, 0x87,
- 0xa4, 0x18, 0x42, 0xa8, 0xe8, 0x77, 0x1d, 0x1f, 0xf3, 0xd7, 0x89, 0xa4, 0x33, 0xee, 0xdc, 0x45, 0xa1, 0xe5,
- 0x59, 0x58, 0x62, 0xe3, 0xe2, 0x6b, 0x14, 0xec, 0x5d, 0xbd, 0x0e, 0x37, 0xdd, 0x2b, 0x17, 0xc3, 0xee, 0x30,
- 0x97, 0x15, 0x3a, 0xf2, 0xc9, 0xae, 0x93, 0xaf, 0x51, 0x00, 0x14, 0x2a, 0xe0, 0xf7, 0x1a, 0xd0, 0xee, 0xf5,
- 0x25, 0x0f, 0x19, 0x50, 0x1a, 0x53, 0xc3, 0xf8, 0xc5, 0x0c, 0xfd, 0x50, 0x37, 0x9a, 0xcc, 0x3a, 0xea, 0xe0,
- 0xc6, 0x6a, 0x91, 0x9c
+ 0x0c, 0xd2, 0x22, 0x12, 0xb5, 0x59, 0xe6, 0xf1, 0x07, 0x3a, 0x41, 0x98, 0xb9, 0x0b, 0x68, 0x9d, 0xf6, 0x00,
+ 0x8d, 0x85, 0xb2, 0x2e, 0x0d, 0x94, 0xc1, 0x08, 0x9e, 0x13, 0xc7, 0x50, 0xdc, 0xe3, 0x7a, 0x30, 0x22, 0xe1,
+ 0x19, 0xff, 0x5f, 0xe4, 0xa0, 0xd8, 0x18, 0xea, 0xda, 0xf5, 0x40, 0x1a, 0x7d, 0xc9, 0xe9, 0x32, 0xab, 0x56,
+ 0x95, 0x7b, 0xd0, 0x48, 0xb2, 0xef, 0x4f, 0x93, 0x1d, 0x1c, 0x79, 0x45, 0x55, 0x75, 0x5b, 0xa7, 0x05, 0x99,
+ 0xee, 0x35, 0x32, 0xe4, 0x24, 0x57, 0xb6, 0x1f, 0x8c, 0xef, 0x6e, 0xe6, 0x67, 0x38, 0xaa, 0x8e, 0x84, 0x40,
+ 0x7b, 0x2c, 0xb3, 0xba, 0x6c, 0x3e, 0xbe, 0x4c, 0x35, 0xbf, 0x60, 0x76, 0x2d, 0x56, 0x97, 0x73, 0x3f, 0xa0,
+ 0x92, 0x74, 0xf4, 0x80, 0xba, 0x75, 0x4d, 0x24, 0x35, 0x2d, 0xe5, 0x17, 0xd8, 0x89, 0x9c, 0xc9, 0x7a, 0xbd,
+ 0xf6, 0xc2, 0xaf, 0x0d, 0x68, 0x75, 0xb4, 0x0e, 0x7c, 0x83, 0x95, 0xf3, 0xbf, 0x8d, 0x0d, 0x96, 0x8c, 0xfd,
+ 0xf4, 0xd6, 0x61, 0xa6, 0x1d, 0xb3, 0x2b, 0x8a, 0x0a, 0x3f, 0xcb, 0xac, 0x77, 0x6c, 0x8d, 0x01, 0xc8, 0x96,
+ 0x8d, 0x05, 0x84, 0x6c, 0x34, 0x17, 0x17, 0x09, 0x71, 0xc3, 0x68, 0xd9, 0xe7, 0x55, 0x3a, 0x4d, 0x37, 0x14,
+ 0xe7, 0x0a, 0x87, 0xbc, 0xa2, 0x3c, 0xa2, 0xb5, 0xa7, 0xb2, 0xd7, 0x80, 0x5a, 0x92, 0x99, 0x1a, 0xc8, 0x1c,
+ 0x54, 0xc7, 0x47, 0x62, 0x7d, 0xfa, 0xe5, 0xec, 0xcb, 0x47, 0xb1, 0x74, 0xdd, 0xa4, 0x33, 0x8d, 0xad, 0x67,
+ 0x4e, 0x8a, 0x6e, 0x56, 0x94, 0x7b, 0x9b, 0xcc, 0xf1, 0x28, 0xd0, 0x81, 0xd1, 0xd0, 0xe3, 0x8a, 0xcd, 0xcc,
+ 0x1c, 0x9b, 0xde, 0xc7, 0xac, 0xe9, 0xb6, 0x4a, 0xe1, 0xbe, 0x15, 0xb2, 0x02, 0x19, 0x30, 0x0b, 0x7a, 0x94,
+ 0xcf, 0xf6, 0xa1, 0x71, 0x54, 0xfc, 0xe8, 0x3f, 0xd0, 0xba, 0x7f, 0x7e, 0x52, 0xb8, 0x6a, 0x13, 0x48, 0xa3,
+ 0xbb, 0xc3, 0x23, 0xff, 0xd9, 0x03, 0xdc, 0x6d, 0xe5, 0x97, 0x9e, 0xf1, 0x9d, 0x17, 0x23, 0x33, 0x77, 0x1d,
+ 0xff, 0xbd, 0x86, 0x02, 0x93, 0x8e, 0xf1, 0x56, 0xfd, 0x02, 0xb7, 0x3c, 0x13, 0x07, 0xea, 0x32, 0x6f, 0x11,
+ 0x28, 0x17, 0x53, 0x8a, 0xd6, 0xdc, 0x97, 0x83, 0xd9, 0x22, 0x47, 0xa8, 0x4c, 0x3f, 0xa2, 0xd1, 0x0c, 0x56,
+ 0x68, 0xc4, 0xb3, 0x3d, 0xfa, 0x3f, 0xf0, 0x3f, 0x13, 0xd8, 0xfd, 0x5e, 0x8b, 0x25, 0xd3, 0xb5, 0x0f, 0x10,
+ 0xd9, 0xfe, 0x83, 0xc3, 0x4b, 0x7d, 0x26, 0x86, 0x3f, 0x3d, 0xf3, 0x40, 0xc0, 0x0c, 0xb1, 0x44, 0xfa, 0x19,
+ 0x57, 0xfc, 0x1f, 0xeb, 0x1c, 0x85, 0x4f, 0xc4, 0x9d, 0x10, 0x70, 0x99, 0x21, 0x49, 0xc3, 0x52, 0x29, 0x8d,
+ 0xde, 0xee, 0x73, 0xb6, 0xc1, 0x1e, 0x7a, 0x9b, 0x73, 0x09, 0xc9, 0x43, 0x1e, 0xeb, 0x7a, 0x45, 0x94, 0x52,
+ 0xd9, 0x5c, 0xaa, 0x1c, 0x57, 0xa6, 0x1f, 0x7c, 0xdf, 0x47, 0xe4, 0xd7, 0xeb, 0xab, 0x98, 0x44, 0xbd, 0x38,
+ 0x5f, 0xf6, 0xd2, 0xef, 0xfe, 0xc1, 0xe5, 0xee, 0xd7, 0x9a, 0xc1, 0xc6, 0xdb, 0x62, 0x91, 0xc4, 0x17, 0x67,
+ 0x3a, 0x1c, 0xf3, 0x19, 0xff, 0x2f, 0x9b, 0xed, 0x06, 0xcd, 0x95, 0xd0, 0x68, 0x00, 0x41, 0xc6, 0xcd, 0x2f,
+ 0xd8, 0x5b, 0xd0, 0x28, 0xaf, 0x22, 0x20, 0xbd, 0x5b, 0x9e, 0x3e, 0x79, 0x81, 0xd6, 0x7a, 0xea, 0xc3, 0xc2,
+ 0xab, 0x27, 0xa5, 0xdf, 0x1a, 0xa1, 0x96, 0x90, 0xab, 0xbd, 0x1d, 0x0a, 0xb4, 0x8d, 0x8f, 0x2c, 0x39, 0xab,
+ 0x09, 0xde, 0x8c, 0xe6, 0x81, 0x37, 0x0b, 0xac, 0x0d, 0x3d, 0xca, 0x4b, 0xc4, 0x45, 0x79, 0xb7, 0x11, 0x7b,
+ 0xad, 0x4b, 0xf6, 0x89, 0x9b, 0x97, 0x27, 0xa0, 0x7f, 0x46, 0x4b, 0x77, 0xd1, 0x77, 0xf3, 0xf5, 0x99, 0xc0,
+ 0x4a, 0xec, 0x08, 0x16, 0x2d, 0xa6, 0xde, 0xb8, 0x1b, 0x46, 0x4f, 0xe8, 0x56, 0xb5, 0x76, 0x7d, 0xb7, 0x2f,
+ 0x22, 0xc3, 0x52, 0x72, 0xa6, 0x28, 0xb3, 0x2f, 0x41, 0xe3, 0x32, 0x03, 0xbb, 0x17, 0xc8, 0xc7, 0x26, 0xca,
+ 0x07, 0x3b, 0xf4, 0x7f, 0x73, 0x88, 0xab, 0x86, 0xbe, 0x57, 0x63, 0xfe, 0xa7, 0x84, 0xdb, 0xd1, 0xeb, 0xd3,
+ 0x1a, 0xad, 0xe6, 0xbe, 0x2e, 0x08, 0x15, 0xd2, 0x6a, 0x49, 0xc9, 0x8b, 0x95, 0xb5, 0xa0, 0xc8, 0x9f, 0x56,
+ 0x00, 0x0b, 0xec, 0xfb, 0x27, 0x2e, 0xd3, 0x2a, 0x4e, 0xbf, 0xa9, 0xdc, 0xa9, 0x71, 0xfc, 0xb2, 0x68, 0x18,
+ 0x90, 0x5e, 0x33, 0xb7, 0xcc, 0xbd, 0x6d, 0x66, 0x55, 0x7d, 0xdf, 0x04, 0xfa, 0x81, 0x9e, 0xd3, 0x00, 0xf5,
+ 0x3c, 0xa5, 0x5d, 0x36, 0xf9, 0x83, 0x7f, 0x6f, 0xc0, 0x98, 0x0e, 0xac, 0x51, 0x4a, 0xbe, 0xc0, 0x96, 0x2f,
+ 0x40, 0xee, 0x01, 0x8d, 0x07, 0x1c, 0x4d, 0xc4, 0x34, 0xdf, 0xcb, 0x2d, 0x55, 0xbe, 0x2a, 0x39, 0xa6, 0x90,
+ 0x37, 0xec, 0x5b, 0xe3, 0xfd, 0x7d, 0xe0, 0x3b, 0x9f, 0x52, 0xac, 0x60, 0xce, 0xbe, 0x76, 0x63, 0xe5, 0x4f,
+ 0x9f, 0xec, 0x43, 0xcf, 0x5a, 0xb0, 0xee, 0x78, 0x45, 0x3e, 0xd5, 0x81, 0x56, 0x2c, 0x1a, 0xae, 0xda, 0xbb,
+ 0xf5, 0x1a, 0x29, 0x96, 0xd5, 0x1a, 0x81, 0xcc, 0x2c, 0x6f, 0xc1, 0x76, 0x93, 0x97, 0x10, 0x3d, 0x27, 0xce,
+ 0x1b, 0xa5, 0xc0, 0x04, 0xca, 0xc0, 0xa2, 0x3d, 0x54, 0x41, 0xec, 0x7e, 0x82, 0xb7, 0x8c, 0x76, 0x39, 0x33,
+ 0xb1, 0x14, 0xa3, 0x04, 0x16, 0x4d, 0x87, 0xe5, 0x8a, 0x8d, 0x59, 0x99, 0x11, 0x64, 0x06, 0xee, 0xf2, 0x25,
+ 0xb5, 0xd3, 0xa7, 0xf4, 0x4a, 0x30, 0x97, 0x51, 0xf7, 0x53, 0xbd, 0xa6, 0x06, 0x54, 0xb4, 0x58, 0x50, 0x45,
+ 0x7b, 0xae, 0x41, 0x86, 0xa2, 0x78, 0x50, 0x7d, 0xe4, 0x24, 0xe9, 0xb9, 0xcf, 0x73, 0xba, 0x81, 0x98, 0xa7,
+ 0xa2, 0x0d, 0x43, 0x40
};
// context = sumāto_shōmei
@@ -2002,42 +2489,42 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_KOREAN__)
-// wake-word = annyeong keompyuteo
+// wake-word = 안녕 컴퓨터
static const uint8_t KEYWORD_ARRAY[] = {
- 0xca, 0x3d, 0xa9, 0x17, 0x6d, 0xd1, 0x76, 0x57, 0x8a, 0xdb, 0xe5, 0x85, 0x47, 0x26, 0xfe, 0xad, 0x92, 0x53,
- 0xa4, 0x2f, 0x81, 0xf0, 0x00, 0x14, 0xae, 0xa3, 0xa9, 0x97, 0xb1, 0x61, 0xea, 0x79, 0x9e, 0xc8, 0x76, 0xdd,
- 0xe1, 0x5a, 0x0f, 0x3b, 0x66, 0x8e, 0xd0, 0x24, 0xc9, 0xed, 0x76, 0xcc, 0x68, 0x8e, 0x0d, 0xcb, 0x8e, 0x6a,
- 0xe8, 0xa9, 0x64, 0xc2, 0x19, 0x35, 0x83, 0xb7, 0xd0, 0x62, 0xc3, 0x1d, 0x1b, 0x4f, 0x11, 0x31, 0x9c, 0xbf,
- 0x81, 0x61, 0x87, 0xe2, 0xf1, 0xb5, 0xc4, 0x2f, 0xe8, 0x63, 0x00, 0xc3, 0x1d, 0x26, 0x3a, 0xf6, 0x01, 0x47,
- 0x63, 0x65, 0xf6, 0xe3, 0x51, 0xaa, 0x8a, 0x5f, 0x12, 0xbb, 0xe6, 0xf7, 0x81, 0xb3, 0x4e, 0xb7, 0xa0, 0xb4,
- 0x4e, 0xe5, 0x86, 0xae, 0x18, 0xbb, 0x54, 0x45, 0xc9, 0x52, 0xe4, 0x2e, 0xce, 0x84, 0xcf, 0x49, 0x21, 0xff,
- 0x81, 0xb7, 0xbe, 0x4d, 0x75, 0x8d, 0xa5, 0x74, 0xdb, 0xc6, 0xb9, 0x30, 0xc2, 0xb6, 0x1c, 0xd2, 0x69, 0x67,
- 0xe8, 0x80, 0xab, 0xcd, 0xcd, 0xd3, 0x3e, 0xb4, 0x23, 0xc8, 0xae, 0xd1, 0xba, 0x17, 0xba, 0x95, 0x1c, 0x68,
- 0xba, 0x96, 0xa6, 0x53, 0x14, 0x95, 0x41, 0xf6, 0xd6, 0xc4, 0x78, 0x7d, 0x69, 0xb0, 0xd9, 0xb6, 0x21, 0xe7,
- 0x86, 0xc5, 0xab, 0xc6, 0xeb, 0xf5, 0xf6, 0xd4, 0x98, 0xb6, 0xa7, 0x1a, 0x84, 0x02, 0xfc, 0xcf, 0xc0, 0x15,
- 0x1a, 0x66, 0x6f, 0x25, 0xea, 0x03, 0x79, 0xad, 0x14, 0x15, 0x74, 0x62, 0x8b, 0x7e, 0x53, 0x2f, 0x94, 0xea,
- 0xf8, 0xd6, 0x1f, 0x4d, 0xe6, 0xfd, 0xe3, 0xa0, 0xf7, 0x9a, 0x3f, 0x37, 0x63, 0x6f, 0x48, 0x27, 0xea, 0x86,
- 0xa2, 0x0e, 0x41, 0x8b, 0xe5, 0xd9, 0xcb, 0x1b, 0x9b, 0x50, 0x0f, 0x71, 0xd5, 0xa8, 0x90, 0x0f, 0xac, 0x57,
- 0x7b, 0xc2, 0x81, 0x77, 0x11, 0x8c, 0x31, 0x29, 0x45, 0xc8, 0x51, 0x2d, 0xa8, 0x77, 0x4b, 0xed, 0x0b, 0x31,
- 0x0e, 0x14, 0x3f, 0xd6, 0xa3, 0xb1, 0xb6, 0xc1, 0x54, 0xe1, 0xbf, 0x72, 0xf6, 0xdc, 0xcc, 0x27, 0xeb, 0x47,
- 0x0d, 0x04, 0x8d, 0xe0, 0xf3, 0xe3, 0xb4, 0xaf, 0x73, 0x09, 0x7a, 0x82, 0x58, 0xaa, 0xca, 0x97, 0xc2, 0x82,
- 0x46, 0xbf, 0xad, 0x4b, 0x2d, 0x20, 0x2d, 0xef, 0xf7, 0x21, 0x29, 0x36, 0x3b, 0xa9, 0x87, 0x61, 0x9a, 0x66,
- 0x53, 0xfb, 0xa7, 0x5f, 0x02, 0xc7, 0x60, 0x4c, 0x44, 0x87, 0x54, 0x3f, 0x60, 0xa4, 0x0d, 0xc0, 0x4a, 0x1c,
- 0xa8, 0x50, 0xe0, 0xbd, 0x37, 0x16, 0x95, 0x58, 0xea, 0x10, 0xa5, 0x76, 0xa4, 0x1f, 0x58, 0xbe, 0x1f, 0x01,
- 0xc5, 0x2b, 0x1d, 0x3b, 0x3b, 0xc9, 0xca, 0xbb, 0x52, 0xf3, 0xe8, 0x9c, 0xbf, 0x68, 0xe9, 0xa5, 0x58, 0x42,
- 0x1f, 0x01, 0xfd, 0xe8, 0xc0, 0x7c, 0xff, 0x23, 0xf8, 0xbb, 0x46, 0xcd, 0xf2, 0xc4, 0x92, 0x86, 0x3f, 0xf7,
- 0x43, 0xba, 0x23, 0x53, 0x20, 0x1b, 0x93, 0x11, 0x93, 0xe8, 0x89, 0x5b, 0xfb, 0x95, 0x23, 0xd2, 0x74, 0xab,
- 0xed, 0xed, 0xe9, 0xc9, 0x5e, 0x3e, 0xfd, 0xe2, 0x21, 0xfe, 0x01, 0xf7, 0x11, 0xd6, 0xd2, 0x5a, 0x12, 0x59,
- 0xfa, 0xa1, 0x91, 0x3f, 0x99, 0x15, 0x24, 0x14, 0x53, 0xd5, 0xc2, 0xaa, 0xf3, 0xdc, 0xb5, 0xb3, 0xca, 0x57,
- 0x05, 0x8b, 0x48, 0x3e, 0xbc, 0x94, 0x7d, 0xe7, 0x2f, 0xae, 0x18, 0x54, 0xa8, 0x37, 0x07, 0x83, 0x89, 0x5a,
- 0x06, 0x0c, 0xdf, 0xd6, 0xaa, 0x14, 0x74, 0x4d, 0xdd, 0x25, 0x2b, 0xad, 0x7c, 0xfc, 0x2a, 0xb1, 0x7b, 0x12,
- 0x4d, 0x88, 0xa9, 0x94, 0x50, 0xd8, 0x47, 0x00, 0x35, 0x22, 0x32, 0x9b, 0xf2, 0xf2, 0x1d, 0x9c, 0x28, 0x2d,
- 0x5b, 0xc2, 0x4e, 0x79, 0x7a, 0x9d, 0x76, 0x76, 0xa6, 0xb5, 0x18, 0x54, 0x00, 0xd8, 0x3c, 0x7d, 0x37, 0x82,
- 0x38, 0x20, 0xab, 0x19, 0xce, 0x85, 0xda, 0x1f, 0x49, 0x82, 0x0e, 0x5a, 0x56, 0xfc, 0x12, 0x5a, 0x1c, 0x86,
- 0x9a, 0x00, 0x7d, 0xf3, 0xae, 0xee, 0xa8, 0xe6, 0xe0, 0x82, 0xc6, 0x46, 0x0b, 0x67, 0x2d, 0x2d, 0xc9, 0x00,
- 0x8a, 0x1f, 0xe4, 0x34, 0xdf, 0x3e, 0x7d, 0xdb, 0x15, 0xb4, 0xad, 0x80, 0xc6, 0x21, 0x9e, 0x80, 0xdf, 0xd0,
- 0x77, 0x98, 0xaf, 0xa0, 0xe7, 0xb0, 0xee, 0x8f, 0x38, 0x92, 0x36, 0x8b, 0x24, 0xd9, 0xeb, 0x37, 0xc7, 0xfb,
- 0x20, 0x74, 0x61, 0x63, 0x6c, 0x53, 0xf9, 0x7a, 0x65, 0x26, 0x5c, 0xa0, 0xb0, 0x5b, 0x22, 0x0d, 0x8e, 0x68
+ 0x6f, 0x77, 0x54, 0x89, 0xec, 0xb1, 0x5b, 0x25, 0xad, 0xd5, 0xb5, 0xc1, 0x15, 0x17, 0x09, 0x6e, 0x82, 0xe5,
+ 0x50, 0xb1, 0xde, 0xa4, 0x9f, 0x12, 0x5f, 0x18, 0xb7, 0x19, 0x24, 0xb3, 0x3b, 0xe3, 0xeb, 0x83, 0x09, 0xc2,
+ 0x90, 0x12, 0x93, 0x88, 0xa7, 0x24, 0x40, 0xaf, 0x3f, 0xee, 0xbd, 0x56, 0x6d, 0x13, 0x8f, 0xbb, 0x97, 0xef,
+ 0xae, 0x31, 0x17, 0xd2, 0x14, 0x97, 0xd5, 0x19, 0x7c, 0xf8, 0xa2, 0xd5, 0xc9, 0xda, 0xc7, 0x9f, 0xdc, 0x3f,
+ 0x45, 0x16, 0xbf, 0xf2, 0x14, 0xf3, 0xe6, 0x80, 0xee, 0xd7, 0xc7, 0xdc, 0x4e, 0xc7, 0xcb, 0x8c, 0xf6, 0x21,
+ 0xd8, 0x8a, 0xe2, 0x05, 0x80, 0x73, 0xd9, 0x21, 0x06, 0x84, 0x9b, 0x66, 0x36, 0xd6, 0x3e, 0x00, 0x00, 0x09,
+ 0xbb, 0x51, 0x91, 0x06, 0x4b, 0x93, 0x22, 0xbe, 0xb8, 0x8a, 0x91, 0xa0, 0x4a, 0x43, 0x1b, 0xa8, 0xdd, 0x67,
+ 0xb6, 0xaf, 0x4a, 0xe1, 0xfd, 0x72, 0x16, 0x46, 0xfa, 0x02, 0xf5, 0xcb, 0x93, 0xbd, 0xa4, 0x00, 0xf8, 0x76,
+ 0xf6, 0x4d, 0x3f, 0xab, 0x9d, 0x0a, 0xcf, 0x2f, 0xb6, 0x46, 0x25, 0xa7, 0x50, 0xfe, 0xe5, 0xd6, 0x03, 0xb1,
+ 0x9d, 0x46, 0x67, 0x6b, 0xc1, 0x41, 0xe6, 0x2e, 0x76, 0x0d, 0x9b, 0xc6, 0xb1, 0xe2, 0x43, 0x18, 0x7f, 0x86,
+ 0x99, 0xec, 0x38, 0x5c, 0x1d, 0x87, 0x6f, 0x68, 0x5c, 0xfd, 0x2f, 0xe9, 0x73, 0x62, 0x0b, 0x7e, 0xc2, 0x81,
+ 0xfa, 0xc8, 0x04, 0x8c, 0x2a, 0x86, 0x7f, 0xb2, 0xe6, 0x07, 0xa3, 0xc5, 0xf8, 0x4c, 0xd8, 0xda, 0x44, 0x90,
+ 0x9d, 0x3e, 0x82, 0x27, 0xd6, 0x1d, 0x7a, 0x98, 0x52, 0xeb, 0x0f, 0xf8, 0x0a, 0xb8, 0x9c, 0xd0, 0x49, 0x72,
+ 0xf1, 0x2f, 0x17, 0x9f, 0x85, 0x4c, 0x22, 0xbc, 0x48, 0x36, 0x76, 0x25, 0x39, 0x87, 0x29, 0x1f, 0xfe, 0x27,
+ 0x76, 0x27, 0xe1, 0xf8, 0x36, 0x66, 0x7f, 0x24, 0xca, 0x46, 0x20, 0x83, 0x69, 0xd9, 0x24, 0xb5, 0xd2, 0xcb,
+ 0x1c, 0xcd, 0x3e, 0x68, 0xc4, 0xd9, 0xbd, 0xae, 0x84, 0x31, 0x1f, 0x7e, 0xb1, 0xe1, 0x84, 0xc0, 0x80, 0x59,
+ 0x61, 0xa2, 0x01, 0xa1, 0x97, 0xaf, 0x4a, 0xf8, 0x2a, 0x74, 0x29, 0xdd, 0x75, 0x8d, 0xec, 0xab, 0x89, 0xc9,
+ 0x7f, 0x14, 0x5b, 0xf6, 0xd5, 0x64, 0x5a, 0x02, 0xa1, 0x05, 0x9f, 0x76, 0x89, 0xd4, 0x6c, 0x6b, 0xff, 0x98,
+ 0x16, 0xd7, 0xcb, 0x01, 0xa2, 0x69, 0x12, 0xd2, 0x33, 0x95, 0x94, 0x4e, 0x99, 0x64, 0xec, 0xab, 0x71, 0x59,
+ 0x62, 0x4c, 0x5b, 0x19, 0x5e, 0x1b, 0x4e, 0x64, 0xd6, 0xcc, 0x5f, 0x94, 0xe2, 0x55, 0x6d, 0xd2, 0xd6, 0xec,
+ 0x7b, 0xbd, 0x67, 0xcf, 0x59, 0xc7, 0x71, 0x2d, 0x71, 0x6d, 0x14, 0x02, 0xd1, 0x2c, 0x85, 0x26, 0x2c, 0x60,
+ 0x4c, 0xcc, 0xcc, 0xf8, 0xbf, 0x2f, 0xa8, 0xad, 0x63, 0x2e, 0x37, 0xaa, 0x3d, 0x12, 0xa1, 0xc0, 0xa4, 0x76,
+ 0xb7, 0x15, 0x0b, 0x1a, 0xf3, 0xb9, 0x81, 0x9f, 0x13, 0x9a, 0x7c, 0xc3, 0x66, 0x0a, 0x6b, 0xe6, 0x17, 0x55,
+ 0x47, 0x5e, 0x11, 0x06, 0x2c, 0x22, 0xb9, 0xb9, 0xf4, 0xab, 0x85, 0xa6, 0xae, 0xcd, 0xff, 0x96, 0x56, 0x37,
+ 0x9d, 0xde, 0xfc, 0x64, 0x59, 0xfe, 0xcd, 0xaf, 0x6c, 0x65, 0x37, 0x5c, 0x4e, 0x1e, 0x56, 0xd3, 0xc4, 0x5b,
+ 0x3a, 0x39, 0xe7, 0xdf, 0x03, 0xee, 0x19, 0x3f, 0x13, 0x65, 0x23, 0x14, 0xec, 0x1f, 0xe8, 0x3b, 0x7c, 0x10,
+ 0x30, 0xf0, 0xf5, 0x1c, 0xd7, 0x02, 0x3b, 0x65, 0x50, 0x8f, 0xc6, 0x38, 0x24, 0x5a, 0x46, 0xef, 0x92, 0xa3,
+ 0x29, 0x19, 0xdb, 0x91, 0x1c, 0x1d, 0x28, 0xb0, 0x07, 0xbe, 0xb0, 0x33, 0x67, 0x22, 0xb6, 0x29, 0xba, 0x0e,
+ 0xce, 0x97, 0x66, 0x18, 0x36, 0xd3, 0xb6, 0x9d, 0xa7, 0x74, 0x7f, 0x8f, 0xf0, 0xad, 0x1f, 0x45, 0x42, 0xda,
+ 0x32, 0x6a, 0xbc, 0x89, 0xe7, 0xf1, 0x2b, 0x37, 0x68, 0x96, 0x74, 0x2e, 0x59, 0x22, 0x1a, 0x95, 0x7c, 0x93,
+ 0x88, 0xba, 0x00, 0xea, 0xfc, 0xb3, 0x05, 0x08, 0xba, 0x64, 0xc1, 0x6f, 0xf2, 0xe9, 0x01, 0xd3, 0xa2, 0x79,
+ 0x63, 0x5b, 0x80, 0xac, 0x62, 0x88, 0xb2, 0xe0, 0x6b, 0x0f, 0xda, 0xb9, 0x39, 0x43, 0x3e, 0x56, 0x9e, 0xfc,
+ 0xd4, 0xb7, 0x4f, 0x8e, 0x3c, 0x16, 0x9d, 0x41, 0xbc, 0x57, 0x41, 0x57, 0x9c, 0x92, 0x73, 0xb9, 0x78, 0x09,
+ 0xbf, 0x9d, 0x34, 0x76, 0xba, 0x0c, 0x5a, 0xe0, 0xc8, 0x63, 0x8a, 0x60, 0x3e, 0x76, 0x34, 0x78, 0xdc, 0x01
};
// context = seumateu_jomyeong
@@ -2348,46 +2835,215 @@ static const uint8_t CONTEXT_ARRAY[] = {
0x00, 0x00
};
-#endif // __PV_LANGUAGE_KOREAN__
+#endif // __PV_LANGUAGE_KOREAN__
+
+#if defined(__PV_LANGUAGE_DUTCH__)
+
+// wake-word = hallo computer
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0xf9, 0x03, 0x31, 0xe5, 0x3e, 0x12, 0xd3, 0xc6, 0xb8, 0xa1, 0xe3, 0x5a, 0x5b, 0x3c, 0x24, 0x38, 0xc9, 0x1c,
+ 0xb9, 0xb0, 0xea, 0x3d, 0xb7, 0x25, 0xaa, 0x8f, 0x54, 0x8f, 0xf0, 0xa3, 0x5d, 0xaf, 0xf1, 0x8d, 0x8c, 0x28,
+ 0xa0, 0xba, 0xa9, 0x35, 0x76, 0x7a, 0x5e, 0xe3, 0xb8, 0xb0, 0xc2, 0x5f, 0x1b, 0x0b, 0x33, 0xa1, 0x7e, 0x08,
+ 0x39, 0x89, 0x91, 0xe2, 0xef, 0xfb, 0xce, 0x58, 0xfc, 0xa3, 0xf1, 0x1d, 0x1d, 0x3b, 0x20, 0x02, 0xd3, 0x12,
+ 0x5d, 0xf5, 0xa6, 0x13, 0x0d, 0x3d, 0x26, 0x3b, 0xbb, 0xab, 0x8c, 0x21, 0x53, 0xad, 0x41, 0xc2, 0x81, 0xfd,
+ 0xe4, 0x04, 0x66, 0xa0, 0xe5, 0x21, 0x1f, 0x85, 0x16, 0x25, 0x61, 0x0a, 0xff, 0xe0, 0x57, 0x5e, 0x5f, 0xfd,
+ 0x71, 0x40, 0xa6, 0x26, 0xe2, 0x86, 0x2e, 0xa4, 0xf6, 0x80, 0x55, 0xc7, 0xa7, 0x6f, 0x62, 0x13, 0x74, 0x1b,
+ 0x81, 0x41, 0xb3, 0xc6, 0x0a, 0xdc, 0xc2, 0x6c, 0xc6, 0x6a, 0x63, 0xb4, 0xb0, 0xaf, 0x17, 0x38, 0x6c, 0xf1,
+ 0xd5, 0xac, 0xb2, 0xf5, 0xbc, 0x01, 0x98, 0xa1, 0x43, 0x02, 0xf8, 0x68, 0x7e, 0x41, 0x8b, 0xfc, 0xa3, 0x01,
+ 0x0b, 0x93, 0x55, 0xac, 0x52, 0x7c, 0x9b, 0x77, 0x06, 0x69, 0x76, 0xb5, 0x5a, 0x24, 0x93, 0xdf, 0x67, 0x8a,
+ 0xa2, 0x2e, 0x76, 0xef, 0x50, 0x99, 0x67, 0x96, 0x44, 0x9d, 0xbc, 0x9f, 0x84, 0x83, 0x7f, 0x4a, 0xf0, 0xe0,
+ 0xc4, 0x00, 0x7b, 0xcf, 0x17, 0x0e, 0x87, 0xf8, 0xac, 0xb5, 0x11, 0xdb, 0xfc, 0x9f, 0xb5, 0x5f, 0x65, 0x47,
+ 0x50, 0x0c, 0x6e, 0x74, 0x4b, 0xf8, 0x03, 0xec, 0x7e, 0x2a, 0x82, 0xd6, 0x92, 0xbc, 0x86, 0x62, 0xd9, 0xf5,
+ 0xc6, 0x2b, 0xab, 0x9f, 0xd2, 0xe2, 0x32, 0x74, 0x1d, 0xb6, 0xed, 0x40, 0x3d, 0xa0, 0xd5, 0x70, 0xc4, 0x58,
+ 0xcd, 0x78, 0xbd, 0xc5, 0x55, 0x56, 0x08, 0x44, 0x20, 0x88, 0xd9, 0x4d, 0x24, 0xbc, 0x60, 0x7a, 0xf2, 0x67,
+ 0xaa, 0xa9, 0x3b, 0xe3, 0x49, 0xbd, 0x3a, 0xed, 0xcf, 0xdd, 0xf6, 0x23, 0x87, 0x11, 0x0d, 0xc4, 0xc1, 0x19,
+ 0x41, 0x9d, 0xd5, 0xb0, 0xc9, 0xa7, 0xd5, 0x0f, 0x56, 0x6e, 0xb7, 0x66, 0x16, 0x0a, 0x1d, 0x38, 0xd0, 0x36,
+ 0xbb, 0xbc, 0xcb, 0xfd, 0x7b, 0xab, 0x8e, 0x71, 0x9e, 0xac, 0x7f, 0x3b, 0x08, 0x26, 0xa2, 0xce, 0xf9, 0x90,
+ 0x61, 0xef, 0x6a, 0x93, 0x15, 0x4e, 0x34, 0xb6, 0x8d, 0x92, 0x79, 0x7d, 0xa8, 0xfa, 0x51, 0x6b, 0x8d, 0xbe,
+ 0xd5, 0x8d, 0x33, 0x3c, 0xe0, 0x17, 0xb6, 0x46, 0xbf, 0x31, 0x8c, 0x9b, 0x39, 0x05, 0x19, 0xc7, 0xf6, 0x7f,
+ 0xd6, 0xf8, 0x0b, 0x89, 0x66, 0xf7, 0x28, 0x2c, 0x3a, 0x0c, 0x06, 0x02, 0x45, 0x91, 0x5a, 0x56, 0xd4, 0x98,
+ 0x81, 0x73, 0x14, 0xa3, 0x39, 0x9b, 0xdb, 0xba, 0xc4, 0x96, 0x68, 0xc3, 0x50, 0x00, 0xbf, 0x37, 0x94, 0x46,
+ 0xd6, 0x07, 0x20, 0x3e, 0xa8, 0x85, 0xac, 0xd9, 0x41, 0x5a, 0x96, 0xee, 0x6d, 0x56, 0xe1, 0xac, 0x87, 0x97,
+ 0x82, 0xc5, 0xf4, 0xee, 0x9e, 0x25, 0x31, 0x92, 0xa5, 0x93, 0x21, 0x64, 0x8f, 0xe9, 0x58, 0x12, 0xfc, 0xe8,
+ 0xdb, 0x15, 0xd6, 0x2b, 0x9a, 0xc7, 0x59, 0xb7, 0xd8, 0x36, 0x99, 0x79, 0x99, 0xd7, 0x72, 0x8c, 0x74, 0x25,
+ 0xcf, 0xce, 0xd4, 0xee, 0x5e, 0xf0, 0x5c, 0x2f, 0x5a, 0x9b, 0x70, 0xd7, 0xac, 0x5d, 0x71, 0xb7, 0xb5, 0x7f,
+ 0xf5, 0x7b, 0x45, 0x94, 0x49, 0x86, 0xcc, 0xb7, 0xa7, 0x66, 0xf2, 0x4b, 0x6f, 0x93, 0xbf, 0x7e, 0xfd, 0x71,
+ 0x47, 0xc9, 0x46, 0x00, 0x97, 0x45, 0x2f, 0x9d, 0x87, 0x71, 0xfb, 0xcd, 0x45, 0x53, 0x57, 0x46, 0xcc, 0xb8,
+ 0x1e, 0xfc, 0x9c, 0xe6, 0x18, 0x93, 0xea, 0x2e, 0x55, 0x0a, 0x0d, 0x7b, 0xe3, 0x21, 0x3e, 0x04, 0x15, 0x6e,
+ 0x0f, 0xe0, 0xab, 0xe5, 0x0d, 0x07, 0xb8, 0x19, 0x12, 0xd1, 0x46, 0x4d, 0x6c, 0x0d, 0xb3, 0x46, 0x28, 0xbf,
+ 0xf1, 0x9c, 0x6a, 0x2b, 0xa0, 0x2a, 0xc0, 0xad, 0x5f, 0x8a, 0x0a, 0xfd, 0x55, 0x48, 0xda, 0x69, 0xae, 0xb0,
+ 0x38, 0x8f, 0x4f, 0xfb, 0x74, 0xfe, 0x74, 0xf7, 0xb3, 0x57, 0xaa, 0x48, 0x62, 0x53, 0x2b, 0x28, 0xb5, 0x1b,
+ 0xa1, 0xe2, 0x07, 0x26, 0xf1, 0x9f, 0x75, 0xe3, 0x04, 0xe3, 0xef, 0x9f, 0x40, 0x7b, 0x18, 0xe2, 0xb4, 0x2e,
+ 0x08, 0x20, 0x6f, 0x10, 0x97, 0xb5, 0x34, 0x95, 0xdd, 0x53, 0xbf, 0xbe, 0x0a, 0x1b, 0xd3, 0x52, 0x20, 0x5a,
+ 0x85, 0x6a, 0xbd, 0x72, 0xb9, 0x53, 0xd3, 0x08
+};
+
+// context = simple_context_nl
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x6c, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x84, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x20, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x65, 0x65, 0x66, 0x20, 0x6d, 0x65, 0x20, 0x65, 0x65, 0x6e, 0x20, 0x24,
+ 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73,
+ 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f, 0x73, 0x22,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x22, 0x00,
+ 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00,
+ 0x17, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2c, 0x00,
+ 0x00, 0x00, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x00, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x00, 0x64,
+ 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x00, 0x65, 0x65, 0x6e, 0x00, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f,
+ 0x73, 0x00, 0x67, 0x65, 0x65, 0x66, 0x00, 0x6d, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x20, 0x00,
+ 0x00, 0x00, 0x03, 0x14, 0x05, 0x04, 0x27, 0x04, 0x23, 0x1d, 0x04, 0x26, 0x15, 0x05, 0x23, 0x14, 0x15, 0x16,
+ 0x25, 0x1b, 0x08, 0x10, 0x09, 0x14, 0x21, 0x0f, 0x04, 0x12, 0x15, 0x29, 0x08, 0x09, 0x0f, 0x25, 0x05, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
+ 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
+ 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68,
+ 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_DUTCH__
+
+#if defined(__PV_LANGUAGE_POLISH__)
+
+// wake-word = cześć komputer
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x70, 0x6a, 0x9e, 0x88, 0xb8, 0x82, 0x7c, 0x87, 0xa7, 0x6e, 0x67, 0x28, 0x38, 0x37, 0x8e, 0xbb, 0x21, 0x69,
+ 0x6e, 0xb1, 0xef, 0xde, 0xf3, 0xbd, 0x1b, 0xd1, 0x9f, 0xbf, 0x9d, 0x8a, 0x8f, 0x8a, 0x16, 0x95, 0x35, 0x33,
+ 0xc6, 0xc4, 0x2a, 0x4a, 0x27, 0x2e, 0xd0, 0x53, 0x0a, 0x8c, 0xf3, 0x91, 0x16, 0x64, 0xb6, 0xff, 0x73, 0x57,
+ 0x3d, 0x4d, 0x82, 0x84, 0x6d, 0x28, 0x6f, 0x9e, 0x51, 0x9b, 0xb3, 0x73, 0x26, 0xea, 0x43, 0x5c, 0xbd, 0xc5,
+ 0xa5, 0xbb, 0x47, 0xe8, 0x6f, 0xcb, 0xb1, 0x9e, 0x92, 0x7c, 0x8b, 0x9b, 0x76, 0x0d, 0xd9, 0x12, 0x25, 0x66,
+ 0xd7, 0xdd, 0x20, 0x6b, 0xcf, 0x4a, 0x62, 0x9b, 0xc1, 0xcc, 0x24, 0xf7, 0x70, 0x61, 0xa8, 0xce, 0xdc, 0x77,
+ 0x14, 0x71, 0xbc, 0xd4, 0x1b, 0x52, 0xf6, 0x04, 0x73, 0xd6, 0x71, 0x1c, 0xed, 0x11, 0x6e, 0x98, 0xf2, 0x3b,
+ 0xa1, 0x5e, 0x00, 0x92, 0x99, 0x27, 0xed, 0xe9, 0xd8, 0xf0, 0xe4, 0x89, 0x65, 0x27, 0x1b, 0x31, 0x66, 0xca,
+ 0x2e, 0x39, 0x36, 0xc6, 0xe8, 0x89, 0x06, 0x0f, 0xac, 0xb6, 0x5c, 0x9a, 0xdc, 0x70, 0x1e, 0x06, 0x6c, 0x06,
+ 0x51, 0x35, 0xcd, 0x76, 0x7e, 0x3d, 0xc5, 0x5b, 0x03, 0x49, 0xa8, 0xf6, 0xd5, 0x39, 0xcf, 0x01, 0x19, 0xde,
+ 0x86, 0x05, 0x42, 0x9e, 0x85, 0xa6, 0x6a, 0xa6, 0x08, 0x12, 0x30, 0xa5, 0x6c, 0xb9, 0x99, 0xa9, 0x18, 0xdb,
+ 0xc6, 0xb1, 0x51, 0x65, 0xc1, 0xaf, 0xe8, 0xaf, 0x1e, 0x45, 0x4f, 0x39, 0x60, 0x13, 0xc5, 0xea, 0x79, 0x39,
+ 0x4f, 0x2d, 0xa3, 0xfd, 0x63, 0x3a, 0x64, 0xe0, 0xa0, 0xb7, 0xc3, 0xa1, 0xc4, 0x98, 0xed, 0x43, 0xc4, 0xc8,
+ 0x2b, 0x2d, 0x0d, 0x6d, 0xd1, 0xd3, 0xbe, 0x91, 0x86, 0x53, 0xdf, 0x1a, 0x75, 0x04, 0xeb, 0x79, 0xb7, 0x0a,
+ 0x06, 0x05, 0x6e, 0x81, 0xd4, 0xac, 0xa5, 0x43, 0xcb, 0x11, 0x26, 0x3f, 0x90, 0x9f, 0x6a, 0x49, 0x17, 0x41,
+ 0xef, 0x35, 0x3a, 0x35, 0xf1, 0xaa, 0xe3, 0xc1, 0x82, 0xb6, 0xdb, 0xab, 0xd9, 0x1e, 0xc4, 0xbb, 0xbf, 0xd2,
+ 0xb6, 0x28, 0xb6, 0xcf, 0x35, 0x03, 0x20, 0xfd, 0xca, 0x5c, 0xe3, 0xa0, 0x28, 0xce, 0xa4, 0x8e, 0xcc, 0xb8,
+ 0x1a, 0x91, 0x87, 0x4e, 0x0e, 0xf8, 0x2f, 0x5b, 0x30, 0x8b, 0x79, 0x05, 0x9f, 0x4a, 0x9a, 0xc9, 0xfe, 0xa0,
+ 0x2e, 0xac, 0xa3, 0x52, 0xa3, 0x2c, 0x5f, 0xe6, 0xf5, 0xe4, 0x12, 0xcc, 0xed, 0x35, 0x2e, 0x28, 0x01, 0x56,
+ 0x84, 0x25, 0x96, 0x11, 0x68, 0x8c, 0x75, 0x5c, 0xb4, 0x83, 0x24, 0x23, 0x5f, 0x79, 0x69, 0xd7, 0x3b, 0x80,
+ 0x4c, 0xa5, 0x8b, 0x0b, 0x07, 0x26, 0x38, 0x73, 0x76, 0x17, 0x35, 0x5c, 0x0b, 0x67, 0x64, 0xcc, 0xec, 0xb1,
+ 0x8a, 0x63, 0x64, 0x9e, 0x66, 0xca, 0x3a, 0x17, 0x02, 0xae, 0xb4, 0x57, 0x24, 0x05, 0x83, 0xc7, 0xe2, 0x88,
+ 0xda, 0x36, 0x06, 0x13, 0xe6, 0xc1, 0x29, 0x53, 0xf3, 0xdc, 0x3d, 0x23, 0xa5, 0xc1, 0x41, 0x74, 0x57, 0xe2,
+ 0x4f, 0x9d, 0x01, 0x6d, 0x7d, 0x8c, 0x2d, 0x88, 0x09, 0x5e, 0x7d, 0x3e, 0x5d, 0x38, 0x17, 0xaf, 0x4e, 0x01,
+ 0x6c, 0x2d, 0x7b, 0x50, 0x17, 0x9a, 0x5e, 0xa8, 0x4a, 0x96, 0xa7, 0x84, 0x2a, 0x1c, 0x68, 0xa3, 0x3f, 0x83,
+ 0x1b, 0xb9, 0x2a, 0x02, 0x9f, 0x00, 0x5d, 0x1a, 0x0b, 0x14, 0x72, 0xcf, 0xe0, 0xf3, 0xe2, 0xdc, 0x98, 0xd3,
+ 0x44, 0x3a, 0x54, 0x07, 0xc1, 0x6e, 0x13, 0xdc, 0xad, 0x36, 0x03, 0x9a, 0x97, 0x28, 0x9c, 0x76, 0x55, 0xf0,
+ 0xc4, 0x41, 0xea, 0x6e, 0x05, 0x1b, 0xf5, 0x14, 0x92, 0xde, 0x31, 0x80, 0xec, 0x46, 0x44, 0x58, 0x5a, 0x9b,
+ 0x2f, 0x75, 0xcf, 0x32, 0xd7, 0x59, 0x62, 0x5b, 0x5a, 0x72, 0x1b, 0xa2, 0x5b, 0x5a, 0x6c, 0x3a, 0xe3, 0xe0,
+ 0x85, 0x58, 0x75, 0xb1, 0x3f, 0xb4, 0xde, 0xf9, 0xd7, 0x12, 0x69, 0xed, 0x4f, 0xcb, 0x31, 0x86, 0xa3, 0x5a,
+ 0x4d, 0xfe, 0x89, 0xd2, 0x93, 0x38, 0x68, 0x8c, 0x39, 0x33, 0x7d, 0x34, 0xe5, 0xb8, 0x2e, 0x08, 0x3a, 0x46,
+ 0xd9, 0x97, 0x66, 0xbc, 0x68, 0x49, 0x58, 0x03, 0xda, 0xaf, 0xf0, 0x38, 0x57, 0xe7, 0x8f, 0xc0, 0x9b, 0x6c,
+ 0x7b, 0xc3, 0x34, 0x48, 0x4d, 0x30, 0xdf, 0x53, 0x42, 0x74, 0xe1, 0x2c, 0xca, 0xe7, 0xc2, 0xb0, 0x57, 0xb6,
+ 0xd7, 0x76, 0x4c, 0x24, 0x7d, 0x28, 0xfc, 0xae, 0xd4, 0x1b, 0xff, 0xf1, 0x1a, 0xed, 0x9f, 0x6b, 0x04, 0xbf
+};
+
+// context = simple_context_pl
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x70, 0x6c, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79,
+ 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x61, 0x6a, 0x20, 0x6d, 0x69, 0x20, 0x24, 0x76, 0x72,
+ 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
+ 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x74, 0x72, 0x75, 0x73, 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x61, 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x22, 0x00,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00,
+ 0x14, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x62, 0x61,
+ 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x00, 0x64, 0x61, 0x6a, 0x00, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x00,
+ 0x6d, 0x69, 0x00, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79, 0x00, 0x74, 0x72, 0x75, 0x73,
+ 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00,
+ 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02, 0x01, 0x0d, 0x01, 0x0d, 0x1c, 0x16, 0x20, 0x03, 0x01,
+ 0x09, 0x0c, 0x01, 0x0b, 0x08, 0x0d, 0x01, 0x0c, 0x08, 0x10, 0x0e, 0x0f, 0x01, 0x1f, 0x21, 0x1c, 0x0d, 0x20,
+ 0x11, 0x0f, 0x15, 0x10, 0x0a, 0x01, 0x07, 0x0a, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70,
+ 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_POLISH__
#if defined(__PV_LANGUAGE_PORTUGUESE__)
// wake-word = olá computador
static const uint8_t KEYWORD_ARRAY[] = {
- 0xe5, 0x2b, 0xd9, 0x42, 0x17, 0x72, 0xbb, 0xf0, 0x38, 0x86, 0x9a, 0xd2, 0xfd, 0x6d, 0x37, 0x35, 0x21, 0xe8,
- 0x38, 0xcd, 0xf2, 0xd4, 0x95, 0x62, 0x4f, 0x44, 0x0e, 0xcc, 0x42, 0x95, 0xd5, 0x89, 0x04, 0x32, 0x59, 0x25,
- 0x09, 0x42, 0x87, 0x11, 0x6e, 0x45, 0xbf, 0x05, 0xf3, 0x41, 0x49, 0x24, 0xf6, 0xb5, 0x1f, 0x23, 0xd2, 0x4b,
- 0xad, 0x3f, 0xb3, 0x4a, 0xd7, 0x02, 0xb5, 0x35, 0x08, 0xb2, 0x64, 0x80, 0x0f, 0x6a, 0x8f, 0xa0, 0xa4, 0x99,
- 0x75, 0xcf, 0xcd, 0xcd, 0xda, 0x2d, 0x44, 0x40, 0x59, 0x36, 0x7b, 0x31, 0xc2, 0xee, 0xab, 0x61, 0x34, 0x1a,
- 0x5b, 0xbb, 0x12, 0xa1, 0x30, 0xcd, 0x8f, 0xb5, 0xb9, 0x8f, 0x16, 0x71, 0xa7, 0x24, 0x15, 0x70, 0x7e, 0xb5,
- 0x76, 0x55, 0xfd, 0x63, 0xf0, 0x48, 0x16, 0xe7, 0x9c, 0x73, 0xcd, 0xe6, 0xab, 0xf2, 0x6f, 0x06, 0xc5, 0x9c,
- 0x4a, 0x68, 0x75, 0x7b, 0xe5, 0x45, 0x47, 0xd2, 0x1a, 0x0a, 0x41, 0x09, 0xd7, 0x37, 0x3a, 0xd4, 0x17, 0x02,
- 0xe6, 0xe2, 0xa5, 0x0f, 0x3c, 0x57, 0x7d, 0xa8, 0xb7, 0x8d, 0xd0, 0x0e, 0x29, 0xda, 0x90, 0xda, 0x56, 0x1f,
- 0x7d, 0xb3, 0xa4, 0x7d, 0x72, 0x88, 0xe0, 0x54, 0xad, 0x58, 0xf8, 0xc0, 0xbd, 0xef, 0xb4, 0xc9, 0x9b, 0x38,
- 0x57, 0x2c, 0xdf, 0x4e, 0x09, 0x25, 0xb6, 0x5f, 0x00, 0x93, 0x8a, 0x58, 0xc3, 0xcf, 0x82, 0x7c, 0x18, 0xf1,
- 0x47, 0x68, 0xc9, 0xc4, 0xcd, 0x7a, 0xed, 0x7d, 0x4f, 0x32, 0x7c, 0x59, 0x37, 0xac, 0x54, 0x18, 0x72, 0x57,
- 0x4d, 0x1b, 0x8f, 0xdb, 0x5a, 0xfa, 0xda, 0xa1, 0x04, 0x3e, 0xea, 0x59, 0x95, 0xc1, 0x65, 0xee, 0xc3, 0xf3,
- 0x96, 0x80, 0x68, 0x0f, 0x6b, 0x94, 0x51, 0x2e, 0xfe, 0x55, 0x94, 0x1f, 0x1f, 0x5b, 0x71, 0x21, 0xba, 0xa1,
- 0x41, 0x21, 0xdb, 0x32, 0x26, 0xb6, 0x43, 0xe6, 0x96, 0x2c, 0xd7, 0x00, 0x35, 0x37, 0xfc, 0x44, 0x02, 0xb2,
- 0xa9, 0x5d, 0x82, 0x0b, 0xb4, 0xcd, 0xc1, 0x3f, 0x9d, 0x95, 0x25, 0x5c, 0x04, 0x3f, 0x6f, 0x47, 0x21, 0x21,
- 0xe8, 0xf8, 0x29, 0x34, 0x3d, 0x91, 0xbc, 0x20, 0x18, 0x21, 0x6d, 0x93, 0xac, 0x20, 0xe3, 0xc4, 0x25, 0xeb,
- 0x09, 0x97, 0xa9, 0x71, 0xa3, 0x89, 0xc7, 0xfc, 0x38, 0x30, 0x15, 0x47, 0x18, 0x30, 0x5f, 0xd2, 0x87, 0x89,
- 0x0a, 0x61, 0x84, 0x04, 0x23, 0x38, 0x26, 0xb0, 0x93, 0xa8, 0x74, 0x1e, 0x73, 0x38, 0xcb, 0x31, 0x88, 0xe4,
- 0x6d, 0x67, 0x46, 0x5e, 0x17, 0x04, 0x74, 0x8f, 0xa8, 0xf9, 0x8a, 0x5b, 0x9b, 0x36, 0x64, 0x80, 0xc5, 0xb2,
- 0x7f, 0xb3, 0xfa, 0xc9, 0xdb, 0x67, 0xc9, 0xa5, 0xdc, 0xf2, 0xc6, 0x86, 0xb9, 0x83, 0xb3, 0xb0, 0x18, 0x6e,
- 0xb9, 0xe8, 0x95, 0x49, 0x8c, 0x1f, 0x67, 0xc7, 0xb4, 0x95, 0x44, 0x65, 0xd7, 0xde, 0xf0, 0x4f, 0xce, 0xe2,
- 0x76, 0xf2, 0xc6, 0x7c, 0xc9, 0x3b, 0x29, 0x04, 0x73, 0x70, 0x4b, 0x91, 0x8e, 0x12, 0x61, 0x54, 0xf8, 0xe8,
- 0x29, 0x2f, 0xd1, 0xac, 0xc1, 0xe4, 0xa1, 0x17, 0x34, 0x8d, 0x48, 0xdf, 0xa3, 0xb6, 0xfb, 0xf5, 0x98, 0xba,
- 0xa1, 0x17, 0x74, 0xbe, 0x29, 0x50, 0xc2, 0xe3, 0xc9, 0x6f, 0xfe, 0xf0, 0xc1, 0x7d, 0x4d, 0x10, 0x66, 0x6c,
- 0x4d, 0x83, 0x99, 0x5c, 0x8d, 0xa9, 0x8c, 0xeb, 0xbd, 0xf4, 0x19, 0x33, 0xc9, 0xfb, 0xb1, 0x74, 0xc2, 0xa9,
- 0x75, 0x8f, 0x45, 0x0a, 0x4a, 0x39, 0xed, 0xaa, 0xac, 0x39, 0xc9, 0xef, 0x57, 0xe1, 0x8e, 0xf4, 0xe0, 0x01,
- 0xde, 0x84, 0x7d, 0x54, 0x39, 0x43, 0x8e, 0x27, 0x5e, 0x56, 0x4a, 0xab, 0x46, 0xc9, 0xbc, 0x3a, 0x06, 0xf7,
- 0x65, 0x74, 0x29, 0x2c, 0x4c, 0xac, 0xc7, 0xad, 0x66, 0x56, 0xbb, 0xa8, 0xcc, 0x2b, 0xaa, 0x87, 0x48, 0x93,
- 0x7f, 0x3d, 0xdd, 0x9b, 0x38, 0xe4, 0xb0, 0x22, 0x43, 0xa8, 0x59, 0x31, 0x63, 0xb0, 0xb1, 0x01, 0xe0, 0xa4,
- 0x20, 0x14, 0xe9, 0x1f, 0x59, 0x5f, 0x4a, 0x87, 0xfa, 0x81, 0x8f, 0x82, 0xd5, 0x5d, 0x96, 0xf5, 0xe7, 0x9d,
- 0x38, 0x49, 0x80, 0x65, 0x51, 0x09, 0x59, 0x0e, 0x71, 0x5e, 0x77, 0xce, 0xd7, 0xa7, 0x8a, 0x19, 0x94, 0x5f,
- 0xdc, 0x73, 0x9f, 0x31, 0xed, 0xf2, 0x29, 0x7c, 0xc6, 0xf2, 0xb4, 0x59, 0xf5, 0x16, 0x80, 0xef, 0x3d, 0x14,
- 0xd6, 0xa9, 0x03, 0x62, 0xee, 0x91, 0x4b, 0x84, 0x0d, 0xe0
+ 0x4b, 0x18, 0x62, 0x21, 0xfb, 0xc5, 0x95, 0x04, 0xad, 0xd7, 0xc2, 0x2b, 0x76, 0x8e, 0x69, 0x6f, 0x15, 0x34,
+ 0x46, 0x41, 0xbf, 0x7f, 0x94, 0xf9, 0x26, 0xf3, 0x23, 0xf4, 0xb5, 0x93, 0x53, 0xe6, 0x22, 0x1d, 0x8c, 0x40,
+ 0x07, 0xb2, 0x1f, 0xcd, 0xad, 0xe3, 0xa9, 0xc1, 0x09, 0x8d, 0x4e, 0x65, 0xd0, 0x21, 0x6f, 0x30, 0x7b, 0xd8,
+ 0xaa, 0xe8, 0xce, 0xdf, 0xcc, 0x11, 0xe5, 0x62, 0xf0, 0xb1, 0x01, 0x94, 0xd7, 0x78, 0xe5, 0x5f, 0x31, 0x62,
+ 0xe2, 0x89, 0xbf, 0x1d, 0x41, 0x82, 0xdb, 0xc5, 0x9c, 0x3c, 0x0a, 0x15, 0x90, 0x64, 0xb4, 0x3c, 0x0b, 0xa4,
+ 0x42, 0xc4, 0x43, 0x66, 0x06, 0x8f, 0x9d, 0xc7, 0xb3, 0x4f, 0xb2, 0x2b, 0x1e, 0x64, 0xe0, 0xd7, 0xc6, 0x00,
+ 0x94, 0x96, 0xa4, 0x3b, 0xdf, 0x52, 0xfe, 0x3b, 0xb1, 0x87, 0x38, 0x29, 0x96, 0x20, 0x0d, 0xd9, 0x29, 0x8f,
+ 0xe2, 0x15, 0x0d, 0x78, 0xbf, 0xbe, 0x5c, 0x00, 0x44, 0x92, 0x03, 0xcf, 0x02, 0x67, 0xb1, 0xe5, 0x49, 0x81,
+ 0x26, 0x04, 0x47, 0x43, 0xc2, 0xd2, 0x5d, 0xd7, 0xd2, 0x48, 0x9e, 0xcb, 0x26, 0x11, 0xfc, 0x5c, 0x2b, 0x26,
+ 0x57, 0x4a, 0x9a, 0xa4, 0xe9, 0x8c, 0xa2, 0x93, 0x02, 0x2a, 0x5b, 0x07, 0x0b, 0x10, 0xce, 0x5e, 0x6d, 0x07,
+ 0xb1, 0xc3, 0x4e, 0x2f, 0xad, 0xc4, 0x34, 0x2b, 0xb0, 0xe3, 0x50, 0x14, 0xb6, 0x0e, 0x08, 0x79, 0x00, 0x06,
+ 0xed, 0xa7, 0x98, 0x2c, 0xc4, 0x85, 0x08, 0x99, 0x21, 0x10, 0x7c, 0xe6, 0x0a, 0x92, 0xe4, 0x35, 0xa7, 0x45,
+ 0xb5, 0x56, 0x55, 0x67, 0x58, 0x68, 0xb1, 0xc9, 0x9f, 0xb1, 0x72, 0x5d, 0xcb, 0xcc, 0x76, 0x26, 0xf8, 0x52,
+ 0xc9, 0x16, 0xa8, 0x45, 0x69, 0xfb, 0xe6, 0xef, 0xbb, 0x34, 0x01, 0x59, 0x08, 0xbf, 0xf5, 0xcf, 0xf7, 0x83,
+ 0x3f, 0x1e, 0x13, 0x4f, 0x20, 0x2f, 0x40, 0x89, 0x65, 0x81, 0x5c, 0x87, 0x39, 0xb4, 0x10, 0x07, 0xb0, 0x87,
+ 0xc8, 0x55, 0x85, 0x8c, 0xbc, 0x41, 0xdd, 0x18, 0x76, 0xec, 0x70, 0x4e, 0x61, 0xaf, 0x0e, 0x28, 0x55, 0x66,
+ 0x18, 0x4e, 0x8c, 0x4d, 0x00, 0x82, 0x62, 0xb8, 0x22, 0x66, 0x69, 0xa8, 0x4b, 0xfa, 0x4e, 0x92, 0x9c, 0x76,
+ 0xfc, 0x83, 0x48, 0x0d, 0x26, 0x0d, 0xf7, 0xf3, 0xde, 0x49, 0x4e, 0xb4, 0xf9, 0x9d, 0xfb, 0xab, 0x62, 0xe2,
+ 0x2b, 0xa1, 0x25, 0xeb, 0x1e, 0x24, 0x24, 0x5c, 0xec, 0x64, 0x6d, 0xe5, 0xe6, 0xc6, 0xa1, 0xbe, 0x64, 0x71,
+ 0x7b, 0xa8, 0x5d, 0x01, 0xb1, 0x30, 0x22, 0x86, 0x34, 0xc5, 0x12, 0x37, 0xa3, 0x7c, 0x1d, 0x0a, 0x7c, 0xb8,
+ 0xea, 0x23, 0xe8, 0xfc, 0x4b, 0xa2, 0xed, 0x70, 0x3b, 0x14, 0xfb, 0x95, 0xb2, 0xec, 0x57, 0x12, 0x9d, 0xb9,
+ 0x34, 0x41, 0xa0, 0x48, 0x01, 0x38, 0xc7, 0x74, 0xd9, 0x42, 0x69, 0x25, 0xe9, 0xb6, 0x35, 0x49, 0x9c, 0xf5,
+ 0x89, 0x96, 0xd2, 0x94, 0x27, 0xbd, 0x36, 0x32, 0x57, 0x03, 0x12, 0x67, 0x22, 0x8e, 0xe3, 0xc7, 0x89, 0x07,
+ 0x5e, 0xfd, 0x19, 0xe9, 0x07, 0x28, 0x7b, 0xbd, 0x09, 0x7d, 0x32, 0xbc, 0x22, 0xce, 0x50, 0x96, 0x9d, 0x0f,
+ 0x4f, 0xd2, 0x5a, 0xe9, 0x92, 0x77, 0xbb, 0xc8, 0xd0, 0x04, 0x22, 0x3e, 0x8b, 0x95, 0x95, 0x40, 0xc8, 0x7e,
+ 0xc2, 0x2b, 0x91, 0x50, 0x47, 0x21, 0x49, 0xe9, 0x78, 0xcb, 0xef, 0xc7, 0xdd, 0x34, 0x10, 0xcb, 0x27, 0xac,
+ 0x66, 0xdb, 0x80, 0x44, 0xfa, 0xc2, 0x45, 0xd0, 0x1f, 0x7b, 0xc3, 0xe8, 0x2c, 0x97, 0x71, 0xac, 0x52, 0x1c,
+ 0x78, 0x73, 0x2f, 0xa7, 0x99, 0xc5, 0xd4, 0xa0, 0x42, 0xb5, 0x71, 0x1a, 0x50, 0x2f, 0x1d, 0xbe, 0x6e, 0xc0,
+ 0x5e, 0x8e, 0x5d, 0xc8, 0xd1, 0x92, 0x87, 0xa6, 0xe5, 0x4f, 0xdf, 0x06, 0xf8, 0xc3, 0x1d, 0x42, 0xd6, 0xd8,
+ 0x71, 0x54, 0x9d, 0x48, 0xb7, 0x76, 0x81, 0x35, 0x67, 0x4b, 0x13, 0x76, 0xcb, 0x62, 0x34, 0xe7, 0x30, 0x8a,
+ 0xe9, 0x40, 0x5a, 0x0f, 0xf7, 0xf8, 0xb5, 0x13, 0x8e, 0x85, 0x87, 0x54, 0xf5, 0xdd, 0x87, 0x87, 0x07, 0xd8,
+ 0xc4, 0xa5, 0xa2, 0x29, 0xb5, 0x0d, 0xb4, 0x5c, 0xd3, 0x43, 0xd6, 0xbb, 0x0b, 0x1c, 0xb5, 0xa2, 0x57, 0x65,
+ 0xa4, 0xe6, 0x30, 0x43, 0xb2, 0x31, 0x4c, 0x5c, 0xdf, 0xb4, 0x4e, 0x24, 0xe3, 0x19, 0x83, 0x03, 0x1b, 0xca,
+ 0x0b, 0xa8, 0x56, 0xc1, 0xc5, 0xc7, 0xde, 0xc2, 0x34, 0x3d
};
// context = luz_inteligente
@@ -2663,49 +3319,49 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_RUSSIAN__)
-// wake-word = privet kompyuter
+// wake-word = привет компьютер
static const uint8_t KEYWORD_ARRAY[] = {
- 0x37, 0x85, 0x26, 0x81, 0xea, 0x15, 0xb1, 0x70, 0x5e, 0x97, 0xbb, 0x61, 0x4d, 0xdd, 0x40, 0x32, 0xab, 0x59,
- 0x49, 0xc5, 0xe9, 0x0c, 0xef, 0xf1, 0xe5, 0x2a, 0x52, 0x27, 0x17, 0xcb, 0xb7, 0x1d, 0x56, 0x0c, 0xe2, 0x68,
- 0xf0, 0x6c, 0x5d, 0x52, 0x8e, 0x0e, 0xc6, 0x13, 0xa3, 0xab, 0xc2, 0xf9, 0x80, 0x8b, 0xb3, 0x32, 0xd2, 0x81,
- 0x93, 0xf2, 0x4f, 0xa7, 0x4f, 0x5d, 0x17, 0xd1, 0xcc, 0xf2, 0xa9, 0x1e, 0xdf, 0x98, 0x6e, 0xaf, 0x4c, 0xf3,
- 0x18, 0x10, 0xc6, 0x86, 0xc8, 0x28, 0xd2, 0x95, 0x12, 0xb6, 0x16, 0xf1, 0xe0, 0x9c, 0xff, 0xaf, 0x6c, 0xdf,
- 0x6d, 0x90, 0xd9, 0xc4, 0xec, 0xab, 0xa8, 0x68, 0x1b, 0x18, 0xa1, 0x0e, 0x58, 0x81, 0x3f, 0x8e, 0x8d, 0x71,
- 0xca, 0x2d, 0x8e, 0xef, 0x66, 0x75, 0xde, 0xb4, 0x34, 0x6d, 0x16, 0x90, 0x7b, 0xfb, 0x4d, 0x10, 0xa6, 0x89,
- 0xe8, 0x99, 0x99, 0x12, 0x10, 0xa8, 0x42, 0xb7, 0x23, 0xad, 0x3e, 0xa6, 0x5f, 0xb3, 0x6d, 0xc7, 0x0a, 0xf1,
- 0x8d, 0x2b, 0x59, 0x5b, 0xcb, 0xaf, 0x19, 0xbf, 0x7e, 0x7c, 0xd8, 0x4f, 0xad, 0x36, 0x95, 0xb2, 0x07, 0x4c,
- 0x87, 0xb5, 0x53, 0x64, 0x95, 0x11, 0x3d, 0xad, 0x22, 0x33, 0xf3, 0x89, 0x71, 0xb6, 0x9f, 0x9c, 0x68, 0xe8,
- 0xf4, 0x1a, 0x9f, 0xfe, 0x4e, 0x46, 0xf7, 0xc7, 0x39, 0x32, 0x6c, 0x94, 0x6e, 0xfd, 0x18, 0x92, 0x93, 0xcf,
- 0xdb, 0xdf, 0xbf, 0xcc, 0x55, 0x18, 0x64, 0x0a, 0x12, 0xf8, 0x35, 0x38, 0xbf, 0xa7, 0xd2, 0x08, 0x6c, 0x98,
- 0xc6, 0x51, 0x0f, 0xd5, 0xbc, 0x14, 0xf6, 0xac, 0x27, 0xd2, 0xef, 0xc8, 0xfa, 0x7c, 0x09, 0x4d, 0x61, 0xfa,
- 0xd2, 0xc0, 0xaa, 0x7d, 0xa4, 0x07, 0x4a, 0xa0, 0x9f, 0xe4, 0xfa, 0x5a, 0x15, 0x0d, 0x17, 0xd6, 0x72, 0x1d,
- 0x7a, 0x4b, 0x47, 0x1e, 0x8a, 0xaa, 0xfc, 0x81, 0x71, 0x4f, 0xdf, 0x84, 0x39, 0x0d, 0x22, 0x46, 0x67, 0x4f,
- 0x49, 0x68, 0x92, 0xfe, 0x39, 0x8d, 0xb2, 0x00, 0xf1, 0x7b, 0xae, 0x17, 0x41, 0x5f, 0x4f, 0x24, 0xba, 0x66,
- 0x74, 0x94, 0x40, 0x61, 0xa3, 0x94, 0x1c, 0x5a, 0xa5, 0xb9, 0x27, 0xa9, 0x8e, 0x3f, 0xc0, 0x25, 0xc6, 0xb3,
- 0x06, 0x60, 0x07, 0x16, 0x32, 0xb6, 0xe2, 0x1a, 0x83, 0x6a, 0x76, 0xd4, 0x03, 0xd9, 0x91, 0x1c, 0x89, 0x6e,
- 0xa5, 0xa4, 0x51, 0xf2, 0x0f, 0xfd, 0x0d, 0x69, 0xb9, 0x42, 0x92, 0x80, 0x97, 0x1f, 0x78, 0xfe, 0x18, 0xb0,
- 0x50, 0xbf, 0xd6, 0xdc, 0x1f, 0xc0, 0x62, 0x08, 0x3c, 0x30, 0x5d, 0xf7, 0x77, 0x53, 0x4f, 0xb7, 0xc3, 0xb5,
- 0xac, 0xa0, 0x6d, 0x2f, 0xf3, 0x2b, 0xc9, 0x30, 0xcc, 0x0e, 0xbd, 0xfe, 0xd1, 0x00, 0xb7, 0x80, 0x22, 0x11,
- 0x5b, 0x1e, 0x69, 0x05, 0xa1, 0xba, 0xc3, 0xd5, 0x03, 0xc6, 0x02, 0xd6, 0xd4, 0xee, 0x92, 0x1a, 0xfb, 0x3c,
- 0xfa, 0xd1, 0x85, 0xc5, 0x51, 0x8f, 0x4e, 0xc2, 0x19, 0x78, 0xbc, 0x99, 0x63, 0xee, 0x54, 0xee, 0x97, 0x09,
- 0x2b, 0x40, 0x12, 0x60, 0x8a, 0x32, 0x73, 0xa2, 0xf9, 0x2a, 0x5c, 0xb9, 0x7f, 0x4a, 0x37, 0x8c, 0x4e, 0x8b,
- 0xeb, 0x7a, 0x62, 0x12, 0x36, 0x4c, 0x4f, 0xba, 0xbb, 0xd8, 0x80, 0x01, 0x97, 0x18, 0x36, 0x98, 0x2b, 0xcf,
- 0xc3, 0xae, 0xb7, 0x61, 0x01, 0x07, 0x1a, 0x62, 0xe4, 0x80, 0x54, 0xf3, 0x10, 0x55, 0x7c, 0x76, 0x16, 0x47,
- 0x9f, 0xd1, 0x79, 0xe0, 0x6e, 0x85, 0xaa, 0x47, 0xab, 0xe6, 0x5c, 0xaf, 0x35, 0xb7, 0xf1, 0xe9, 0x0c, 0xb0,
- 0xea, 0xd7, 0x4c, 0x7f, 0x59, 0x64, 0x3f, 0xe5, 0xc4, 0x60, 0x65, 0xbd, 0xf9, 0x7a, 0xd5, 0x60, 0x00, 0x91,
- 0xab, 0x4e, 0x88, 0x9b, 0x83, 0xc5, 0x53, 0x66, 0xcc, 0x46, 0x49, 0xf2, 0xca, 0xf0, 0x85, 0x84, 0x4c, 0xcf,
- 0xbe, 0x08, 0xc0, 0xfc, 0xf4, 0x16, 0x94, 0x5c, 0x89, 0x55, 0xc7, 0x50, 0x31, 0x16, 0x43, 0x64, 0xcf, 0x59,
- 0x7d, 0x8b, 0x3d, 0x0d, 0x28, 0x89, 0x6b, 0x2c, 0xf2, 0x46, 0x76, 0x47, 0x0c, 0xbb, 0xfe, 0xfb, 0x88, 0x6e,
- 0xf6, 0x6a, 0x1a, 0x09, 0x42, 0x01, 0xa1, 0x3c, 0x65, 0xe0, 0xad, 0xe3, 0xbd, 0x9e, 0xa8, 0x06, 0x7b, 0x96,
- 0x98, 0xed, 0xc9, 0x91, 0xa4, 0x76, 0x9a, 0x02, 0x60, 0x5b, 0x9c, 0xc6, 0xd8, 0xab, 0xd9, 0x30, 0xc0, 0xcc,
- 0x4e, 0x76, 0xc7, 0x6c, 0x43, 0x11, 0x44, 0x94, 0xe4, 0xa3, 0x07, 0x46, 0x72, 0xe2, 0x37, 0xf9, 0x72, 0x70,
- 0x9b, 0x0a, 0x2b, 0xe2, 0xa6, 0x7e, 0xe4, 0x13, 0x07, 0x16, 0x4e, 0x8e, 0x1a, 0x94, 0xd6, 0x13, 0x9d, 0x53,
- 0xb6, 0xca, 0x50, 0x25, 0x20, 0xbc, 0x4f, 0x60, 0xa7, 0x38, 0x08, 0x8a, 0x40, 0xa6, 0xb8, 0x57, 0xa9, 0x68,
- 0x21, 0xb6, 0x48, 0xbe, 0x07, 0xab, 0x4f, 0xb9, 0xde, 0xc6, 0x4c, 0x8b, 0x71, 0xa7, 0xc1, 0xd1, 0x06, 0x3c,
- 0x3a, 0xe2, 0xa9, 0x68, 0x7f, 0x4f, 0x25, 0xa4, 0x2a, 0x07, 0xfa, 0x0c, 0xbf, 0x2e, 0xbe, 0x2f, 0xb2, 0x74,
- 0x57, 0xa6, 0x75, 0x34, 0x81, 0x91, 0xd1, 0x7a, 0x1c, 0x23, 0xe0, 0x55, 0xc1, 0xbf, 0x14, 0x1f, 0x57, 0x17,
- 0x44, 0x2a, 0x46, 0x3e, 0x44, 0xbc, 0xca, 0x95, 0x63, 0xfb, 0x6e, 0x87, 0xcb, 0xee, 0x24, 0x4c, 0x3a, 0xbc,
- 0x82, 0xd8, 0xc2, 0x4c
+ 0x9f, 0xc5, 0x7c, 0x5d, 0x85, 0x85, 0x5a, 0xb1, 0x37, 0x3c, 0xa4, 0xaa, 0x68, 0x10, 0x92, 0x2f, 0x72, 0x1a,
+ 0xab, 0x1f, 0x48, 0xd0, 0x5d, 0x0c, 0x8d, 0x4d, 0xf7, 0x6d, 0x33, 0xb7, 0x01, 0x33, 0x1a, 0x91, 0xa0, 0x8b,
+ 0x26, 0x38, 0x1c, 0x0b, 0x35, 0xa3, 0xcf, 0xe1, 0x46, 0x18, 0xf1, 0xce, 0xbf, 0x18, 0x08, 0xb5, 0x08, 0x28,
+ 0x24, 0xc7, 0x9d, 0xe3, 0xec, 0x2c, 0xdf, 0xae, 0x20, 0xd8, 0xaf, 0x2a, 0x44, 0x5c, 0x8a, 0x64, 0x10, 0x1d,
+ 0x4b, 0xd7, 0x03, 0x00, 0x8b, 0x6c, 0x1d, 0x54, 0xa1, 0xbc, 0xec, 0xba, 0xb7, 0x6a, 0x78, 0x11, 0xf6, 0xe5,
+ 0xb4, 0xb7, 0xcd, 0x36, 0xee, 0x85, 0x6d, 0x11, 0x37, 0x9f, 0xea, 0x73, 0xa0, 0xcd, 0x35, 0x31, 0xb8, 0x98,
+ 0xe7, 0x8e, 0xa5, 0x0e, 0x53, 0x4f, 0x6b, 0x98, 0xfd, 0x06, 0x1a, 0xf2, 0x3b, 0x1a, 0x22, 0x5c, 0x9f, 0xcd,
+ 0xa9, 0x96, 0x8f, 0x45, 0x87, 0x3b, 0x20, 0x1d, 0x70, 0x2d, 0xa3, 0x4c, 0x56, 0xad, 0x99, 0x41, 0xa5, 0x97,
+ 0xf4, 0x8f, 0xe8, 0x61, 0xa2, 0xe2, 0xb9, 0xa0, 0xd0, 0x00, 0xfd, 0xe8, 0xe8, 0x37, 0x38, 0x69, 0x82, 0x2f,
+ 0xee, 0x56, 0x07, 0x93, 0x4e, 0xfa, 0x7f, 0xf4, 0x2e, 0x02, 0xe1, 0x75, 0xf4, 0x4c, 0x3b, 0x68, 0xce, 0xb1,
+ 0x8c, 0x5a, 0xf1, 0x41, 0xca, 0x12, 0x50, 0xad, 0x6e, 0x49, 0x0f, 0x80, 0xb6, 0xf4, 0xe1, 0x4f, 0x00, 0x42,
+ 0x00, 0x46, 0x96, 0x82, 0x39, 0x4a, 0x9d, 0xa0, 0x14, 0x02, 0xac, 0x03, 0x7e, 0xb8, 0xd8, 0x31, 0xd4, 0x7e,
+ 0xfd, 0x84, 0x34, 0x8c, 0x69, 0x72, 0x78, 0x9b, 0x14, 0xae, 0xe0, 0xa0, 0x41, 0x43, 0xbc, 0x1c, 0xeb, 0x15,
+ 0xaf, 0xf3, 0x32, 0x37, 0xe1, 0x8b, 0x87, 0xdb, 0x08, 0xb7, 0x7c, 0xa1, 0xf5, 0x63, 0x1e, 0x05, 0x94, 0x1e,
+ 0xf2, 0xb8, 0x7b, 0x84, 0x44, 0x76, 0x19, 0x35, 0xdc, 0x3d, 0x97, 0x39, 0x20, 0x51, 0x45, 0x3a, 0x95, 0x91,
+ 0x2f, 0x02, 0x74, 0x57, 0x12, 0xef, 0xca, 0x11, 0xe4, 0xe2, 0x15, 0xbb, 0xb2, 0xd4, 0x4a, 0x4f, 0x2d, 0xa6,
+ 0x10, 0x50, 0x81, 0xa1, 0x1c, 0xd9, 0x07, 0x08, 0x38, 0xb4, 0xe5, 0xf4, 0xd1, 0x29, 0x75, 0xb1, 0x50, 0x94,
+ 0xe7, 0x15, 0x6d, 0x71, 0xff, 0x7c, 0xe5, 0xc6, 0xd5, 0xeb, 0xb1, 0x43, 0x44, 0xb9, 0x34, 0xb7, 0x21, 0x9f,
+ 0x9a, 0xc1, 0xbc, 0x1d, 0x1e, 0xb0, 0x12, 0x25, 0x0e, 0x22, 0x5c, 0x7a, 0xe1, 0x5c, 0x9f, 0x07, 0x2d, 0xaf,
+ 0x93, 0x07, 0x37, 0x53, 0x83, 0xf6, 0xb6, 0xb3, 0x9a, 0xce, 0xca, 0x1c, 0x40, 0x47, 0xf9, 0x29, 0x11, 0x07,
+ 0xaa, 0xd0, 0x91, 0x08, 0xd5, 0x31, 0xa1, 0x53, 0x71, 0x75, 0x74, 0x54, 0xa6, 0xfc, 0xe9, 0xc1, 0xca, 0x84,
+ 0x7c, 0x28, 0xb9, 0xb9, 0xa2, 0x4d, 0x34, 0xfb, 0xb1, 0x0b, 0xdd, 0x36, 0x71, 0xc5, 0x51, 0xaa, 0xa9, 0x8c,
+ 0xd8, 0xbf, 0x98, 0xe2, 0xea, 0x95, 0x79, 0x27, 0xcc, 0x91, 0xf8, 0x24, 0xb9, 0x04, 0x56, 0x05, 0x76, 0x78,
+ 0xf6, 0x9a, 0x31, 0x20, 0xed, 0x31, 0xc2, 0x58, 0x30, 0xc5, 0x6d, 0xec, 0x79, 0xe5, 0x6b, 0xc2, 0xd2, 0x16,
+ 0x1a, 0x47, 0x92, 0xdb, 0xe7, 0x74, 0x6a, 0xf0, 0x7c, 0x53, 0x73, 0x5f, 0x9b, 0x54, 0x62, 0x31, 0x6a, 0x25,
+ 0x1e, 0x4d, 0x5d, 0x97, 0xf5, 0xbc, 0xbd, 0x50, 0x9d, 0x5e, 0x81, 0x2a, 0xc4, 0xfd, 0x31, 0xd9, 0x23, 0x87,
+ 0x18, 0xc0, 0xa1, 0xa2, 0x0a, 0xe5, 0x1b, 0xf9, 0xce, 0xb5, 0x1a, 0x3d, 0xcd, 0xe8, 0xc6, 0xde, 0x23, 0x1d,
+ 0x7a, 0x08, 0x6e, 0x87, 0xaa, 0x1d, 0x3b, 0x25, 0x5d, 0x83, 0xbe, 0x2b, 0x59, 0x57, 0x89, 0xcd, 0xac, 0xa4,
+ 0x4c, 0xf4, 0x67, 0x3e, 0x0a, 0xf7, 0x1b, 0x28, 0x4f, 0x06, 0x3e, 0xe5, 0xb3, 0x48, 0x5a, 0xd7, 0x4f, 0x9f,
+ 0x90, 0x5b, 0x53, 0x1e, 0x75, 0xe3, 0x78, 0x0d, 0x25, 0xb8, 0xfe, 0x54, 0x15, 0xc5, 0xad, 0x72, 0xca, 0xb7,
+ 0x54, 0x39, 0xe5, 0x1b, 0x43, 0x9c, 0x72, 0x60, 0x96, 0xff, 0x8d, 0x7c, 0xb8, 0xdf, 0xe9, 0x34, 0x54, 0x3f,
+ 0x92, 0x68, 0x0e, 0xe1, 0xea, 0x1c, 0x4f, 0x11, 0x4b, 0xc0, 0x2b, 0xc7, 0x62, 0x75, 0xe4, 0xc2, 0xc5, 0x65,
+ 0xf2, 0xd2, 0xa4, 0x41, 0x93, 0xfb, 0x92, 0x14, 0x26, 0x9d, 0x0a, 0x71, 0xbe, 0x16, 0x19, 0x71, 0xd5, 0xda,
+ 0xf9, 0x27, 0x83, 0x06, 0x12, 0xeb, 0xeb, 0x9a, 0x18, 0x22, 0xc8, 0x88, 0x49, 0x9a, 0x3e, 0x51, 0xca, 0x1d,
+ 0xa2, 0x52, 0x85, 0xb9, 0xdc, 0x92, 0x8c, 0xf2, 0xbe, 0x53, 0x5f, 0x3b, 0x31, 0x39, 0x84, 0x71, 0x9a, 0x72,
+ 0xb6, 0xcf, 0xbf, 0x77, 0x04, 0xaa, 0x10, 0xc4, 0xa0, 0x31, 0xb9, 0x92, 0xd6, 0x97, 0x7c, 0xb8, 0x09, 0x5d,
+ 0xd5, 0x03, 0xad, 0x8a, 0x1b, 0x58, 0x61, 0x04, 0xbc, 0xdf, 0x6f, 0x70, 0x8f, 0xf0, 0xac, 0xe5, 0x7e, 0x22,
+ 0xb9, 0xf2, 0x21, 0x06, 0xd0, 0x48, 0x26, 0xcd, 0x01, 0x2b, 0x5b, 0xa7, 0x2c, 0x3a, 0xc9, 0x7f, 0x6c, 0xdd,
+ 0x05, 0x1a, 0x91, 0x5e, 0xa7, 0x3e, 0x53, 0x3d, 0x31, 0x86, 0xad, 0xaf, 0x4e, 0xd6, 0xfc, 0x22, 0x1d, 0xb1,
+ 0x05, 0x7a, 0x58, 0x05, 0x33, 0xdc, 0x3a, 0x58, 0x78, 0xcc, 0x4a, 0xbb, 0x9c, 0xb8, 0x35, 0x3d, 0xbf, 0x27,
+ 0x75, 0xfe, 0x3f, 0x5b
};
// context = simple_context_ru
@@ -2752,461 +3408,38 @@ static const uint8_t CONTEXT_ARRAY[] = {
#endif // __PV_LANGUAGE_RUSSIAN__
-#if defined(__PV_LANGUAGE_DUTCH__)
-
-// wake-word = hallo computer
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xbc, 0xb9, 0x24, 0xa6, 0xc0, 0x74, 0x10, 0x7f, 0xe4, 0x49, 0x9f, 0xe0, 0x69, 0x77, 0x3d, 0xd3, 0x7e, 0x20,
- 0x32, 0x30, 0x04, 0xa0, 0xe2, 0xdd, 0x5f, 0x2d, 0x08, 0x39, 0x70, 0x6e, 0xb4, 0xac, 0x48, 0xc2, 0x84, 0x95,
- 0xc2, 0xee, 0xab, 0x0b, 0xa4, 0x5c, 0x2d, 0x96, 0x53, 0x03, 0x00, 0xf3, 0x37, 0xb2, 0xd5, 0x8a, 0x2e, 0x47,
- 0xb4, 0x0b, 0x73, 0x8c, 0x80, 0x06, 0x95, 0xf6, 0xa3, 0xf2, 0x16, 0xde, 0x92, 0xcc, 0x45, 0x69, 0xd6, 0x8f,
- 0xc1, 0xd6, 0x4a, 0xa8, 0xaa, 0xb8, 0x80, 0x8f, 0xc2, 0xc5, 0x8a, 0x50, 0xfb, 0xa3, 0x70, 0xf2, 0x3e, 0xcf,
- 0x7a, 0xb4, 0x19, 0x20, 0xbd, 0xf7, 0xb6, 0xc6, 0x7c, 0xe1, 0xbb, 0xcd, 0x25, 0x63, 0x3b, 0x73, 0x65, 0x31,
- 0x92, 0x75, 0xf6, 0x30, 0xd2, 0x14, 0x9d, 0xc7, 0x58, 0x29, 0x4c, 0xdf, 0x71, 0x5b, 0x63, 0x3e, 0x22, 0x4e,
- 0x6b, 0x53, 0x18, 0x71, 0x9f, 0x79, 0xb5, 0x20, 0xa9, 0xba, 0x45, 0x00, 0xd0, 0xa0, 0xfd, 0x2a, 0x31, 0xa6,
- 0x84, 0x20, 0x18, 0xe9, 0x3d, 0x6b, 0x2e, 0x5c, 0xcd, 0xf8, 0x06, 0xed, 0x19, 0x86, 0x8f, 0x30, 0xd4, 0xf8,
- 0x78, 0xd4, 0x71, 0x6a, 0x05, 0x4b, 0xf2, 0x7c, 0xf5, 0x01, 0x12, 0x06, 0x71, 0x9f, 0xda, 0x25, 0x03, 0xb9,
- 0x7f, 0x23, 0xfb, 0x9c, 0x43, 0x31, 0x6f, 0x79, 0xac, 0xc2, 0xdf, 0xf5, 0x0e, 0xc0, 0xed, 0x1c, 0xa7, 0x49,
- 0xbc, 0x62, 0x0f, 0x55, 0x26, 0x5e, 0x83, 0x86, 0xc8, 0xd6, 0xf7, 0xde, 0x22, 0x81, 0xe4, 0x9d, 0xd5, 0xde,
- 0x57, 0xbb, 0x02, 0x3f, 0x4c, 0x6e, 0xe4, 0x3f, 0x19, 0x5f, 0x3a, 0x00, 0x56, 0x85, 0x4f, 0x43, 0xa6, 0x28,
- 0x16, 0x9d, 0x06, 0xeb, 0xb3, 0x44, 0x99, 0xa0, 0x85, 0x31, 0xd8, 0x9d, 0x04, 0x6a, 0x54, 0x13, 0x07, 0x78,
- 0x60, 0x96, 0x49, 0x45, 0x27, 0xc7, 0x39, 0x86, 0x81, 0x12, 0xf2, 0xa6, 0x9a, 0x85, 0x5a, 0x32, 0xf5, 0x2e,
- 0xe8, 0xdd, 0x48, 0x89, 0x0b, 0x33, 0xf6, 0x07, 0xb3, 0xa8, 0x01, 0xf0, 0xbd, 0x8c, 0x1a, 0x8c, 0x91, 0x80,
- 0xeb, 0x46, 0xc1, 0xcd, 0x07, 0x64, 0x74, 0xc6, 0x88, 0xa4, 0xcb, 0xe5, 0xe2, 0x7c, 0x94, 0xa2, 0x9f, 0xfe,
- 0xe4, 0x22, 0xef, 0x2f, 0x0f, 0x40, 0xd8, 0x54, 0xca, 0xe7, 0xdb, 0xcf, 0xcd, 0x1d, 0x65, 0xbf, 0xd4, 0x69,
- 0xcf, 0x49, 0x12, 0x41, 0x29, 0x4e, 0x2e, 0xce, 0x44, 0xeb, 0xb8, 0x65, 0x4d, 0x6f, 0xdc, 0x4b, 0xd8, 0x22,
- 0x01, 0xb3, 0x52, 0xbe, 0xe8, 0xef, 0xa0, 0x8b, 0xf2, 0x49, 0x74, 0x17, 0x00, 0x63, 0x15, 0x23, 0xdb, 0xf5,
- 0xd4, 0xc0, 0x6f, 0x9f, 0x12, 0xeb, 0x8e, 0xf2, 0x64, 0x69, 0x2b, 0xe4, 0xe7, 0x0d, 0x08, 0xad, 0xc9, 0x3b,
- 0x0d, 0xbb, 0x1e, 0x4b, 0x52, 0xb6, 0x5c, 0xa0, 0x9b, 0x4b, 0x2e, 0x69, 0x3d, 0xab, 0x42, 0x87, 0x23, 0xfe,
- 0x3b, 0x8a, 0x9a, 0xf5, 0x17, 0x82, 0xb4, 0x23, 0x24, 0x00, 0x00, 0x44, 0xba, 0xd2, 0xb9, 0x53, 0x79, 0x36,
- 0xf0, 0x72, 0xb5, 0x05, 0x74, 0x1d, 0xfa, 0x37, 0x14, 0x00, 0xd9, 0x29, 0x7b, 0x51, 0x72, 0x44, 0xd9, 0xcc,
- 0x58, 0xde, 0xaa, 0x81, 0x92, 0x9c, 0x50, 0xd4, 0x13, 0x39, 0x7b, 0x2d, 0x0a, 0xbb, 0xc0, 0x21, 0x5a, 0xce,
- 0x0b, 0xe9, 0x67, 0x3e, 0xf4, 0x41, 0xd0, 0x0f, 0x46, 0x99, 0x22, 0x62, 0x37, 0xc3, 0xa1, 0xbf, 0x8c, 0x28,
- 0xa6, 0xc5, 0x86, 0xc3, 0x1d, 0x2f, 0xd2, 0xaf, 0x60, 0x94, 0x28, 0x5e, 0xc3, 0x6f, 0xf0, 0xe0, 0x1a, 0x55,
- 0xb4, 0x04, 0x82, 0xa3, 0xf8, 0xbd, 0x20, 0x58, 0xdb, 0x91, 0x6b, 0x09, 0xc5, 0x28, 0x39, 0xe3, 0x83, 0x2e,
- 0xcf, 0xe7, 0x74, 0xc8, 0x1d, 0x55, 0x69, 0x5e, 0x81, 0x43, 0xe8, 0x69, 0xc3, 0x22, 0xe4, 0x8c, 0x7a, 0xd7,
- 0x92, 0x22, 0xf4, 0x9a, 0x4d, 0x99, 0xbd, 0x21, 0x70, 0xda, 0xec, 0x70, 0x4d, 0x3b, 0xca, 0x13, 0x92, 0xe1,
- 0xfd, 0xf3, 0xdb, 0x1d, 0x43, 0x7f, 0x30, 0xc7, 0xe7, 0x92, 0x7d, 0xbd, 0xa9, 0x19, 0x57, 0x43, 0xe3, 0x79,
- 0xcd, 0xb5, 0xe0, 0xc3, 0x27, 0x44, 0xff, 0xff, 0x91, 0x44, 0xef, 0x77, 0x0a, 0x89, 0x4f, 0xd2, 0xad, 0xfc,
- 0x5e, 0xeb, 0xb3, 0xe6, 0x12, 0x57, 0xdd, 0xd6, 0xe6, 0x51, 0xd2, 0x60, 0x8a, 0x44, 0x89, 0xdf, 0x64, 0xda,
- 0x11, 0x88, 0x95, 0x7c, 0x9d, 0x0d, 0x4f, 0x25, 0x77, 0x2e, 0xae, 0x8e, 0xa8, 0xf0, 0xa1, 0x54, 0xe4, 0x88,
- 0x86, 0x74, 0x75, 0x1f, 0x90, 0xd6, 0x0b, 0xfd
-};
-
-// context = simple_context_nl
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x6c, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x84, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x20, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x65, 0x65, 0x66, 0x20, 0x6d, 0x65, 0x20, 0x65, 0x65, 0x6e, 0x20, 0x24,
- 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73,
- 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f, 0x73, 0x22,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x22, 0x00,
- 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00,
- 0x17, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2c, 0x00,
- 0x00, 0x00, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x00, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x00, 0x64,
- 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x00, 0x65, 0x65, 0x6e, 0x00, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f,
- 0x73, 0x00, 0x67, 0x65, 0x65, 0x66, 0x00, 0x6d, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00,
- 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
- 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x20, 0x00,
- 0x00, 0x00, 0x03, 0x14, 0x05, 0x04, 0x27, 0x04, 0x23, 0x1d, 0x04, 0x26, 0x15, 0x05, 0x23, 0x14, 0x15, 0x16,
- 0x25, 0x1b, 0x08, 0x10, 0x09, 0x14, 0x21, 0x0f, 0x04, 0x12, 0x15, 0x29, 0x08, 0x09, 0x0f, 0x25, 0x05, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
- 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
- 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68,
- 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_DUTCH__
-
-#if defined(__PV_LANGUAGE_HINDI__)
-
-// wake-word = namaste putra
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xfc, 0x11, 0xf1, 0xd0, 0x6c, 0x2a, 0xd0, 0x4f, 0xf5, 0x04, 0xa7, 0xe2, 0x01, 0x65, 0xe4, 0xdd, 0x03, 0x86,
- 0x54, 0xb1, 0x7b, 0x49, 0x3a, 0x79, 0x4d, 0xe7, 0x1c, 0x64, 0x0e, 0x0b, 0xa7, 0xb7, 0xe4, 0x8b, 0x7f, 0x04,
- 0x97, 0xa7, 0x63, 0x79, 0xaa, 0x85, 0x1a, 0x08, 0x71, 0x80, 0x58, 0x43, 0x57, 0x25, 0xe6, 0x7c, 0x96, 0x59,
- 0xb7, 0x66, 0xd6, 0x11, 0x77, 0x90, 0x90, 0xd9, 0xf8, 0x24, 0xfa, 0x78, 0xeb, 0xdb, 0xba, 0xdc, 0xe5, 0x99,
- 0xd5, 0xca, 0x95, 0x07, 0xfa, 0xd3, 0xe0, 0xe8, 0x83, 0x82, 0x62, 0xb0, 0x6c, 0x62, 0x35, 0xec, 0x9a, 0x3b,
- 0x62, 0x04, 0x30, 0xc0, 0x02, 0x72, 0x54, 0xb8, 0xed, 0x14, 0x1a, 0x58, 0xd0, 0xf9, 0x5a, 0x57, 0x07, 0x31,
- 0x15, 0xe6, 0xc1, 0x7c, 0x62, 0xa2, 0xa8, 0x7d, 0xcc, 0x1b, 0xf0, 0x25, 0xd8, 0x39, 0x38, 0x54, 0xbc, 0xfd,
- 0x2a, 0x68, 0xac, 0x7e, 0x46, 0x57, 0xc5, 0x7f, 0x7f, 0x29, 0x2c, 0x4b, 0x99, 0x7a, 0x6d, 0xa7, 0x07, 0xdc,
- 0xeb, 0x6b, 0x87, 0x90, 0x7f, 0x17, 0xab, 0x2a, 0x9e, 0x5c, 0x73, 0x07, 0xfe, 0xc8, 0x48, 0xa8, 0xc0, 0x07,
- 0x58, 0x10, 0xd8, 0x60, 0xcc, 0xa4, 0x4a, 0x2a, 0x5d, 0x0d, 0x6a, 0xcd, 0xe1, 0xc9, 0x65, 0x48, 0xce, 0x13,
- 0x27, 0x7d, 0xed, 0x4f, 0x8f, 0x1a, 0x9e, 0x21, 0x83, 0xb7, 0x39, 0x0c, 0x5f, 0xcf, 0xb5, 0x75, 0xc6, 0x1d,
- 0x61, 0x18, 0x4a, 0xe2, 0x3e, 0x6d, 0xa0, 0x56, 0xe8, 0x19, 0xe2, 0xad, 0xcf, 0x4b, 0x80, 0x25, 0x71, 0x76,
- 0xd1, 0x58, 0x62, 0x0b, 0x35, 0x6f, 0x6b, 0xaf, 0xfd, 0x26, 0x62, 0xde, 0xfd, 0x5e, 0x3a, 0xac, 0x08, 0x9d,
- 0xde, 0x24, 0x83, 0x89, 0xef, 0x79, 0xb8, 0xdb, 0x5d, 0x72, 0x4f, 0x50, 0x0b, 0x34, 0xe3, 0xe2, 0x8e, 0x34,
- 0xe3, 0x5e, 0x11, 0xbd, 0x09, 0x04, 0x21, 0x89, 0xf6, 0xc9, 0x0c, 0x38, 0xae, 0xee, 0xa7, 0x00, 0x5e, 0xf3,
- 0x89, 0x57, 0x5b, 0xe6, 0x08, 0x5d, 0x15, 0x0b, 0x4d, 0x00, 0x6d, 0x82, 0x04, 0xa6, 0xd4, 0x9a, 0x82, 0x35,
- 0xff, 0xc4, 0x68, 0xff, 0xcf, 0x28, 0x8a, 0xb0, 0x0e, 0x92, 0x05, 0xad, 0x06, 0x36, 0x95, 0x50, 0xd0, 0xdc,
- 0x94, 0x8c, 0xc6, 0xc2, 0x88, 0x96, 0x96, 0x8a, 0x46, 0x58, 0x72, 0xb0, 0x91, 0x51, 0x9b, 0x3d, 0x04, 0x5c,
- 0x96, 0x73, 0x6f, 0x01, 0x2f, 0xcd, 0x50, 0xa2, 0x64, 0x48, 0xa5, 0xd9, 0x48, 0x58, 0x06, 0x94, 0xf3, 0xf7,
- 0xc0, 0xb7, 0x5e, 0x53, 0xe7, 0x7c, 0x00, 0x1d, 0x24, 0x1f, 0x03, 0x93, 0xbf, 0x1d, 0xc1, 0xf0, 0x18, 0xd9,
- 0x8c, 0x6e, 0xb4, 0x93, 0xa2, 0x4f, 0x31, 0xfa, 0x58, 0x2d, 0xe9, 0x0b, 0xf7, 0x61, 0xa8, 0x10, 0x99, 0xea,
- 0x85, 0x0b, 0x9d, 0xb1, 0xce, 0xd0, 0x7f, 0x78, 0x22, 0xdf, 0xb5, 0x03, 0x9b, 0xd8, 0xa1, 0x6c, 0xad, 0xdd,
- 0xf6, 0x06, 0x75, 0x2d, 0x20, 0x9a, 0x92, 0x6a, 0xc6, 0x57, 0x17, 0x78, 0x43, 0x26, 0xea, 0x19, 0xfd, 0x16,
- 0xdf, 0xb4, 0x4e, 0xf6, 0x86, 0x0a, 0x9f, 0xf8, 0x78, 0x3d, 0x49, 0x43, 0xc8, 0xdf, 0xd7, 0xd1, 0x42, 0xb6,
- 0x49, 0x5c, 0x6a, 0x07, 0x05, 0xf5, 0x7b, 0x18, 0xb9, 0x5e, 0xda, 0xe9, 0xcf, 0x45, 0x02, 0xfa, 0x2b, 0x68,
- 0x49, 0x21, 0x10, 0xd3, 0x70, 0x11, 0x64, 0xd4, 0xda, 0xcc, 0x83, 0xdc, 0xa3, 0x71, 0xbb, 0xf2, 0x48, 0x91,
- 0xac, 0xd4, 0x50, 0xf2, 0x63, 0x88, 0x66, 0x04, 0xc8, 0xcf, 0x13, 0xf4, 0x39, 0x80, 0x0b, 0xa6, 0xf5, 0xd9,
- 0x0a, 0x8c, 0xb7, 0x9c, 0xcc, 0xc8, 0x13, 0xb4, 0x9a, 0x74, 0x93, 0xeb, 0x2b, 0x94, 0xad, 0x94, 0xc9, 0xcf,
- 0xab, 0xad, 0x78, 0xad, 0x44, 0xf1, 0x85, 0x6f, 0xe7, 0x5b, 0x7e, 0x83, 0x74, 0xb6, 0xdb, 0xaf, 0x79, 0xe5,
- 0xb3, 0xab, 0x4c, 0x78, 0xbd, 0xb6, 0x1c, 0x7c, 0xfe, 0x3e, 0x8b, 0x31, 0xe4, 0x28, 0x3f, 0x16, 0xbb, 0xf3,
- 0xe2, 0x90, 0x15, 0xfe, 0x79, 0x2d, 0x56, 0xc5, 0xc0, 0xbf, 0x43, 0x33, 0x05, 0xe3, 0x94, 0x31, 0x9f, 0x2e,
- 0x1a, 0x40, 0xa7, 0x80, 0xb1, 0xbe, 0x69, 0x60, 0xea, 0xc3, 0x59, 0xc3, 0x52, 0x46, 0x8c, 0xc7, 0x9e, 0xa6,
- 0x59, 0x3d, 0x13, 0x33, 0x6f, 0xda, 0xbf, 0x30, 0xf9, 0xb5, 0x3c, 0xb5, 0xb9, 0x9a, 0x59, 0x53, 0xe6, 0x7e,
- 0x6d, 0x7f, 0xd5, 0xb4, 0xeb, 0xe3, 0x47, 0x5c, 0x4d, 0xfe, 0x04, 0xac, 0xc2, 0xa3, 0x4d, 0xd7, 0x75, 0xb9,
- 0x95, 0x79, 0x90, 0xf1, 0x55, 0xb0, 0xc3, 0x4d, 0xed, 0x44, 0x22, 0x33, 0x0f, 0x5c, 0x75, 0xf8, 0x91, 0x29,
- 0x83, 0x46, 0x68, 0x84, 0x82, 0x87, 0x59, 0x3e, 0x86, 0x27, 0xf3, 0x7d, 0xe5, 0x4c, 0x9e, 0x43, 0xc4, 0x9d,
- 0xc0, 0x9e, 0xc5, 0x20, 0xc4, 0x7c, 0x33, 0x4b, 0x1c, 0x53, 0xbc, 0x68, 0x83, 0xea, 0x33, 0xac, 0xb9, 0x78,
- 0x32, 0xb3, 0x45, 0x41, 0x63, 0x5e, 0x7e, 0x16, 0x75, 0x0b, 0xb2, 0x22, 0x4d, 0x92
-};
-
-// context = simple_context_hi
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x68, 0x69, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0,
- 0xa4, 0xbe, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70,
- 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4,
- 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x20, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95, 0x20,
- 0x24, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x20, 0xe0, 0xa4, 0xa6,
- 0xe0, 0xa5, 0x8b, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0,
- 0xa4, 0xb8, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0,
- 0xa4, 0xac, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5,
- 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87,
- 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
- 0x3b, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95,
- 0x00, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xa6, 0xe0,
- 0xa5, 0x8b, 0x00, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0, 0xa4, 0xbe, 0xe0, 0xa4, 0xb8,
- 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x00, 0xe0,
- 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0xe0, 0xa4, 0xb8,
- 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0, 0xa4, 0xac,
- 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
- 0x20, 0x00, 0x00, 0x00, 0x0e, 0x17, 0x17, 0x0e, 0x19, 0x05, 0x0a, 0x1d, 0x1e, 0x15, 0x05, 0x24, 0x05, 0x1a,
- 0x2a, 0x16, 0x0e, 0x21, 0x04, 0x24, 0x07, 0x04, 0x21, 0x14, 0x24, 0x28, 0x21, 0x03, 0x06, 0x0e, 0x21, 0x14,
- 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
- 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_HINDI__
-
-#if defined(__PV_LANGUAGE_ARABIC__)
-
-// wake-word = coffee
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xd5, 0x50, 0x75, 0xd2, 0x3e, 0x9a, 0x61, 0xe9, 0xf5, 0xd8, 0xba, 0xd9, 0x44, 0x1b, 0xf9, 0x81, 0xc8, 0xe3,
- 0x17, 0x2a, 0x3f, 0xdc, 0xd2, 0x0c, 0x3c, 0x13, 0x4d, 0x91, 0xbd, 0xc3, 0x7d, 0x86, 0x88, 0xa4, 0x80, 0xab,
- 0x44, 0x0f, 0x3e, 0xa6, 0xc5, 0x06, 0x1e, 0xd8, 0x10, 0x3a, 0xc1, 0x30, 0x86, 0xba, 0xaf, 0xa7, 0xb9, 0x01,
- 0xfa, 0x8b, 0x69, 0x3a, 0xe4, 0xa8, 0xc7, 0x9a, 0xc8, 0xf4, 0x54, 0xf9, 0x4b, 0x5b, 0xed, 0x6e, 0xdf, 0xda,
- 0xfc, 0x48, 0x92, 0xda, 0xb6, 0x8d, 0x4b, 0xfd, 0x19, 0x18, 0x22, 0x0c, 0x20, 0xa5, 0x59, 0xaf, 0x12, 0x9c,
- 0x1a, 0x96, 0xb2, 0xf6, 0x2a, 0x62, 0x81, 0x53, 0x46, 0x6c, 0x73, 0x85, 0x37, 0x9e, 0xf4, 0xce, 0x35, 0xcb,
- 0xec, 0x39, 0x54, 0x4d, 0x04, 0x5f, 0xed, 0x83, 0xd1, 0xba, 0xf7, 0x3a, 0x74, 0x21, 0xb9, 0x21, 0xdc, 0xc1,
- 0x24, 0x7c, 0x90, 0xf7, 0x00, 0x4f, 0x0b, 0x68, 0x7f, 0x23, 0xea, 0x14, 0x75, 0xb1, 0x32, 0xb7, 0xcc, 0xfb,
- 0x10, 0xc1, 0xd1, 0xf2, 0x33, 0x8e, 0xd3, 0x58, 0x38, 0xad, 0x77, 0xe7, 0xc4, 0x4f, 0x68, 0x9c, 0x58, 0x82,
- 0x01, 0x8b, 0x96, 0x4c, 0xfd, 0x54, 0xbc, 0xae, 0xe4, 0x24, 0xa9, 0x50, 0xe9, 0xc3, 0xb4, 0x40, 0x53, 0x0f,
- 0x4d, 0xa5, 0x67, 0x3e, 0xfa, 0x13, 0xf2, 0x82, 0xa4, 0x01, 0x11, 0xa9, 0x8d, 0xa0, 0xa6, 0x05, 0x47, 0x46,
- 0x56, 0x40, 0x0b, 0x96, 0x08, 0x6c, 0x57, 0xf0, 0xd5, 0x0e, 0xdc, 0x13, 0x67, 0xae, 0xfb, 0xbf, 0xea, 0x01,
- 0x36, 0x61, 0x74, 0x0b, 0x75, 0x80, 0x3f, 0x48, 0xbe, 0x96, 0x62, 0x9a, 0xc6, 0xde, 0x36, 0x3a, 0xe4, 0x13,
- 0x41, 0xb2, 0xbf, 0xdd, 0x87, 0x13, 0x2d, 0x8d, 0x7f, 0xad, 0x9a, 0x2e, 0xef, 0x18, 0x33, 0x06, 0xca, 0xdf,
- 0x23, 0x30, 0x43, 0x4f, 0x89, 0x53, 0x19, 0x55, 0xce, 0x32, 0x0a, 0xef, 0x0c, 0x50, 0xab, 0xa8, 0x9a, 0x8c,
- 0x8f, 0xee, 0x72, 0x92, 0x9d, 0x37, 0xca, 0xdb, 0x23, 0x8f, 0x6e, 0x67, 0x74, 0xba, 0x2c, 0x67, 0x98, 0xe2,
- 0x26, 0x55, 0xf9, 0xb9, 0xf2, 0x77, 0xf2, 0xfb, 0x4d, 0xbd, 0x5b, 0xf1, 0x97, 0xe3, 0x79, 0x0d, 0xbc, 0x88,
- 0xbf, 0xca, 0xfd, 0xdf, 0x08, 0xe4, 0xa1, 0x12, 0x3c, 0xa4, 0xc0, 0x84, 0x55, 0xb2, 0xcc, 0x0a, 0xb5, 0xfb,
- 0xde, 0x9d, 0xd5, 0x44, 0x80, 0x6a, 0x8c, 0x4e, 0xc9, 0x38, 0x2c, 0x88, 0x2f, 0x4f, 0xa0, 0xab, 0x24, 0x5b,
- 0xa1, 0x1c, 0x0a, 0x41, 0x59, 0xc9, 0x17, 0x45, 0xa4, 0x54, 0x77, 0xcd, 0xef, 0x39, 0x29, 0x55, 0xb1, 0x23,
- 0x05, 0xda, 0x1b, 0x0d, 0xcd, 0x3e, 0x2a, 0xbf, 0x2f, 0xb6, 0x44, 0x8a, 0x50, 0x08, 0xd6, 0x76, 0x67, 0x49,
- 0xbf, 0xfc, 0xff, 0xdd, 0x8c, 0xc8, 0x20, 0x1c, 0x87, 0x2b, 0x06, 0x9e, 0x62, 0x56, 0xf5, 0x01, 0x43, 0x4e,
- 0x46, 0x53, 0x2c, 0x31, 0x2a, 0x63, 0x57, 0xc6, 0x7f, 0x3b, 0xf5, 0x12, 0x59, 0x1b, 0xe7, 0x4b, 0x1e, 0x18,
- 0xe5, 0xb5, 0x0f, 0xcc, 0x47, 0x79, 0x85, 0x50, 0xb6, 0x0e, 0xab, 0xd7, 0xc0, 0x3d, 0xb1, 0x83, 0x8f, 0xed,
- 0x7f, 0xe5, 0xd9, 0x56, 0xc0, 0x3a, 0xd2, 0x4b, 0x34, 0x6e, 0x0f, 0x5a, 0x69, 0xab, 0x8b, 0x8a, 0xcd, 0xa8,
- 0x4d, 0x75, 0x4d, 0x04, 0x56, 0x01, 0x89, 0x74, 0xe6, 0x9e, 0x30, 0xbc, 0xa1, 0x65, 0x10, 0x34, 0x8e, 0x88,
- 0x16, 0x89, 0xd4, 0x54, 0xf9, 0x16, 0x8b, 0xb5, 0x45, 0xea, 0xc1, 0x2f, 0xd7, 0x1b, 0x0f, 0xe9, 0x98, 0x3b,
- 0xc3, 0xf5, 0x37, 0xb8, 0x7f, 0x2e, 0x1b, 0x25, 0x5e, 0x24, 0x35, 0xab, 0x02, 0x72, 0x7c, 0xba, 0xf7, 0xdf,
- 0x8b, 0xab, 0x45, 0xce, 0x75, 0x57, 0xfc, 0x9e, 0x04, 0x03, 0x51, 0x76, 0x1d, 0x68, 0x4b, 0x59, 0x18, 0x93,
- 0x49, 0xb8, 0x41, 0x00, 0xa6, 0x5b, 0x43, 0x79, 0x07, 0xfe, 0x9b, 0x52, 0x96, 0xca, 0x7c, 0x0b, 0x5d, 0x4b,
- 0x2b, 0x9c, 0xea, 0xe0, 0x6e, 0x2b, 0xde, 0x0a, 0x34, 0x96, 0x3f, 0xeb, 0x06, 0xa4, 0x18, 0x70, 0x74, 0x23,
- 0x49, 0xed, 0x7c, 0x72, 0x30, 0x8d, 0xa4, 0x23, 0xe1, 0xec, 0x52, 0x05, 0xd5, 0x4c, 0xe3, 0xaa, 0x0f, 0x77,
- 0x91, 0xe6, 0x37, 0x74, 0xd0, 0x78, 0xc8, 0x3c, 0xd0, 0x2b, 0x86, 0xd3, 0x6a, 0x9f, 0x95, 0xe5, 0xf2, 0x47,
- 0x1f, 0xdc, 0xbc, 0x00, 0xb6, 0x9e, 0x3d, 0x75, 0x1f, 0x38, 0x31, 0x8f, 0x0f, 0xdc, 0x5d, 0x81, 0x4d, 0x70,
- 0x1a, 0x6e, 0x5e, 0x17, 0xb5, 0x8c, 0x2d, 0xe1, 0x38, 0x3b, 0x19, 0x1e, 0xbb, 0xe4, 0xb8, 0x84, 0x47, 0x54,
- 0xc8, 0x87, 0x47, 0x8a, 0x33, 0xef, 0x33, 0x84, 0x0c, 0x8f, 0x11, 0x89, 0x33, 0xc1, 0x3c, 0x06, 0xe0, 0xdf,
- 0x04, 0xbe, 0x82, 0x5c, 0xb3, 0x1a, 0x4f, 0x06, 0x9d, 0x38, 0x90, 0x9b, 0xd2, 0x04, 0x79, 0x1b, 0x00, 0xed,
- 0xf8, 0x64, 0x3c, 0xd3, 0x3b, 0x51, 0x3e, 0x96, 0x2b, 0x59, 0xef, 0x5b, 0xeb, 0x28, 0xf7, 0x3b, 0x4a, 0x57,
- 0xa2, 0xba, 0xee, 0x1f, 0xbb, 0xd0, 0xf8, 0x88, 0xea, 0xf2, 0xa6, 0xd6, 0xbf, 0xea, 0x0f, 0xf0, 0xe1, 0xcf,
- 0x5c, 0xd1, 0xae, 0x24, 0x99, 0x9b, 0x43, 0xa1, 0x1b, 0x6e, 0xa9, 0xc9, 0xe2, 0x0d, 0xef, 0xa2, 0x58, 0xe8,
- 0x97, 0xe9, 0xa0, 0x24, 0x28, 0x28, 0xaf, 0x5a, 0x60, 0xf6, 0x1f, 0x83, 0x73, 0x75, 0xe8, 0x93, 0x96, 0xcc,
- 0xd8, 0xc8, 0xa4, 0x69, 0x82, 0xb9, 0xe4, 0x12, 0xa9, 0x4d, 0x87, 0xaf, 0x11, 0xe0, 0x55, 0x31, 0x20, 0xf9,
- 0x72, 0x93, 0x2d, 0xbd, 0xbe, 0xf1, 0x52, 0xa2, 0x8e, 0x2e, 0x40, 0x42, 0x07, 0xd7, 0x47, 0x6c, 0x52, 0xef,
- 0x57, 0x4c, 0xfd, 0xf0, 0x2f, 0x36, 0xb0, 0xa4, 0xf3, 0x10, 0xce, 0x70, 0x39, 0x66, 0xa1, 0x56, 0x60, 0x35,
- 0xf2, 0xe3, 0x0f, 0xae, 0x31, 0xed, 0xb8, 0x73, 0xd6, 0x75, 0x03, 0x78, 0xdd, 0xbf, 0x3b, 0xbe, 0x01, 0x76,
- 0x81, 0x4b, 0x0e, 0x48, 0x5b, 0x08, 0xd6, 0x58, 0x9f, 0x0f, 0xff, 0xf9, 0x51, 0x98, 0xad, 0x46, 0x8d, 0x1e,
- 0xa7, 0xaf, 0x79, 0x86, 0x1e, 0x12, 0xc7, 0x42, 0xab, 0x8b, 0xdc, 0x72, 0xcf, 0x5d, 0xfc, 0xe4, 0x8d, 0x14,
- 0x62, 0x52, 0xed, 0xb2, 0x5e, 0x5a, 0xc3, 0x3f, 0x29, 0x31, 0x36, 0x3e, 0x3e, 0xc1, 0xb1, 0x08, 0xc7, 0x18,
- 0x71, 0x12, 0xf4, 0x1b, 0xa4, 0xd5, 0x1c, 0xa7, 0x7d, 0x16, 0xb2, 0x07, 0x54, 0xcd, 0xd0, 0x76, 0x0b, 0xb4,
- 0x3c, 0x24, 0x30, 0xb4, 0xf6, 0xc4, 0x75, 0x1d, 0x91, 0xa9, 0x00, 0x23, 0xbf, 0x28, 0x1c, 0x7a, 0x63, 0x81,
- 0x75, 0x40, 0x0a, 0x4c, 0x8b, 0xc1, 0x13, 0xf5, 0x43, 0xe2, 0x98, 0x4c, 0x53, 0xc4, 0x12, 0xe5, 0x49, 0x77,
- 0x92, 0x36, 0x3c, 0x95, 0xd7, 0xf3, 0x5f, 0x5b, 0x6e, 0x74, 0x82, 0xed, 0x55, 0x44, 0x2a, 0xbc, 0xad, 0x6f,
- 0x9f, 0xa5, 0xab, 0x8a, 0xd3, 0xb8, 0xce, 0x5d, 0xd6, 0x74, 0x2e, 0x37, 0xb6, 0x49, 0x5a, 0xab, 0xf4, 0x9b,
- 0x1f, 0xbd, 0x06, 0x83, 0x4a, 0x31, 0x22, 0xd0, 0x09, 0xc9, 0x89, 0x7c, 0xda, 0xcc, 0x8c, 0xa3, 0xde, 0xd7,
- 0xa1, 0xc0, 0xe9, 0xef, 0x8c, 0x6d, 0x42, 0x1a, 0xe8, 0x7b, 0x67, 0x46, 0x81, 0x60, 0x3b, 0x68, 0x92, 0xa6,
- 0x04, 0xc2, 0xab, 0xe0, 0x87, 0xe4, 0x6b, 0x18, 0x9a, 0x01, 0x9a, 0x99, 0x2e, 0xf0, 0x95, 0x3e, 0x09, 0x38,
- 0x94, 0xbe, 0x59, 0xd5, 0xdb, 0x98, 0x31, 0xc5, 0xb7, 0x97, 0x4f, 0xe9, 0x27, 0x53, 0xc9, 0x8a, 0xb1, 0x19,
- 0x56, 0x6d, 0x26, 0x49, 0x74, 0x24, 0xa5, 0x02, 0xc8, 0x15, 0x93, 0x81, 0xf7, 0x94, 0xee, 0x23, 0x10, 0x8c,
- 0xd3, 0xd8, 0x97, 0xe5, 0xaf, 0x70, 0xb4, 0x01, 0x7d, 0x4f, 0x4a, 0x49, 0x3c, 0x42, 0xea, 0x05, 0x71, 0xec,
- 0xfc, 0xa8, 0x67, 0x55, 0xc9, 0x49, 0x10, 0xac, 0xeb, 0x95, 0x7b, 0x3f, 0x89, 0x72, 0x60, 0x1e, 0xa9, 0xa0,
- 0xd3, 0x08, 0x83, 0x58, 0x23, 0xf6, 0xf2, 0xa5, 0xf6, 0x84, 0x02, 0x06, 0xc4, 0xde, 0x0d, 0x16, 0xd9, 0xdd,
- 0x2b, 0x53, 0x56, 0x2a, 0x29, 0x78, 0x80, 0x83, 0x57, 0x84, 0x0f, 0xc4, 0x33, 0xa8, 0x5c, 0xd4, 0xf9, 0x8c,
- 0x34, 0x18, 0xbc, 0xc5, 0x0d, 0xad, 0x82, 0x66, 0x1d, 0x23, 0x57, 0xc7, 0xde, 0x5e, 0x23, 0x06, 0xcf, 0x8e,
- 0xe8, 0xd9, 0xf1, 0x62, 0x6e, 0x66, 0xe8, 0xa1, 0x60, 0xb5, 0x32, 0x90, 0x06, 0x4f, 0x41, 0xca, 0xb3, 0xa9,
- 0x3f, 0xc1, 0xf9, 0x1f, 0xa0, 0xd6, 0xfd, 0x53, 0x07, 0x51, 0xf7, 0x1a, 0xc7, 0xd9, 0x5a, 0x69, 0xc6, 0x48,
- 0x12, 0x18, 0x98, 0xd6, 0x10, 0xa8, 0xec, 0xa4, 0x6f, 0xdf, 0xfb, 0x6c, 0xc1, 0x19, 0xd7, 0xb9, 0x1b, 0xc5,
- 0xcc, 0xb1, 0x64, 0xbc, 0xea, 0x78, 0x5e, 0xc8, 0x96, 0xd6, 0x62, 0xa9, 0x99, 0x18, 0x1f, 0xbe, 0xe9, 0xf0,
- 0x1e, 0x5a, 0x67, 0x6d, 0xd4, 0xee, 0x49, 0xcf, 0x1e, 0x8c, 0x0c, 0xd8, 0xbc, 0x80, 0xd3, 0x83, 0xcd, 0x7b,
- 0xe7, 0xb6, 0x0f, 0x63, 0x68, 0x0a, 0x25, 0xc7, 0x94, 0xc1, 0xe7, 0x87, 0x65, 0x1b, 0xd2, 0x2d, 0xdb, 0xe4,
- 0x27, 0x19, 0x25, 0x0d, 0x54, 0x1b, 0x08, 0xca, 0x6f, 0xe2, 0x29, 0xb9, 0x68, 0x56, 0x59, 0x97, 0x62, 0x78,
- 0x6d, 0xe8, 0xc5, 0xa4, 0x67, 0x23, 0xb0, 0x24, 0xe6, 0x7a, 0xc0, 0xc4, 0x15, 0xa1, 0xa1, 0x33, 0xd6, 0x1b,
- 0x70, 0x38, 0xff, 0xd4, 0xa3, 0x34, 0x60, 0x06, 0x7e, 0x53, 0xe3, 0x23, 0x53, 0x4c, 0x2f, 0xf9, 0x3d, 0x00,
- 0x67, 0x06, 0x9b, 0xe9, 0x73, 0xde, 0xe3, 0x9c, 0x87, 0xa9, 0x9f, 0xb3, 0x84, 0x68, 0x62, 0xaf, 0x76, 0x59,
- 0x4b, 0x82, 0xd2, 0x76, 0x06, 0x1f, 0x5d, 0x15, 0x45, 0xd9, 0x0c, 0x6e, 0xaa, 0xa6, 0x2e, 0x1d, 0x65, 0xdc,
- 0x29, 0x10, 0x3e, 0x6d, 0x9f, 0xe1, 0x80, 0x18, 0x16, 0x71, 0x6b, 0xec, 0x06, 0xdc, 0xd4, 0x5b, 0xc6, 0x10,
- 0xff, 0xfb, 0x28, 0x7a, 0x34, 0xdb, 0xd2, 0xcb, 0x13, 0x47, 0x3c, 0x08, 0xba, 0x71, 0x9c, 0x81, 0x15, 0x63,
- 0xf5, 0x84, 0xef, 0xc3, 0x8b, 0xcb, 0x38, 0x7b, 0x30, 0x9c, 0xb7, 0x28, 0x0c, 0x06, 0xb3, 0x0e, 0xe4, 0xa9,
- 0x43, 0xbb, 0x87, 0xee, 0xee, 0x1d, 0xa7, 0xc9, 0xde, 0x2a, 0x69, 0x06, 0x2c, 0xa1, 0x73, 0xf6, 0xfa, 0x22,
- 0xa7, 0xd0, 0x91, 0x14, 0x75, 0x0f, 0xa6, 0xf7, 0xf6, 0x36, 0x9e, 0x73, 0x6a, 0xf2, 0x28, 0xde, 0x5f, 0x0c,
- 0x70, 0x89, 0xc4, 0x05, 0xc7, 0x35, 0x3e, 0xec, 0x03, 0x04, 0xf7, 0xa9, 0x41, 0xab, 0x88, 0xdf, 0x2c, 0x6c,
- 0x13, 0x2b, 0x4c, 0x63, 0xf0, 0x90, 0x9d, 0x70, 0xb1, 0xfd, 0x65, 0xa6, 0x1d, 0x00, 0x7d, 0x90, 0x21, 0x86,
- 0x18, 0xf1, 0x12, 0xe7, 0x13, 0x2a, 0x3d, 0xa2, 0xa1, 0x6d, 0xbf, 0x7a, 0xcb, 0x7b, 0x2b, 0xac, 0x94, 0xa5,
- 0xa5, 0xf0, 0x62, 0x9d, 0x56, 0x19, 0xe5, 0xcd, 0x56, 0x18, 0xde, 0xbf, 0x0a, 0xe1, 0x36, 0x9f, 0xef, 0xea,
- 0x07, 0xe3, 0x3c, 0x05, 0x6e, 0xa8, 0xde, 0xd8, 0xd1, 0x9f, 0x8d, 0xab, 0x7f, 0x09, 0x65, 0x27, 0x01, 0xc8,
- 0xc9, 0xfb, 0x0b, 0x93, 0x3f, 0x41, 0x7e, 0x01, 0x07, 0xfb, 0x23, 0xb3, 0x76, 0x10, 0x43, 0xe9, 0x02, 0x6f,
- 0x4f, 0x8d, 0xfa, 0x4c, 0x10, 0x6b, 0x85, 0x75, 0x7e, 0xba, 0x89, 0x56, 0x28, 0x3f, 0x27, 0xd2, 0xba, 0x70,
- 0xef, 0xbe, 0x83, 0xf5
-};
-
-// context = simple_context_ar
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x61, 0x72, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x22, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x20, 0x24, 0x76, 0x72,
- 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
- 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x22, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa7, 0xd9, 0x84, 0xd9, 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88,
- 0xd9, 0x84, 0xd8, 0xa9, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xaa, 0xd9,
- 0x81, 0xd8, 0xa7, 0xd8, 0xad, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x0b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x33, 0x00,
- 0x00, 0x00, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x00, 0xd8, 0xa7, 0xd9, 0x84, 0xd9,
- 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88, 0xd9, 0x84, 0xd8, 0xa9, 0x00, 0xd8, 0xaa, 0xd9, 0x81, 0xd8, 0xa7,
- 0xd8, 0xad, 0x00, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x00, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1e, 0x00,
- 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
- 0x18, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x46, 0x00,
- 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00,
- 0x7c, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa6, 0x00,
- 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
- 0xc4, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xd6, 0x00,
- 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xea, 0x00, 0x00, 0x00,
- 0xf1, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x03, 0x01, 0x00, 0x00, 0x07, 0x01,
- 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x16, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00,
- 0x21, 0x01, 0x00, 0x00, 0x27, 0x01, 0x00, 0x00, 0x2b, 0x01, 0x00, 0x00, 0x30, 0x01, 0x00, 0x00, 0x36, 0x01,
- 0x00, 0x00, 0x02, 0x10, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x02, 0x1a, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x20, 0x09,
- 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10,
- 0x16, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20,
- 0x24, 0x03, 0x09, 0x10, 0x08, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03,
- 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24,
- 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a,
- 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a,
- 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03,
- 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11,
- 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x10, 0x08,
- 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x0c, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a,
- 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a, 0x0c, 0x0e, 0x21, 0x0e, 0x0e, 0x21, 0x0e, 0x10, 0x0e, 0x21, 0x0e, 0x03,
- 0x0e, 0x21, 0x0e, 0x1a, 0x0e, 0x21, 0x0e, 0x1a, 0x0c, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x0e, 0x1a, 0x24, 0x10,
- 0x0e, 0x10, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x18, 0x10, 0x0a, 0x10,
- 0x11, 0x10, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x11, 0x18, 0x10, 0x0a, 0x11, 0x10,
- 0x18, 0x03, 0x0a, 0x11, 0x18, 0x03, 0x0a, 0x11, 0x03, 0x0c, 0x18, 0x03, 0x0a, 0x11, 0x1a, 0x0c, 0x18, 0x1a,
- 0x0a, 0x10, 0x11, 0x18, 0x1a, 0x0a, 0x10, 0x11, 0x10, 0x18, 0x1a, 0x0a, 0x11, 0x18, 0x1a, 0x0a, 0x11, 0x10,
- 0x18, 0x1a, 0x0a, 0x11, 0x1a, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69,
- 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x18, 0x00,
- 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_ARABIC__
-
-#if defined(__PV_LANGUAGE_POLISH__)
-
-// wake-word = cześć komputer
-static const uint8_t KEYWORD_ARRAY[] = {
- 0x23, 0x5a, 0xda, 0x76, 0xf9, 0xc1, 0x39, 0x71, 0x29, 0xed, 0x13, 0xca, 0xaf, 0xb5, 0x99, 0x14, 0xd1, 0x6f,
- 0xba, 0xd3, 0xf4, 0xf6, 0x75, 0x6c, 0x27, 0x0f, 0x45, 0x36, 0xfb, 0x79, 0x54, 0xbc, 0xea, 0xd8, 0xae, 0x7e,
- 0x59, 0xf2, 0x18, 0x16, 0x3a, 0x62, 0x56, 0x06, 0x23, 0xc2, 0x7a, 0x68, 0xb1, 0xf3, 0x30, 0x1b, 0xc0, 0xf7,
- 0xe9, 0xcc, 0xa9, 0xf3, 0x16, 0x62, 0x00, 0x62, 0xe1, 0xf1, 0xe5, 0xa0, 0x1b, 0x93, 0x1b, 0x26, 0x24, 0xc9,
- 0x51, 0xe8, 0xd0, 0x93, 0x44, 0x0a, 0x3b, 0xb2, 0x8e, 0x61, 0xfc, 0xbd, 0xf7, 0xe2, 0x80, 0xdc, 0x73, 0xee,
- 0x1d, 0x7a, 0xf5, 0x5c, 0x3c, 0x39, 0xd2, 0x81, 0xb7, 0xd7, 0x31, 0x67, 0x51, 0x91, 0x20, 0x09, 0x00, 0x30,
- 0xab, 0x47, 0xf9, 0xaf, 0x99, 0x67, 0xeb, 0x1a, 0x0d, 0x2a, 0x26, 0x11, 0x68, 0x11, 0x16, 0x61, 0x8d, 0x6b,
- 0x7a, 0x31, 0x6d, 0x41, 0x49, 0xd9, 0x5d, 0x35, 0xc8, 0xcb, 0xa0, 0x6d, 0xbd, 0x2b, 0xbd, 0x17, 0x2b, 0x26,
- 0xa9, 0x79, 0x61, 0xb2, 0x7f, 0xec, 0x0f, 0x08, 0x47, 0x9c, 0x04, 0x1c, 0xd3, 0x1e, 0x62, 0xf5, 0x20, 0x05,
- 0x81, 0x5b, 0xc9, 0x9f, 0xfb, 0x46, 0x8c, 0x11, 0x90, 0x78, 0x4c, 0x3e, 0x41, 0x71, 0x27, 0xa0, 0x0e, 0x43,
- 0x10, 0x70, 0x79, 0x4d, 0x97, 0xfc, 0x5e, 0x73, 0x69, 0x92, 0x3b, 0x9f, 0x6b, 0x9e, 0x1c, 0x20, 0xcc, 0xd6,
- 0xc9, 0x19, 0xcf, 0x68, 0xc4, 0xc6, 0x84, 0xce, 0x16, 0x7b, 0xab, 0x47, 0xdb, 0x22, 0xaa, 0x05, 0x54, 0x6b,
- 0xab, 0x0d, 0xc0, 0x1c, 0x8b, 0x82, 0x51, 0xdc, 0xec, 0xe9, 0x15, 0x13, 0x33, 0x4e, 0x51, 0x5f, 0xca, 0xe6,
- 0x6d, 0x0a, 0x18, 0x94, 0xd7, 0x59, 0xc7, 0x52, 0xda, 0xdf, 0x03, 0x73, 0x76, 0xc1, 0x86, 0x44, 0x1d, 0xbd,
- 0x2d, 0xaa, 0x2a, 0x2b, 0x4e, 0x6f, 0xec, 0x20, 0xe1, 0x55, 0x9f, 0xbf, 0xe6, 0x1d, 0x4e, 0xd5, 0xa7, 0xac,
- 0x85, 0x4f, 0x46, 0xa6, 0x52, 0x82, 0x81, 0xb0, 0x18, 0x06, 0xe4, 0xcd, 0xce, 0x97, 0x1f, 0x40, 0xf7, 0xdb,
- 0x0c, 0x7e, 0x86, 0x2b, 0x21, 0x8b, 0x5a, 0xd5, 0x9c, 0xdb, 0xb4, 0x57, 0xb1, 0x35, 0x47, 0xe8, 0xbd, 0xc1,
- 0xd3, 0xd9, 0xc5, 0xc5, 0x78, 0x9e, 0xa1, 0x5b, 0xfc, 0xbe, 0xa7, 0xf3, 0x51, 0x7b, 0xe8, 0xac, 0xcc, 0x94,
- 0xbe, 0x32, 0x75, 0x83, 0xfc, 0x58, 0xb2, 0x2e, 0x20, 0x0e, 0x2c, 0xe2, 0x9f, 0xa2, 0x83, 0xbf, 0xfd, 0x15,
- 0x06, 0x31, 0x7b, 0x5e, 0xd8, 0x7c, 0x46, 0x53, 0x8a, 0xa3, 0xb9, 0x29, 0x27, 0xa4, 0x38, 0x49, 0x6b, 0x56,
- 0x83, 0x35, 0x4f, 0x23, 0xc7, 0x5f, 0x12, 0x2b, 0x36, 0x23, 0xe0, 0xa8, 0x2c, 0x38, 0xc6, 0x61, 0x25, 0xbe,
- 0x85, 0x37, 0x73, 0x6d, 0xbf, 0x35, 0x8b, 0x0f, 0x4d, 0x3b, 0x2e, 0xcb, 0x30, 0x72, 0xb1, 0x8d, 0x4a, 0xa6,
- 0x6d, 0x23, 0x50, 0x64, 0xd0, 0x45, 0xf7, 0x57, 0x0b, 0x20, 0x77, 0x44, 0x78, 0x6b, 0xff, 0xca, 0xda, 0x3f,
- 0xd9, 0x88, 0xb6, 0x78, 0x91, 0xd7, 0x70, 0xd8, 0xc3, 0x84, 0x6b, 0xf9, 0x01, 0x68, 0xa1, 0xd2, 0x39, 0x37,
- 0xb0, 0x5f, 0x09, 0x3b, 0x74, 0x6a, 0x64, 0x39, 0xb9, 0x4a, 0x8e, 0x28, 0x6b, 0x4d, 0xeb, 0x79, 0xfd, 0xc9,
- 0x83, 0xa0, 0x6d, 0x9f, 0x5e, 0x24, 0x7b, 0x58, 0xd3, 0x7e, 0xd9, 0x36, 0xed, 0xfd, 0x2c, 0xbc, 0x1a, 0x6f,
- 0x25, 0x6a, 0xfe, 0xfe, 0x8f, 0x6b, 0xee, 0x5d, 0x26, 0xdc, 0xf9, 0xb2, 0x38, 0x6c, 0xae, 0x62, 0x5a, 0xa0,
- 0x11, 0xe0, 0x2b, 0x18, 0xda, 0x78, 0x90, 0xc6, 0x27, 0x2d, 0x05, 0x85, 0xbb, 0x48, 0x7b, 0x5d, 0xf3, 0x5b,
- 0x55, 0xc2, 0x33, 0x80, 0xa2, 0x08, 0x7c, 0xec, 0x04, 0x13, 0xa7, 0x3f, 0x84, 0x1a, 0x20, 0x5f, 0x5f, 0x64,
- 0x80, 0xd3, 0xe4, 0x4f, 0x1d, 0x4c, 0x40, 0x17, 0xb0, 0x54, 0xc9, 0xba, 0xef, 0xe4, 0xc6, 0x1f, 0x2d, 0xc1,
- 0xa1, 0x89, 0xc6, 0x18, 0x04, 0xf1, 0x05, 0x7e, 0x01, 0x1f, 0x93, 0x35, 0x74, 0x9d, 0x36, 0x7b, 0x06, 0x54,
- 0xbe, 0x43, 0xb2, 0x30, 0xe5, 0xd9, 0x6f, 0xc5, 0x31, 0x94, 0x7e, 0x99, 0x4b, 0x26, 0xcd, 0xdf, 0x4a, 0xe0,
- 0x0e, 0x6f, 0x20, 0x75, 0x30, 0xcd, 0xa6, 0xdc, 0x86, 0x0e, 0x86, 0x9c, 0x7a, 0xed, 0x5c, 0x51, 0xa1, 0xcf,
- 0xdd, 0xe8, 0x52, 0x05, 0x62, 0x38, 0x19, 0xd3, 0x7b, 0x7c, 0x7b, 0xd2, 0x57, 0xad, 0x8a, 0xb3, 0x55, 0x61
-};
-
-// context = simple_context_pl
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x70, 0x6c, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79,
- 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x61, 0x6a, 0x20, 0x6d, 0x69, 0x20, 0x24, 0x76, 0x72,
- 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
- 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x74, 0x72, 0x75, 0x73, 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x61, 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x22, 0x00,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00,
- 0x14, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x62, 0x61,
- 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x00, 0x64, 0x61, 0x6a, 0x00, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x00,
- 0x6d, 0x69, 0x00, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79, 0x00, 0x74, 0x72, 0x75, 0x73,
- 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00,
- 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02, 0x01, 0x0d, 0x01, 0x0d, 0x1c, 0x16, 0x20, 0x03, 0x01,
- 0x09, 0x0c, 0x01, 0x0b, 0x08, 0x0d, 0x01, 0x0c, 0x08, 0x10, 0x0e, 0x0f, 0x01, 0x1f, 0x21, 0x1c, 0x0d, 0x20,
- 0x11, 0x0f, 0x15, 0x10, 0x0a, 0x01, 0x07, 0x0a, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
- 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70,
- 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
- 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_POLISH__
-
#if defined(__PV_LANGUAGE_SWEDISH__)
// wake-word = hej dator
static const uint8_t KEYWORD_ARRAY[] = {
- 0x84, 0xa9, 0x3a, 0x6e, 0x71, 0x4e, 0x5f, 0x2a, 0xa6, 0x90, 0x42, 0xa3, 0x20, 0xa6, 0xc7, 0x6a, 0x2e, 0xe8,
- 0x9b, 0xf1, 0xc3, 0x26, 0x3b, 0x5d, 0x4b, 0xec, 0xcd, 0xc8, 0x7b, 0xab, 0x82, 0xb8, 0x3e, 0xab, 0x71, 0x39,
- 0xcb, 0x65, 0x23, 0x88, 0x2e, 0xd8, 0x2f, 0x66, 0x46, 0xad, 0x09, 0x9b, 0xc0, 0x0f, 0x4e, 0x10, 0x4f, 0xf4,
- 0xb5, 0xb0, 0x53, 0xbd, 0xab, 0x02, 0xca, 0x70, 0x1c, 0xcb, 0xad, 0x8f, 0x65, 0x58, 0xa2, 0x7d, 0x5e, 0x53,
- 0xaa, 0x24, 0x6b, 0x57, 0xcf, 0x63, 0xf9, 0xfe, 0x29, 0x46, 0x68, 0x9a, 0x0c, 0x2a, 0x7b, 0xcb, 0xe8, 0x47,
- 0x12, 0x9a, 0x2b, 0x07, 0x25, 0xc5, 0x48, 0xca, 0x01, 0x19, 0x6e, 0x67, 0xe4, 0xc6, 0x62, 0xc3, 0xed, 0x7c,
- 0xbe, 0x3c, 0xe9, 0x10, 0x5c, 0x22, 0xf0, 0x5b, 0xb9, 0x91, 0x5b, 0x23, 0x07, 0x61, 0x8d, 0xdc, 0xf5, 0x04,
- 0xbc, 0x29, 0x2a, 0xab, 0xa8, 0x80, 0x73, 0xf6, 0xfb, 0x27, 0x95, 0x68, 0x42, 0x5a, 0x49, 0xa8, 0xc1, 0x62,
- 0xba, 0x5f, 0xdf, 0xa1, 0x6e, 0x26, 0xc1, 0xb2, 0xe1, 0xf4, 0xe8, 0xf7, 0x41, 0x2c, 0x1d, 0x66, 0x7d, 0xa6,
- 0x8b, 0x3a, 0x35, 0x50, 0xb9, 0xef, 0xa4, 0x80, 0xcc, 0xfc, 0xb7, 0xb9, 0x0b, 0x77, 0x2c, 0xb5, 0x7d, 0xb2,
- 0x66, 0x3f, 0x02, 0x3f, 0x9d, 0x48, 0x5c, 0x2b, 0xc1, 0xa5, 0x7b, 0xf0, 0xd3, 0xd9, 0x9b, 0x67, 0xbb, 0xcb,
- 0xbf, 0x04, 0x09, 0x95, 0x0a, 0x45, 0x6e, 0xc8, 0x53, 0x61, 0x30, 0xf6, 0xbe, 0x9e, 0xf4, 0xe0, 0x9a, 0x91,
- 0x1f, 0x6f, 0xee, 0x23, 0xc2, 0xd7, 0x10, 0x0a, 0x27, 0x17, 0xc2, 0xbf, 0x66, 0x6b, 0x2b, 0x63, 0x17, 0x04,
- 0xf9, 0xe4, 0x2d, 0xec, 0x57, 0x12, 0xcd, 0x68, 0x20, 0x24, 0x1c, 0x85, 0x19, 0xd0, 0x30, 0x31, 0x32, 0x3f,
- 0xc9, 0xbc, 0xc4, 0xb0, 0xcc, 0x61, 0xdd, 0x33, 0x24, 0xfb, 0x22, 0x3f, 0x9c, 0xcc, 0xc0, 0xb7, 0x25, 0xb0,
- 0xda, 0x99, 0x18, 0x1b, 0xb4, 0x8a, 0xea, 0x36, 0x63, 0x6c, 0xcd, 0x10, 0x94, 0x52, 0x5c, 0x3f, 0x7c, 0x0c,
- 0xfd, 0x60, 0x8d, 0xc2, 0x17, 0x75, 0x4a, 0x92, 0x3f, 0x4f, 0x5d, 0x4c, 0x49, 0x93, 0x5f, 0x23, 0x13, 0x86,
- 0xd8, 0xfb, 0xb8, 0xd0, 0x6e, 0x9c, 0xe0, 0x9c, 0x16, 0x81, 0x21, 0x38, 0x1d, 0xc8, 0xd4, 0xfd, 0x83, 0xf2,
- 0x35, 0x19, 0xf0, 0x93, 0xc2, 0xb0, 0xb3, 0xba, 0x3e, 0x2d, 0x96, 0x43, 0xeb, 0xfc, 0x3b, 0xa6, 0x71, 0x1f,
- 0x05, 0x2c, 0x0f, 0xd2, 0xf7, 0xee, 0xc9, 0xc2, 0x9a, 0x8f, 0x0b, 0x7a, 0x0a, 0xb9, 0xc7, 0xb7, 0x20, 0x31,
- 0xe2, 0x43, 0xe0, 0x6c, 0x21, 0x43, 0xf4, 0xc8, 0xad, 0x04, 0xbb, 0xc2, 0x32, 0x35, 0x33, 0x7b, 0xf3, 0x4a,
- 0x39, 0xc1, 0x3c, 0x8d, 0x2f, 0xac, 0xd4, 0x75, 0x65, 0xb4, 0xe4, 0x48, 0xef, 0xda, 0x27, 0xb9, 0x87, 0xde,
- 0xd2, 0xe7, 0x4d, 0x77, 0x6c, 0xf5, 0x2e, 0xa0, 0x3c, 0xb6, 0x67, 0x70, 0x45, 0x3d, 0x0b, 0xca, 0x2a, 0x1a,
- 0x50, 0x00, 0xce, 0x0a, 0x3c, 0x9d, 0xde, 0x74, 0x92, 0xff, 0xc7, 0x54, 0x67, 0x86, 0xca, 0xa8, 0xfa, 0x13,
- 0x2b, 0x99, 0x5e, 0xdd, 0xe4, 0x39, 0xe9, 0x52, 0x3a, 0x59, 0x65, 0x1f, 0x83, 0xbb, 0x08, 0x22, 0x6e, 0x80,
- 0x7d, 0xd1, 0x93, 0x46, 0x77, 0xa8, 0x1c, 0xa5, 0xb8, 0x7d, 0xa1, 0x7d, 0xab, 0xfb, 0xbb, 0xb4, 0x7e, 0xcb,
- 0x10, 0x40, 0x8b, 0x5d, 0xc0, 0xe1, 0x8d, 0xd2, 0x0f, 0xe6, 0xf4, 0x79, 0xfd, 0x94, 0x34, 0xfd, 0xd2, 0xd5,
- 0x2d, 0xe7, 0x7c, 0x61, 0x0a, 0xc1, 0x86, 0x6e, 0x7c, 0x94
+ 0xa7, 0x12, 0xc6, 0x64, 0xcb, 0xdb, 0xd1, 0x92, 0x24, 0x02, 0x32, 0x84, 0x1f, 0x48, 0xf7, 0x2d, 0x9c, 0x34,
+ 0x4a, 0x5e, 0x41, 0x04, 0x9e, 0x92, 0x63, 0xde, 0xe6, 0x2a, 0x86, 0x40, 0xac, 0x1f, 0x9d, 0xfe, 0x26, 0x08,
+ 0x46, 0x6c, 0xed, 0x4e, 0x24, 0xc6, 0xa5, 0xe0, 0xdf, 0xc9, 0xd6, 0x47, 0xdc, 0x55, 0x3b, 0xb7, 0x0c, 0xa6,
+ 0x20, 0xcc, 0x0e, 0x51, 0x16, 0x46, 0x44, 0xf0, 0x94, 0xd6, 0xa5, 0xb4, 0xc5, 0xa3, 0x2f, 0x3c, 0xfe, 0x0f,
+ 0xe7, 0xb8, 0x41, 0x83, 0xf6, 0x41, 0xad, 0xdf, 0x06, 0x05, 0x96, 0xcb, 0x63, 0xce, 0x53, 0x8c, 0x39, 0xac,
+ 0x0c, 0x27, 0x5a, 0x57, 0x42, 0xc3, 0x66, 0x05, 0x19, 0x3c, 0xbe, 0xf8, 0x38, 0x2f, 0x87, 0xd9, 0xba, 0x81,
+ 0x27, 0x17, 0x1c, 0x95, 0x42, 0xf0, 0x31, 0xaa, 0x19, 0xe6, 0x96, 0x1d, 0x07, 0x8f, 0x0c, 0x60, 0x7f, 0xa2,
+ 0xfa, 0x6d, 0x8e, 0xdb, 0xde, 0xed, 0x7f, 0x47, 0x0d, 0x95, 0x1f, 0x55, 0x24, 0xb0, 0xbf, 0x5c, 0x3a, 0x04,
+ 0x3f, 0x13, 0xf2, 0x9a, 0x72, 0xca, 0x19, 0xe1, 0x92, 0x23, 0x2d, 0x9a, 0x73, 0x02, 0x53, 0x37, 0xe6, 0xca,
+ 0xd4, 0x29, 0x00, 0xb5, 0x2e, 0xdb, 0xef, 0x54, 0x9b, 0x41, 0x31, 0x9f, 0x0e, 0x6a, 0x7b, 0x04, 0x95, 0x77,
+ 0xef, 0x37, 0x55, 0x67, 0xe4, 0x3c, 0xc7, 0x8a, 0x8f, 0x7f, 0x9d, 0xc1, 0x10, 0xa0, 0x2d, 0xa7, 0x07, 0xd2,
+ 0x72, 0xc7, 0x93, 0xcd, 0x7b, 0x05, 0x1c, 0x11, 0x83, 0x50, 0x0f, 0xab, 0x5f, 0x39, 0xc0, 0x54, 0x94, 0x59,
+ 0x70, 0xc3, 0x68, 0x2e, 0xd5, 0xd2, 0x8e, 0xd0, 0x01, 0xb3, 0x57, 0x0e, 0xfd, 0xc1, 0x1b, 0x2b, 0x0b, 0x54,
+ 0x73, 0xd2, 0x92, 0x4f, 0x65, 0xfa, 0xf6, 0x87, 0xb5, 0x83, 0x0d, 0x4c, 0x37, 0xf1, 0xa3, 0x5e, 0xb3, 0x66,
+ 0xd1, 0x65, 0xf0, 0xb6, 0x08, 0x60, 0xcb, 0xb7, 0xad, 0x31, 0xf1, 0xc3, 0xf2, 0xb4, 0x3f, 0x4f, 0xd5, 0x6f,
+ 0x7f, 0xc1, 0x6d, 0x50, 0xa5, 0x30, 0xae, 0x39, 0xeb, 0x9b, 0x48, 0x23, 0x46, 0x4a, 0x4c, 0x07, 0x92, 0x1d,
+ 0xce, 0x16, 0xad, 0xd4, 0xee, 0xc3, 0xb4, 0x01, 0x2c, 0x16, 0xc1, 0x84, 0xc7, 0xc2, 0x55, 0x99, 0x49, 0x31,
+ 0x68, 0xfc, 0x44, 0xbf, 0x2c, 0x2f, 0x50, 0x9b, 0xc6, 0x28, 0xf3, 0xcf, 0x16, 0xf8, 0xf2, 0xb1, 0x1e, 0xad,
+ 0x73, 0xfe, 0xd4, 0xc0, 0x17, 0xfa, 0x52, 0x9e, 0xbd, 0x01, 0xfa, 0x3c, 0xa2, 0xd7, 0x9c, 0x47, 0xb5, 0x31,
+ 0x79, 0x95, 0x29, 0x8b, 0x99, 0x51, 0x1d, 0xbf, 0x73, 0xb9, 0x1b, 0x26, 0x2a, 0xc2, 0x4a, 0x27, 0x9c, 0xb6,
+ 0x36, 0x9b, 0xe0, 0xa0, 0xde, 0xb4, 0xf6, 0x63, 0x91, 0xe8, 0xd1, 0xe2, 0xb8, 0x84, 0x89, 0x26, 0x89, 0xb1,
+ 0xe5, 0x6b, 0x6a, 0xc5, 0xdf, 0xe6, 0xae, 0xb2, 0x9b, 0x2b, 0x20, 0x80, 0x7c, 0xeb, 0x78, 0xf0, 0xd4, 0xd3,
+ 0x10, 0x8f, 0xde, 0xba, 0xca, 0x17, 0xf1, 0x17, 0x10, 0x0d, 0xcd, 0xde, 0x43, 0x1c, 0x80, 0x3f, 0x18, 0xe0,
+ 0x1c, 0x17, 0xc0, 0x46, 0xc1, 0x2d, 0x80, 0x13, 0xd9, 0x62, 0xb8, 0x83, 0x22, 0xd9, 0x2a, 0xa6, 0x22, 0x75,
+ 0xd9, 0x8a, 0xbb, 0xaa, 0x6a, 0xb6, 0x23, 0x2e, 0xb3, 0x48, 0xa0, 0x37, 0xf2, 0x38, 0xe9, 0x57, 0x12, 0x0d,
+ 0x48, 0xee, 0x63, 0x9d, 0x8c, 0x32, 0xe0, 0x55, 0x20, 0x68, 0xb5, 0xbc, 0x13, 0xc1, 0x5b, 0x20, 0x68, 0x16,
+ 0x2b, 0x27, 0xb2, 0xe1, 0xeb, 0x28, 0xa4, 0xa0, 0x8c, 0x3c, 0x8f, 0x51, 0x66, 0xc9, 0x10, 0xdf, 0x56, 0x99,
+ 0x17, 0xea, 0x70, 0x17, 0x13, 0x56, 0x6e, 0x15, 0x23, 0x73
};
// context = simple_context_sv
@@ -3259,178 +3492,178 @@ static const uint8_t CONTEXT_ARRAY[] = {
// wake-word = xin chào máy tính
static const uint8_t KEYWORD_ARRAY[] = {
- 0xa2, 0x01, 0x8a, 0xf2, 0xc4, 0xc9, 0x80, 0xb4, 0x5a, 0x2f, 0xb6, 0x8e, 0xc4, 0x89, 0x78, 0x81, 0xff, 0x0b,
- 0xee, 0xc5, 0x15, 0xfa, 0xdc, 0xf4, 0x42, 0xa4, 0xa4, 0x97, 0xb3, 0x4e, 0xd4, 0xee, 0x53, 0x20, 0x41, 0xaf,
- 0x6a, 0xfa, 0x8e, 0xcb, 0x55, 0xb5, 0x66, 0xd6, 0xa1, 0xb7, 0x85, 0xbf, 0x1a, 0x33, 0x1c, 0xd0, 0x15, 0x37,
- 0x61, 0xf2, 0x5f, 0xd5, 0x16, 0x68, 0x4c, 0x68, 0xa6, 0xb0, 0x73, 0xdc, 0x74, 0x51, 0x62, 0xcd, 0xa6, 0x98,
- 0x0f, 0x03, 0xa9, 0xa5, 0x9e, 0xbe, 0x0c, 0xfb, 0xb2, 0x8d, 0xd0, 0xd2, 0xe1, 0x4f, 0xc6, 0xb3, 0xf6, 0x26,
- 0xa9, 0x86, 0x89, 0x8d, 0x8c, 0x9e, 0x66, 0x52, 0x71, 0xba, 0xbb, 0xec, 0x2d, 0x8f, 0x55, 0xfc, 0x04, 0x66,
- 0xe5, 0xc7, 0x2c, 0x80, 0x75, 0x8d, 0xf6, 0xda, 0x06, 0x7d, 0x8a, 0x16, 0x97, 0x62, 0x75, 0x1f, 0xe0, 0x2e,
- 0xef, 0x29, 0x3c, 0x32, 0xf5, 0x4f, 0x97, 0xa8, 0xe0, 0x42, 0xa4, 0x87, 0x45, 0x74, 0x98, 0x02, 0xda, 0x72,
- 0x82, 0x46, 0x28, 0x8f, 0xd8, 0x15, 0x65, 0x41, 0xcd, 0x06, 0xe4, 0x67, 0x9f, 0x3c, 0xe3, 0x4b, 0xf6, 0x17,
- 0x3d, 0xac, 0xc3, 0xfb, 0x1b, 0x91, 0x5f, 0x8d, 0x42, 0x79, 0x85, 0x59, 0xef, 0x58, 0xbe, 0xc2, 0x6b, 0xcb,
- 0xff, 0xcf, 0x06, 0x1b, 0x85, 0x10, 0xd5, 0x48, 0x5b, 0x3a, 0x9f, 0x03, 0x7e, 0xdc, 0x89, 0xb0, 0x95, 0xea,
- 0x34, 0xa9, 0x8f, 0x25, 0x9f, 0x6b, 0xc8, 0x37, 0x50, 0x2b, 0x8f, 0x61, 0x17, 0x8e, 0xfa, 0x63, 0x61, 0x5f,
- 0x61, 0x0b, 0xa0, 0x6c, 0xbf, 0xe4, 0xca, 0xf3, 0x48, 0xaf, 0xb0, 0x16, 0xb1, 0xbd, 0x39, 0x79, 0x20, 0x7f,
- 0x1a, 0xcf, 0xc4, 0x92, 0xd2, 0xb9, 0xcb, 0x39, 0x83, 0x17, 0x06, 0x53, 0xfd, 0x51, 0xba, 0x34, 0x42, 0xe1,
- 0x2c, 0xa6, 0x43, 0x31, 0x6b, 0x8c, 0xbc, 0x66, 0x9c, 0xde, 0x43, 0xe4, 0xf3, 0x5d, 0xfd, 0x43, 0x35, 0x69,
- 0xa1, 0x01, 0x1f, 0xf0, 0x55, 0xbf, 0xda, 0x30, 0x64, 0xdf, 0xbb, 0x67, 0xd5, 0xac, 0x42, 0x95, 0xb3, 0xa2,
- 0xeb, 0xc6, 0x86, 0xa0, 0x09, 0x7f, 0xf7, 0x7a, 0x6b, 0x7a, 0x01, 0x85, 0x5b, 0x74, 0x11, 0x03, 0xac, 0xb6,
- 0xac, 0xaa, 0x8c, 0x9b, 0x6a, 0xd6, 0x29, 0x79, 0xed, 0x38, 0x2f, 0x58, 0x35, 0xc0, 0xa8, 0x76, 0xb7, 0x05,
- 0xb9, 0x36, 0x44, 0x55, 0xca, 0x89, 0xe2, 0x5e, 0x9f, 0xe0, 0x75, 0xde, 0xe9, 0xe1, 0xeb, 0x2e, 0x80, 0x5e,
- 0x72, 0xd4, 0x9e, 0x9b, 0x5b, 0x00, 0x12, 0xcc, 0x47, 0x1c, 0x67, 0xd3, 0x18, 0xa3, 0x98, 0xe9, 0xec, 0x79,
- 0x1b, 0x63, 0x18, 0x71, 0x3e, 0x4e, 0x17, 0x8d, 0x15, 0x99, 0xec, 0xb3, 0xe8, 0x79, 0x5e, 0xbd, 0x3d, 0xa8,
- 0xa2, 0xb0, 0xc1, 0xf0, 0xf3, 0x80, 0xf9, 0xb4, 0x61, 0x4d, 0x88, 0xa1, 0x75, 0x8f, 0x67, 0x4b, 0x1b, 0x13,
- 0xc3, 0x3c, 0x2d, 0x17, 0xfe, 0xe0, 0x2c, 0x76, 0xe5, 0xea, 0x08, 0xfb, 0x6f, 0x84, 0xff, 0x53, 0x39, 0x7d,
- 0xbd, 0xa4, 0x10, 0x4c, 0x23, 0x62, 0xed, 0xbf, 0x99, 0x41, 0x58, 0x48, 0x60, 0xc7, 0x8e, 0x27, 0x5d, 0x3e,
- 0x72, 0xc9, 0x5a, 0xed, 0xdb, 0xfe, 0x4f, 0x37, 0xcb, 0x16, 0x85, 0xf3, 0x3c, 0xfb, 0x56, 0xb7, 0x78, 0x96,
- 0xc4, 0xd9, 0x68, 0x28, 0x50, 0x47, 0x65, 0xde, 0x74, 0x24, 0xcd, 0xac, 0x91, 0x81, 0x5a, 0x85, 0xfb, 0x1a,
- 0x79, 0x47, 0xf8, 0x9b, 0x88, 0x1b, 0x71, 0x80, 0xb4, 0x57, 0x07, 0x12, 0xf6, 0xc3, 0xda, 0x4b, 0x9a, 0x16,
- 0x00, 0xaa, 0x96, 0x73, 0x92, 0x41, 0x77, 0xe5, 0xf2, 0xe8, 0xf6, 0xfa, 0xb7, 0x65, 0xf3, 0x72, 0xab, 0x01,
- 0xea, 0xde, 0x78, 0xb1, 0x71, 0x9a, 0x5c, 0x2c, 0x91, 0x52, 0xd1, 0x2f, 0xbb, 0x87, 0x5b, 0xa0, 0xe4, 0x64,
- 0x3a, 0x57, 0x82, 0x4f, 0xb4, 0xd6, 0x4b, 0xb6, 0x8b, 0xbb, 0xc3, 0xef, 0xcc, 0xb5, 0xfd, 0xfd, 0x8d, 0xef,
- 0xd6, 0x95, 0x1b, 0x7f, 0x92, 0xe3, 0x4c, 0x96, 0x59, 0x65, 0xc8, 0xaf, 0xdd, 0xf5, 0x6c, 0xf6, 0xba, 0xa3,
- 0x4f, 0x2d, 0x06, 0x29, 0x12, 0x19, 0xf7, 0x6f, 0xa8, 0xaf, 0x03, 0xca, 0x28, 0x8e, 0x12, 0x2e, 0x92, 0x91,
- 0xd4, 0x8b, 0x4e, 0x59, 0x5a, 0x58, 0x10, 0x6b, 0x9e, 0xc7, 0xc6, 0x98, 0x7b, 0x96, 0x9c, 0x0d, 0xfb, 0x96,
- 0x00, 0x83, 0xa3, 0x64, 0x14, 0x89, 0x7a, 0xbc, 0x7e, 0xe2, 0xe7, 0x9b, 0xec, 0x5b, 0x5d, 0x56, 0x04, 0x8b,
- 0xc9, 0xea, 0xc8, 0x6a, 0x43, 0xc0, 0xfe, 0xd4, 0x22, 0xe0, 0x82, 0x15, 0xeb, 0x75, 0x44, 0x31, 0xe6, 0x28,
- 0xe4, 0x6f, 0x45, 0x53, 0x62, 0xec, 0xbd, 0x74, 0x43, 0x4e, 0x3b, 0xfb, 0xf0, 0x4e, 0x3d, 0xa1, 0x5b, 0x8a,
- 0x53, 0x77, 0xd4, 0x03, 0xc4, 0x1d, 0x71, 0x0b, 0x59, 0x63, 0x5a, 0x0c, 0x43, 0x57, 0x69, 0xed, 0x9a, 0xee,
- 0x32, 0x75, 0x95, 0xd2, 0x66, 0x03, 0x42, 0x98, 0x99, 0xc5, 0x09, 0x99, 0x07, 0x26, 0xbf, 0x90, 0xe9, 0x23,
- 0x7c, 0x2b, 0x93, 0x8c, 0xc6, 0x85, 0xe9, 0x84, 0x55, 0x51, 0xb8, 0x99, 0xd2, 0xd6, 0xcf, 0x7d, 0x42, 0xf5,
- 0x8f, 0xc2, 0xdf, 0x5a, 0x98, 0xba, 0x72, 0xa6, 0x1c, 0x8a, 0x03, 0x56, 0x9d, 0xed, 0x29, 0x4f, 0x46, 0x55,
- 0x59, 0xd5, 0x76, 0xe5, 0xbd, 0x26, 0xe4, 0x5d, 0xea, 0x89, 0x3e, 0x3a, 0x1c, 0xde, 0x3d, 0x1d, 0x1f, 0xba,
- 0x24, 0x3e, 0x30, 0x8a, 0xe2, 0x7c, 0x5b, 0xa2, 0xe0, 0x2d, 0x36, 0x11, 0x0a, 0x0f, 0xc6, 0xf7, 0x2e, 0x1f,
- 0xd1, 0x46, 0xc7, 0x26, 0xec, 0x5c, 0x53, 0x08, 0xe8, 0x2b, 0x8a, 0x6f, 0x45, 0xc4, 0x70, 0x09, 0xb6, 0xfb,
- 0x15, 0x78, 0x8e, 0x22, 0x77, 0x00, 0x75, 0xf0, 0x86, 0xb0, 0x58, 0x69, 0xf0, 0xf2, 0xb4, 0x89, 0x6d, 0x92,
- 0x39, 0xfb, 0x35, 0xb9, 0x2d, 0x8b, 0x0a, 0xe6, 0x43, 0x65, 0xc7, 0x6b, 0xbf, 0xc2, 0xcb, 0xca, 0xbc, 0x6c,
- 0x44, 0x3c, 0x81, 0x6d, 0x89, 0xde, 0xff, 0xba, 0xc5, 0x5c, 0xbc, 0xe3, 0x0b, 0x93, 0xcb, 0xda, 0xf5, 0x23,
- 0x59, 0x11, 0xc7, 0x88, 0x68, 0x47, 0xa3, 0x75, 0xb5, 0x7a, 0x9e, 0xa0, 0xd4, 0x57, 0x22, 0x05, 0x49, 0x73,
- 0x9c, 0xff, 0x1e, 0xf2, 0x45, 0xdc, 0xd9, 0xa8, 0x20, 0x86, 0xd1, 0x0d, 0xd1, 0xf8, 0x1a, 0x9b, 0x72, 0xf3,
- 0x9f, 0x8d, 0xf1, 0x15, 0x07, 0x77, 0x2f, 0x05, 0x03, 0xd0, 0xc9, 0xf6, 0x58, 0x32, 0x7c, 0x4b, 0x60, 0x2c,
- 0x28, 0x1c, 0xf6, 0x90, 0xd2, 0xfd, 0x50, 0xc7, 0x82, 0xc2, 0x0f, 0x0a, 0xe5, 0x39, 0x54, 0xdc, 0x31, 0x80,
- 0x88, 0xaf, 0x3e, 0x0e, 0xb9, 0x10, 0xc6, 0x9a, 0xae, 0x7e, 0xe8, 0xb0, 0x88, 0x99, 0x5d, 0x8c, 0xc2, 0x42,
- 0xe9, 0x74, 0xda, 0xcd, 0xee, 0x25, 0xff, 0x48, 0x63, 0xb2, 0xa5, 0x3b, 0x0b, 0xd8, 0xb4, 0x55, 0x40, 0xe2,
- 0xfc, 0x70, 0x3b, 0x4c, 0x66, 0x06, 0xe9, 0xca, 0x69, 0xc5, 0x7c, 0x38, 0x88, 0x44, 0x54, 0x0b, 0x01, 0x69,
- 0x79, 0x5e, 0xcf, 0xe5, 0xf2, 0x73, 0xd4, 0xd4, 0x86, 0xc7, 0x69, 0x36, 0x01, 0x6b, 0x67, 0x8a, 0x29, 0x6e,
- 0xf3, 0xb6, 0x69, 0x08, 0x79, 0x49, 0x7f, 0x31, 0x09, 0x31, 0x1c, 0xbf, 0x49, 0x97, 0x1b, 0x9f, 0x35, 0x58,
- 0x97, 0x0e, 0x66, 0x7e, 0x20, 0x7e, 0x34, 0x2b, 0xb9, 0xbc, 0x94, 0x66, 0xb1, 0xb6, 0xb1, 0xe2, 0x30, 0xd7,
- 0x76, 0xe8, 0x51, 0x1a, 0x03, 0x9d, 0x35, 0x87, 0x6c, 0x4c, 0x90, 0x76, 0xaa, 0x74, 0x77, 0x7f, 0x0a, 0x62,
- 0xc2, 0x3c, 0x20, 0xab, 0x83, 0x19, 0xcf, 0x2b, 0xba, 0x0d, 0x65, 0xf9, 0x03, 0xf9, 0x55, 0xee, 0x39, 0x0f,
- 0x9d, 0xfc, 0x2a, 0x2b, 0x8c, 0x0d, 0x13, 0x3b, 0xe6, 0x8f, 0xa5, 0xfd, 0x43, 0xab, 0x62, 0xa4, 0x00, 0xe3,
- 0xeb, 0x65, 0x93, 0x81, 0xce, 0x11, 0x8b, 0x04, 0xe6, 0x30, 0xd0, 0xd2, 0xa5, 0x83, 0x9c, 0x33, 0x0a, 0x8e,
- 0x3d, 0xb0, 0xeb, 0x4b, 0x3c, 0x92, 0xe4, 0xc1, 0xc6, 0x48, 0xe2, 0xa6, 0x6e, 0x8a, 0x3c, 0xd9, 0xf2, 0xa0,
- 0x05, 0xc4, 0x16, 0x9b, 0x47, 0x7b, 0xab, 0xb7, 0xea, 0x1f, 0x14, 0x34, 0xff, 0x71, 0x33, 0x13, 0xfc, 0x78,
- 0x77, 0x0c, 0xf4, 0x3c, 0xcf, 0xc3, 0x36, 0xbc, 0x51, 0x66, 0x89, 0xf7, 0xa1, 0x6f, 0x35, 0x20, 0xf3, 0x1b,
- 0x14, 0xd9, 0xf8, 0x9a, 0x8c, 0x75, 0x87, 0x9a, 0x21, 0x3f, 0xc0, 0xf8, 0x54, 0xc1, 0x7c, 0x96, 0x0c, 0x79,
- 0xd4, 0x41, 0x79, 0x29, 0x18, 0xf8, 0xcf, 0xab, 0xe8, 0xb9, 0x01, 0xaf, 0x7b, 0xf8, 0x90, 0xa7, 0xb0, 0x34,
- 0x75, 0xad, 0x85, 0xfd, 0x00, 0x26, 0x08, 0x13, 0xb6, 0xed, 0x11, 0x2c, 0x09, 0x10, 0x43, 0x3a, 0x49, 0xe4,
- 0xf6, 0x0e, 0x44, 0xaa, 0x55, 0x7b, 0xe9, 0xff, 0x97, 0x23, 0xb1, 0xbf, 0x7d, 0xc2, 0x17, 0xbe, 0xe4, 0x1a,
- 0x4a, 0xe9, 0x8f, 0xb3, 0xe7, 0xa6, 0xdd, 0xba, 0xde, 0x2d, 0x97, 0x2f, 0x1e, 0x37, 0xf5, 0x87, 0xf2, 0x3d,
- 0x26, 0x98, 0x27, 0x2c, 0xae, 0xb7, 0xd8, 0x04, 0x57, 0x14, 0x2a, 0xa1, 0xce, 0x53, 0x5a, 0x62, 0x16, 0xbe,
- 0x75, 0x94, 0x18, 0x08, 0x6f, 0x2a, 0xc5, 0xdb, 0x3e, 0x1d, 0x09, 0xca, 0xd5, 0x53, 0x0d, 0x0a, 0x25, 0x62,
- 0x47, 0x22, 0xfd, 0x18, 0xc0, 0x0e, 0x5d, 0xdb, 0x60, 0x12, 0x2d, 0xaa, 0x12, 0x83, 0xbd, 0x1e, 0x8c, 0xb2,
- 0x38, 0xd9, 0x93, 0x6f, 0x05, 0x98, 0xbc, 0x81, 0x50, 0x48, 0xf6, 0xe4, 0x8e, 0x5d, 0xcb, 0xbd, 0xcc, 0x52,
- 0x28, 0xc3, 0x8b, 0xc6, 0x0c, 0x0f, 0x7d, 0x57, 0x8e, 0xf3, 0x75, 0xce, 0xed, 0x4c, 0xa5, 0x9f, 0x2c, 0x69,
- 0xe4, 0x8b, 0x07, 0x79, 0x61, 0x9d, 0xb9, 0xa1, 0x2d, 0xf8, 0xa1, 0x59, 0x04, 0x63, 0x24, 0x2c, 0xad, 0xa3,
- 0x8f, 0x7c, 0x43, 0xb6, 0x25, 0x25, 0xc9, 0x26, 0x8c, 0x04, 0x5c, 0xd8, 0x73, 0x8f, 0x54, 0xaa, 0xc8, 0xf1,
- 0xb8, 0x25, 0x5a, 0xa0, 0x6c, 0xf2, 0x22, 0xda, 0x31, 0x26, 0x2f, 0x83, 0xf7, 0xef, 0x1c, 0x30, 0x66, 0xee,
- 0x1d, 0x1c, 0x35, 0x8e, 0x6a, 0x17, 0x70, 0xc3, 0xbc, 0x0b, 0xa8, 0xfa, 0x8c, 0xc8, 0xda, 0x53, 0x8d, 0x42,
- 0xb0, 0xda, 0x87, 0x8a, 0xe4, 0xd8, 0x43, 0xe2, 0xa1, 0x3f, 0x81, 0xe6, 0x57, 0xb1, 0x17, 0x1a, 0xf6, 0xb5,
- 0xe2, 0xeb, 0x1d, 0x6f, 0x3c, 0xef, 0x20, 0xf6, 0x70, 0x9b, 0xcb, 0x69, 0x5c, 0x85, 0xb6, 0xbd, 0x8a, 0xa6,
- 0xf2, 0x57, 0xb1, 0x09, 0x12, 0x6e, 0x8a, 0xcb, 0x99, 0x42, 0xdf, 0x13, 0x05, 0x74, 0x3f, 0x30, 0xc1, 0x8b,
- 0xec, 0x10, 0xb8, 0x83, 0x89, 0xa2, 0x00, 0x62, 0x78, 0xf1, 0xbd, 0xb1, 0xe4, 0xd1, 0x5c, 0x1f, 0x1a, 0x62,
- 0x23, 0xb2, 0xb9, 0x49, 0xd7, 0x04, 0x3d, 0xa8, 0xcd, 0x20, 0xbd, 0x4b, 0xc5, 0x9e, 0x95, 0x89, 0x56, 0x42,
- 0xc6, 0xcf, 0x00, 0x4b, 0x43, 0xa8, 0xaa, 0x62, 0x0a, 0xa3, 0xac, 0xe6, 0x1b, 0x81, 0xae, 0x47, 0x2d, 0x01,
- 0x33, 0x31, 0x09, 0x93, 0x90, 0x48, 0x15, 0xb9, 0x26, 0x08, 0x7f, 0xa0, 0xf2, 0xb2, 0x9e, 0x62, 0xdf, 0x4a,
- 0xc9, 0x5f, 0x84, 0x8c, 0x40, 0xe8, 0x28, 0xa7, 0x0d, 0x28, 0xb0, 0x4b, 0x1c, 0x53, 0xb7, 0x70, 0x13, 0x5f,
- 0x1b, 0xd7, 0xd3, 0x08, 0xce, 0x5e, 0x7c, 0x2a, 0x35, 0x40, 0x8c, 0xed, 0xbf, 0x83, 0x59, 0x27, 0x99, 0x8e,
- 0x1d, 0xd4, 0x38, 0xba, 0x63, 0x8e, 0x31, 0xc1, 0xc8, 0x08, 0xba, 0x12, 0x1f, 0x31, 0x15, 0xcb, 0x5f, 0x4a,
- 0x11, 0xc3, 0x4a, 0x15, 0xcb, 0xe9, 0xc9, 0x29, 0xd9, 0x38, 0x7e, 0xf9, 0xd0, 0x9d, 0xde, 0x97, 0xce, 0x6f,
- 0xfb, 0x3f, 0x35, 0x56, 0x5f, 0xa0, 0xbe, 0xd0, 0x46, 0xb1, 0x48, 0x7f, 0xbe, 0x5b, 0x59, 0xa8, 0x19, 0xb8,
- 0x08, 0x13, 0x46, 0x2e, 0x25, 0x33, 0xd7, 0x5c, 0xc4, 0xb1, 0xe1, 0xa3, 0xe5, 0xf0, 0x99, 0x24, 0x02, 0xfc,
- 0x4f, 0x92, 0x74, 0x9f, 0x45, 0x85, 0x63, 0xf3, 0xb0, 0xad, 0x19, 0x6e, 0x79, 0xae, 0x9c, 0x50, 0x25, 0xb4,
- 0x53, 0xde, 0xd0, 0xd2, 0xfd, 0x0b, 0x0a, 0x06, 0x3c, 0x49, 0x89, 0x78, 0xcf, 0x70, 0xdd, 0x5c, 0xaa, 0x5a,
- 0xed, 0x96, 0xd3, 0x47, 0xa6, 0x3a, 0xd2, 0xd3, 0xbb, 0xf1, 0x63, 0xa7, 0x6f, 0x07, 0xb5, 0x68, 0xf2, 0x39,
- 0x62, 0x24, 0xca, 0x19, 0x74, 0xa1, 0xa7, 0xec, 0x55, 0xd6, 0x15, 0x44, 0xfc, 0xe3, 0xb7, 0x5d, 0x5e, 0xec,
- 0xba, 0x34, 0x39, 0xbd, 0xfe, 0xe0, 0x79, 0xd8, 0x84, 0x66, 0x6b, 0x62, 0xc1, 0x85, 0xf4, 0xad, 0x4e, 0xa4,
- 0x10, 0xb7, 0xa7, 0x10, 0x3b, 0x13, 0x2c, 0x3f, 0x38, 0x0e, 0x15, 0xa8, 0x55, 0x3c, 0xaa, 0x11, 0xe9, 0x03,
- 0x6a, 0x8c, 0xb4, 0x95, 0x82, 0x1c, 0x89, 0x35, 0x4f, 0x5e, 0xff, 0x38, 0x89, 0x95, 0x92, 0x0e, 0xc0, 0x0b,
- 0x92, 0x48, 0x3a, 0x5b, 0x05, 0xd2, 0x95, 0x15, 0x71, 0x3e, 0x60, 0xc8, 0x91, 0x03, 0x06, 0x5f, 0x61, 0xa3,
- 0x6f, 0x15, 0x65, 0xfc, 0xd8, 0x4a, 0x42, 0xd0, 0xcf, 0x7e, 0x1b, 0x16, 0x2c, 0x84, 0x3a, 0x6e, 0xef, 0x4e,
- 0x51, 0x47, 0x67, 0x83, 0x32, 0x00, 0xaa, 0x26, 0xb6, 0x84, 0x6f, 0x62, 0xe0, 0x3e, 0xb7, 0xfa, 0xf8, 0x10,
- 0xf3, 0x61, 0xaa, 0xd4, 0x5f, 0x53, 0xfe, 0xeb, 0x32, 0x38, 0xaf, 0x8a, 0x88, 0x29, 0x9a, 0x2a, 0x7a, 0x49,
- 0x1c, 0x72, 0xfa, 0x32, 0x75, 0x82, 0xee, 0xb2, 0x01, 0xc9, 0x22, 0x4e, 0xa2, 0x03, 0x31, 0xa0, 0x0c, 0xaa,
- 0xd7, 0x22, 0x9f, 0x11, 0x09, 0xd8, 0xf6, 0x5b, 0xa0, 0xd7, 0x98, 0x2b, 0xf6, 0xd1, 0x1e, 0xbb, 0x47, 0xef,
- 0xdc, 0x48, 0xec, 0xff, 0x24, 0x46, 0x77, 0xdc, 0xf3, 0xfc, 0xa5, 0xee, 0x9a, 0x7c, 0x26, 0xd7, 0x27, 0x09,
- 0xf4, 0x67, 0x17, 0xda, 0x37, 0x8c, 0x1f, 0xef, 0xc6, 0xc4, 0x4c, 0x36, 0x8a, 0x25, 0x14, 0xb2, 0xe3, 0xa1,
- 0x2e, 0xd3, 0x0b, 0x70, 0x6a, 0x51, 0x8e, 0x46, 0x27, 0x18, 0x1a, 0x79, 0xbf, 0x5a, 0xd7, 0x18, 0x5d, 0x13,
- 0xea, 0x1d, 0xd7, 0xf4, 0x18, 0x3d, 0xc4, 0x0e, 0x0f, 0xb1, 0x9c, 0xfe, 0x77, 0xb4, 0x23, 0x02, 0x36, 0x8f,
- 0x30, 0x46, 0xf8, 0x16, 0x41, 0xce, 0xb1, 0x04, 0xee, 0x51, 0xa6, 0x23, 0x03, 0x79, 0xcf, 0xff, 0x52, 0xf0,
- 0x0e, 0x67, 0xe8, 0xe5, 0x1d, 0x3e, 0x8a, 0x32, 0x34, 0x79, 0x93, 0x5e, 0xdc, 0xa7, 0x4f, 0x7d, 0x74, 0x48,
- 0x3b, 0xf5, 0x01, 0xd6, 0x8f, 0x74, 0x39, 0x45, 0x96, 0xb7, 0x07, 0x94, 0xc1, 0x17, 0x40, 0xfb, 0xa2, 0xa6,
- 0x31, 0x67, 0x06, 0xfa, 0xbb, 0xbe, 0x15, 0x81, 0xae, 0xa2, 0x7d, 0xf1, 0xe7, 0xb2, 0x1a, 0xa2, 0x98, 0x83,
- 0x3f, 0x8c, 0x17, 0x65, 0xf9, 0x79, 0x6d, 0x17, 0x9a, 0x22, 0x93, 0x2a, 0x42, 0x67, 0x8c, 0xbb, 0x59, 0x5b,
- 0xa3, 0x2e, 0xbe, 0xa1, 0xc2, 0xaf, 0xa5, 0xc8, 0xa4, 0x6e, 0x79, 0x5c, 0x09, 0x2d, 0xd9, 0x12, 0xa6, 0xa7,
- 0xf8, 0x5f, 0x79, 0x33, 0x0b, 0x3e, 0x36, 0xf6, 0xac, 0x11, 0xd3, 0xe8, 0xd2, 0xc3, 0x6b, 0xfb, 0xbe, 0x5e,
- 0xba, 0x4f, 0x5e, 0xf0, 0xbb, 0x5d, 0x65, 0x26, 0x40, 0x74, 0x51, 0xdd, 0x83, 0x19, 0x1b, 0x8f, 0x31, 0x3f,
- 0xab, 0x53, 0xcd, 0xd6, 0xa6, 0x1e, 0x0e, 0x51, 0xae, 0x98, 0x86, 0x04, 0x56, 0x37, 0xa9, 0x8b, 0xe7, 0x54,
- 0x21, 0x73, 0x82, 0x06, 0x89, 0xa2, 0x3c, 0x72, 0x38, 0xba, 0x98, 0xf2, 0x07, 0x9b, 0x65, 0x1e, 0x37, 0x92,
- 0xf8, 0x38, 0xbb, 0xbe, 0x35, 0xed, 0x2b, 0x28, 0x3d, 0xe3, 0xd9, 0x36, 0x08, 0xc9, 0xf4, 0xe6, 0x19, 0xaf,
- 0x6c, 0xbf, 0x80, 0xd4, 0x1b, 0xda, 0x2c, 0x49, 0x62, 0xd5, 0x05, 0xc6, 0x4d, 0x6d, 0xc2, 0xf2, 0x37, 0xa7,
- 0x7a, 0x2b, 0x06, 0x15, 0x6b, 0x8c, 0x6d, 0xef, 0x1e, 0xf9, 0xe1, 0xdc, 0xce, 0xd1, 0x21, 0xa4, 0x19, 0xcc,
- 0xa1, 0x1e, 0x44, 0xa3, 0x9c, 0x7d, 0xe5, 0x52, 0xe5, 0xad, 0xfc, 0xdd, 0x02, 0xfb, 0x13, 0x31, 0xbc, 0x04,
- 0x7b, 0x4c, 0x79, 0xff, 0x01, 0xc4, 0x94, 0xcb, 0x17, 0xc8, 0x4c, 0xe3, 0x55, 0x22, 0xd7, 0xba, 0xc1, 0x1d,
- 0x44, 0xe5, 0x96, 0x17, 0xc4, 0x2d, 0x66, 0xf4, 0x5e, 0x72, 0xc3, 0x84, 0x15, 0xd9, 0x91, 0x79, 0xb7, 0x4b,
- 0x7a, 0x85, 0x8a, 0xa7, 0x80, 0x5c, 0x59, 0xa3, 0x0a, 0x38, 0x4d, 0xa6, 0x36, 0x15, 0x5b, 0xd2, 0x8f, 0x2c,
- 0xd2, 0x6f, 0x07, 0xa8, 0x75, 0xc1, 0x29, 0x22, 0x90, 0x3b, 0x57, 0x34, 0x0e, 0x01, 0x88, 0x45, 0xad, 0xed,
- 0x9a, 0x4f, 0x83, 0x9a, 0xf4, 0x46, 0xcf, 0x48, 0xcf, 0x3c, 0x27, 0x10, 0xf5, 0x8d, 0xfa, 0x66, 0x37, 0x86,
- 0x3b, 0xe0, 0x64, 0x7b, 0xd6, 0x36, 0x32, 0x6b, 0x35, 0x5c, 0xdd, 0x03, 0x62, 0x39, 0xf8, 0x73, 0xe3, 0xd9,
- 0x87, 0x90, 0x2b, 0xe4, 0x0d, 0xca, 0xc1, 0x2d, 0x20, 0xaf, 0x38, 0x11, 0xe7, 0x05, 0x10, 0xb5, 0x43, 0x9b,
- 0x43, 0xd5, 0xc7, 0x15, 0x16, 0xa9, 0x58, 0x4a, 0xaa, 0xd1, 0xb6, 0xdd, 0xe0, 0x50, 0x52, 0xdb, 0xee, 0x38,
- 0x7c, 0xa0, 0x23, 0x61, 0xbb, 0x33, 0x2b, 0x1a, 0x91, 0xa3, 0x86, 0x5e, 0xb6, 0xae, 0xf3, 0xbc, 0xf2, 0x09,
- 0x61, 0xd9, 0x32, 0x8d, 0x1c, 0x06, 0xa2, 0x7f, 0xdd, 0x6b, 0x80, 0x0f, 0x29, 0x71, 0x84, 0x9d, 0x14, 0xe6,
- 0x7a, 0xae, 0x34, 0x90, 0x93, 0x98, 0x97, 0x20, 0xd1, 0xaa, 0xcf, 0xad, 0x6d, 0x78, 0x93, 0x82, 0x65, 0x6d,
- 0x47, 0x77, 0x00, 0x2e, 0x23, 0x49, 0xd1, 0xe1, 0xc2, 0x0c, 0x32, 0xeb, 0x07, 0x35, 0xa6, 0xe9, 0x15, 0xab,
- 0x10, 0xa8, 0x51, 0xc7, 0xc2, 0x50, 0x2d, 0xd5, 0x58, 0x0b, 0x2f, 0xad, 0x02, 0x20, 0x96, 0xb4, 0xb4, 0xfb,
- 0x9c, 0x09, 0xa7, 0x1e, 0xfe, 0x87, 0xa0, 0xfe, 0xe5, 0x64, 0x40, 0xff, 0x5a, 0x3c, 0xed, 0xe0, 0x1c, 0xe3,
- 0xfc, 0xb1, 0x99, 0x66, 0x4f, 0xe3, 0xae, 0x60, 0xef, 0xaf, 0xcc, 0x35, 0x5a, 0x06, 0xe9, 0x7a, 0x0d, 0x94,
- 0x62, 0xe6, 0x37, 0xb1, 0x5b, 0xf7, 0x35, 0x24, 0x96, 0x4f, 0x47, 0xb7, 0x9a, 0xfa, 0x0d, 0x91, 0x30, 0xa9,
- 0x38, 0x65, 0xa6, 0xd9, 0x13, 0x69, 0x2b, 0x2b, 0x51, 0x1a, 0x8e, 0xb5, 0xb4, 0x59, 0xde, 0x24, 0xa9, 0xbb,
- 0xe7, 0xc6, 0x37, 0x48, 0x52, 0x41, 0xe1, 0x0a, 0x01, 0x2b, 0x8a, 0x72, 0xee, 0xc9, 0xc1, 0x49, 0xed, 0xa7,
- 0x2a, 0x14, 0xd3, 0x91, 0x44, 0xef, 0x42, 0x14, 0x7f, 0xeb, 0xf6, 0x5c, 0x63, 0x9a, 0x45, 0x03, 0x2f, 0x88,
- 0x90, 0xcb, 0x95, 0x55, 0x61, 0x33, 0x36, 0x34, 0x97, 0x80, 0x1e, 0xb2, 0x0b, 0x46, 0x37, 0xa9, 0xb5, 0xb2,
- 0xb0, 0xee, 0xda, 0x70, 0x95, 0x26, 0x6e, 0x63, 0x1c, 0x24, 0x69, 0xe7, 0xc3, 0xe1, 0xe0, 0xc1, 0x36, 0x03,
- 0x24, 0x48, 0x99, 0xb4, 0x12, 0x39, 0x85, 0xc9, 0x99, 0xa2, 0x6a, 0x99, 0x22, 0x69, 0xb2, 0xe1, 0x85, 0x6f,
- 0xd9, 0x26, 0x27, 0x09, 0xa0, 0xdc, 0x50, 0x00, 0xba, 0x5b, 0xc0, 0xa8, 0x5c, 0xb4, 0xf9, 0x0e, 0x7f, 0xe4,
- 0x9e, 0xf3, 0xf8, 0xc7, 0x58, 0x9e, 0xad, 0x73, 0x44, 0x16, 0x03, 0x21, 0x57, 0xbb, 0x38, 0xde, 0x63, 0xb1,
- 0xa7, 0x9f, 0xd4, 0x64, 0x04, 0xce, 0x7e, 0xfe, 0x07, 0xcd, 0xac, 0x63, 0xba, 0x57, 0x7a, 0x07, 0x86, 0x5f,
- 0x15, 0x5d, 0x84, 0x28, 0x66, 0xc1, 0x5b, 0x83, 0x2e, 0x77, 0xa8, 0x61, 0x35, 0x2b, 0x2d, 0x50, 0xf2, 0x41,
- 0xa4, 0x94, 0x7f, 0x19, 0xdf, 0xc4, 0xe6, 0x97, 0xc7, 0x4c, 0xd3, 0xd1, 0x6d, 0x4b, 0xab, 0x49, 0xee, 0x6e,
- 0x1f, 0xdf, 0x3f, 0xa8, 0x4b, 0x38, 0xdb, 0xb6, 0xca, 0x5f, 0x75, 0xd5, 0xac, 0x2c, 0x89, 0x2c, 0xf2, 0xa4,
- 0x3c, 0x88, 0x7b, 0x0e, 0x5f, 0xa6, 0x47, 0xbe, 0xca, 0x5a, 0x13, 0x20, 0x5a, 0x67, 0x8f, 0xcd, 0xbd, 0xaf,
- 0x8d, 0x2b, 0x32, 0xb5, 0x43, 0xa4, 0x5c, 0xfe, 0xe8, 0xe8, 0xd1, 0x29, 0x04, 0xb9, 0xbe, 0x73, 0x2e, 0x77,
- 0xa0, 0x1c, 0xac, 0xb2, 0x73, 0x78, 0x90, 0x0d, 0xd6, 0x28, 0x46, 0xe8, 0x74, 0xf8, 0xdd, 0x51, 0x59, 0x25,
- 0xd7, 0x5f, 0x58, 0xe2, 0x0c, 0x28, 0xcc, 0x9a, 0x2b, 0x90, 0xad, 0x0c, 0x43, 0xa1, 0x88, 0x46, 0xe5, 0xf6,
- 0xb6, 0xac, 0xbb, 0x97, 0x52, 0xb1, 0x09, 0x7b, 0x5b, 0x4d, 0x7a, 0xe4, 0xc2, 0xf6, 0x4d, 0xd6, 0x19, 0xb3,
- 0x64, 0xe6, 0x7e, 0xf2, 0xb6, 0x9b, 0xda, 0x60, 0x64, 0x91, 0x7a, 0xb3, 0x0a, 0x32, 0xff, 0x75, 0x62, 0xe7,
- 0x03, 0xfa, 0x2f, 0x34, 0xc8, 0xdc, 0x24, 0x40, 0xe0, 0x93, 0x19, 0x7b, 0x31, 0x23, 0x23, 0x16, 0xcd, 0x3b,
- 0xf2, 0x3d, 0x7e, 0x00, 0xb3, 0xad, 0x5e, 0x19, 0x16, 0x2c, 0xe4, 0xef, 0xc8, 0x8e, 0x6c, 0x83, 0x40, 0x69,
- 0xbf, 0x80, 0x33, 0xdf, 0xbf, 0xaf, 0x48, 0xe5, 0x1f, 0xfd, 0x7c, 0xbf, 0x4c, 0xed, 0xf8, 0x4b, 0xe0, 0x11,
- 0xeb, 0x0e, 0xdc, 0xd4, 0xd6, 0x09, 0x85, 0x59, 0x28, 0x21, 0xe5, 0x8f, 0xda, 0x5f, 0x4a, 0xaa, 0x44, 0x62,
- 0x7e, 0x8c, 0xb4, 0xa6, 0x80, 0xf5, 0xca, 0x9d, 0xe6, 0x59, 0xc6, 0xd8, 0x44, 0x09, 0x6a, 0x24, 0x03, 0x4a,
- 0xee, 0x32, 0x9d, 0xf8, 0x1b, 0x49, 0xb7, 0x90, 0x70, 0x91, 0xb2, 0x0f, 0x8e, 0xe4, 0x2b, 0xc0, 0xbd, 0x2f,
- 0x71, 0x11, 0x4c, 0xd3, 0xb8, 0x39, 0xf1, 0x3a, 0x10, 0xb6, 0x36, 0x89, 0x84, 0x5b, 0xdd, 0x5f, 0xd1, 0xe0,
- 0xbd, 0x4a, 0x02, 0x2a, 0x5c, 0x67, 0xd7, 0xc1, 0x07, 0x4d, 0xe2, 0xc1, 0xab, 0xa9, 0xc3, 0x69, 0x85, 0x8d,
- 0xff, 0x63, 0x7d, 0x36, 0xb6, 0x9f, 0xe2, 0x41, 0x49, 0x36, 0x70, 0xa3, 0x03, 0x95, 0x93, 0x90, 0x77, 0x33,
- 0x0a, 0xed, 0xa8, 0x8b, 0x7e, 0x32, 0x2a, 0x95, 0x2e, 0x11, 0x25, 0xc9, 0x40, 0x9c, 0x6e, 0x61, 0x8f, 0x6f,
- 0x52, 0x2b, 0x7f, 0xc4, 0x07, 0xde, 0x34, 0xb8, 0x43, 0x1c, 0xc5, 0x91, 0xc2, 0xc6, 0xba, 0x47, 0x27, 0x2e,
- 0x3f, 0xda, 0x48, 0xac, 0xca, 0x94, 0x56, 0x0e, 0x88, 0xb1, 0x9c, 0x98, 0xd6, 0xd2, 0x48, 0xbb, 0xa8, 0xdb,
- 0x03, 0xc1, 0x0a, 0xba, 0x3d, 0x77, 0xb3, 0xa4, 0xf0, 0x18, 0x4e, 0x9d, 0x69, 0xaa, 0x85, 0x06, 0xa4, 0xd6,
- 0x58, 0x94, 0xab, 0xf9, 0x11, 0x78, 0x78, 0x70, 0xf8, 0x07, 0xce, 0x8b, 0xc0, 0xd0, 0xac, 0x70, 0xae, 0x52,
- 0xd4, 0xc2, 0x32, 0xd2, 0xac, 0xc1, 0xcd, 0xc4, 0xda, 0xa2, 0x8e, 0x39, 0xc6, 0x68, 0x47, 0x6a, 0xb2, 0xcd,
- 0x2e, 0x63, 0x20, 0xa9, 0x32, 0x66, 0xbd, 0xe6, 0x6c, 0xd1, 0xe0, 0x91, 0xae, 0x3f, 0x89, 0x51, 0xcb, 0x86,
- 0xa4, 0x01, 0x37, 0x2c, 0xba, 0x96, 0xfc, 0x6f, 0x44, 0x3b, 0x58, 0xdd, 0x99, 0x24
+ 0x9e, 0x9b, 0x1e, 0x97, 0x9e, 0x6d, 0x82, 0xbf, 0x64, 0xfc, 0x7d, 0x2c, 0x5f, 0xdb, 0xd5, 0x00, 0xa0, 0x1e,
+ 0x86, 0x1c, 0x79, 0x3e, 0xf5, 0xb3, 0xce, 0x0b, 0xcc, 0x53, 0xce, 0x26, 0x35, 0x94, 0xbb, 0xdc, 0xf3, 0xa9,
+ 0x1c, 0x43, 0x70, 0xc9, 0xd9, 0xc3, 0xe3, 0x6d, 0xdd, 0x7c, 0x60, 0xb1, 0x64, 0x08, 0x41, 0x4f, 0x72, 0x70,
+ 0x29, 0x2b, 0xc2, 0x8e, 0x85, 0x7d, 0xae, 0x17, 0x55, 0x4d, 0x22, 0x56, 0x2b, 0x0c, 0xdf, 0x18, 0xf7, 0xfa,
+ 0x4c, 0x54, 0x6a, 0x03, 0xf8, 0x2c, 0xd4, 0x9e, 0x88, 0xd8, 0x31, 0xb9, 0xa0, 0x09, 0xdb, 0x5a, 0xae, 0xbd,
+ 0xc3, 0x04, 0x59, 0x49, 0x16, 0x1c, 0xaa, 0xda, 0xcd, 0x2a, 0xb3, 0x6f, 0xd2, 0x92, 0xb5, 0x86, 0x05, 0x57,
+ 0xfb, 0xc9, 0x8a, 0x72, 0x82, 0x05, 0xd4, 0xda, 0x58, 0xf0, 0x2e, 0xac, 0xbc, 0xd6, 0x81, 0xfc, 0x67, 0xfb,
+ 0x49, 0xcc, 0x0a, 0xed, 0xbf, 0xe9, 0x28, 0xa7, 0x65, 0xab, 0x73, 0x19, 0xbe, 0x22, 0xe7, 0xac, 0xb9, 0x48,
+ 0xad, 0x0b, 0x3d, 0xb2, 0xf9, 0x5a, 0x9c, 0x67, 0x4e, 0x08, 0x7d, 0x9c, 0x97, 0xab, 0x52, 0xee, 0x13, 0x16,
+ 0xe2, 0x7c, 0x0c, 0xa6, 0xee, 0xea, 0xbc, 0xe4, 0xe3, 0xcb, 0x82, 0x96, 0xa6, 0x74, 0xaa, 0xb3, 0xe2, 0xca,
+ 0xa3, 0xf7, 0x0a, 0xac, 0x13, 0xbd, 0xd6, 0x9f, 0x6c, 0xf3, 0xbc, 0x9a, 0x73, 0xa5, 0xaa, 0x84, 0x16, 0x03,
+ 0x41, 0x64, 0xd0, 0xc3, 0x4b, 0x01, 0x1e, 0x9b, 0x95, 0x0d, 0x95, 0xa7, 0x53, 0x86, 0xbb, 0x77, 0xb3, 0x2e,
+ 0xaa, 0xa6, 0x93, 0x99, 0x4f, 0x75, 0xb5, 0x8d, 0xc5, 0x5d, 0xa6, 0x3b, 0x71, 0x20, 0xe4, 0x2d, 0x0c, 0xfc,
+ 0x57, 0xfc, 0x33, 0x76, 0x0b, 0x5d, 0xdf, 0x61, 0x80, 0x50, 0x22, 0x2e, 0x30, 0xd6, 0x65, 0xd1, 0x8a, 0xe4,
+ 0x54, 0xf2, 0xc8, 0xa1, 0xc0, 0x2d, 0xed, 0x5a, 0xeb, 0x30, 0x9d, 0x8d, 0xf9, 0xde, 0xd2, 0x47, 0x71, 0x73,
+ 0xd4, 0x77, 0x76, 0xad, 0xc4, 0x5c, 0x32, 0x49, 0xbc, 0xcc, 0xa7, 0xcb, 0xde, 0x4f, 0x2d, 0x0c, 0x4d, 0xaa,
+ 0x9b, 0x6c, 0xf1, 0x49, 0xdd, 0x3a, 0xd3, 0x89, 0xaf, 0x6f, 0x14, 0x33, 0xc0, 0x40, 0xce, 0xb7, 0x1d, 0x6c,
+ 0xe1, 0x28, 0x78, 0x12, 0x1b, 0xc0, 0xd9, 0x1e, 0xa1, 0x14, 0x4e, 0xae, 0x1d, 0x8a, 0x79, 0x1f, 0xf4, 0x3e,
+ 0x21, 0x56, 0x5e, 0xb1, 0x90, 0x63, 0x28, 0xc1, 0xcf, 0xb4, 0xf9, 0xf4, 0x50, 0x51, 0xd2, 0xeb, 0xbe, 0x29,
+ 0xe7, 0xeb, 0x15, 0x06, 0xb7, 0x99, 0x01, 0xe5, 0x25, 0xd4, 0x3f, 0x8a, 0x5a, 0x17, 0xc1, 0x4a, 0x87, 0x18,
+ 0x16, 0x3e, 0xaf, 0xe4, 0xc7, 0x75, 0x4b, 0x95, 0x68, 0x9f, 0x50, 0x28, 0xd1, 0x8a, 0x87, 0x5d, 0x0a, 0x7a,
+ 0x0d, 0xfa, 0x95, 0xa7, 0xce, 0x05, 0x85, 0xe6, 0xf3, 0x34, 0x82, 0xac, 0x73, 0xf8, 0xc4, 0x7c, 0x6b, 0x9a,
+ 0x52, 0xcb, 0x99, 0x41, 0xfc, 0x40, 0xac, 0xf8, 0x08, 0x4c, 0x16, 0x4c, 0x4c, 0x8d, 0x15, 0x0b, 0x04, 0xbe,
+ 0x8e, 0x09, 0xa0, 0xe9, 0x30, 0x0e, 0xd5, 0x61, 0xf7, 0x95, 0xcd, 0x88, 0x35, 0x0a, 0x7c, 0x1b, 0x67, 0x8c,
+ 0xe1, 0xb8, 0x2c, 0x91, 0xa1, 0x12, 0x03, 0x3c, 0xef, 0xd2, 0x30, 0x38, 0x75, 0x2a, 0x7c, 0xb2, 0xab, 0xaa,
+ 0x68, 0x7e, 0xff, 0xd4, 0xdb, 0xb9, 0x17, 0xca, 0x6a, 0x96, 0x19, 0xdb, 0x15, 0xd1, 0x46, 0xe2, 0xf8, 0xe6,
+ 0x3f, 0x9a, 0xdf, 0x29, 0xa9, 0x96, 0xbd, 0xb1, 0x9c, 0xa3, 0x2e, 0x42, 0x62, 0x64, 0xd4, 0xc2, 0x84, 0xec,
+ 0x82, 0x0e, 0x3b, 0x2f, 0x03, 0x3e, 0x2f, 0x18, 0x79, 0x17, 0x5a, 0xff, 0x08, 0x74, 0x39, 0xdc, 0x0e, 0x1f,
+ 0x26, 0x20, 0x6b, 0xde, 0x12, 0x62, 0x1a, 0x22, 0xde, 0xab, 0xa4, 0x0c, 0x4f, 0x8c, 0xf8, 0xec, 0x61, 0xae,
+ 0xce, 0x24, 0x25, 0xc4, 0x1f, 0x81, 0x8a, 0xff, 0x8a, 0x12, 0x7a, 0x43, 0x1c, 0x72, 0xa0, 0xf6, 0x37, 0x45,
+ 0x84, 0x5f, 0x27, 0x00, 0xb4, 0xb9, 0xb6, 0xc8, 0x09, 0x14, 0xe9, 0x17, 0x3b, 0xef, 0x85, 0xc6, 0x0e, 0xa1,
+ 0x08, 0x0f, 0x22, 0xbf, 0x17, 0xf5, 0x31, 0x84, 0xa9, 0x45, 0x4e, 0x33, 0x7f, 0x67, 0xfe, 0x79, 0x51, 0x2e,
+ 0x93, 0x4a, 0x15, 0xc0, 0x23, 0x54, 0x42, 0x48, 0xf6, 0xec, 0x5b, 0x0f, 0xc9, 0x7c, 0x35, 0xcd, 0xd4, 0x43,
+ 0x21, 0xe9, 0x96, 0x9e, 0xd9, 0xeb, 0x42, 0x74, 0x7e, 0xe3, 0xcf, 0x92, 0x78, 0x01, 0x04, 0x5c, 0xe9, 0x99,
+ 0x79, 0x66, 0xff, 0x69, 0xbd, 0x30, 0x36, 0x9d, 0x9b, 0x84, 0x90, 0x36, 0x72, 0x23, 0xf9, 0xb7, 0x81, 0x9d,
+ 0xd5, 0xbb, 0xd5, 0xd7, 0x58, 0x47, 0x38, 0xcc, 0x0a, 0xf3, 0xcb, 0x05, 0x32, 0x64, 0xdc, 0x48, 0xf2, 0x09,
+ 0xbd, 0xa5, 0x23, 0x01, 0x8f, 0x37, 0xb4, 0xd4, 0xf5, 0x09, 0xfb, 0xe5, 0x97, 0xca, 0x31, 0x74, 0xd3, 0x89,
+ 0x99, 0xb3, 0xca, 0xdf, 0x90, 0x9a, 0xa4, 0xb5, 0x0a, 0xea, 0x7d, 0x75, 0xa1, 0x0f, 0x44, 0x42, 0xd2, 0x8d,
+ 0x91, 0xbe, 0x7f, 0x27, 0xc4, 0x27, 0xb4, 0x83, 0xba, 0xad, 0x15, 0x52, 0x59, 0xa1, 0x6e, 0x5f, 0xa7, 0xe5,
+ 0x88, 0x4b, 0x4d, 0x67, 0x06, 0x3e, 0x08, 0xcb, 0x57, 0x0e, 0x96, 0x67, 0xf9, 0x4b, 0xc9, 0x0e, 0xf9, 0x6b,
+ 0xc2, 0x01, 0xc3, 0x8f, 0x16, 0xe1, 0x7e, 0x2e, 0x2d, 0x8f, 0x9d, 0x1e, 0x88, 0x3f, 0x05, 0xe1, 0x44, 0x91,
+ 0x64, 0xb2, 0x76, 0xf5, 0x35, 0xe9, 0xb1, 0x02, 0x2d, 0x96, 0xfc, 0x86, 0x29, 0x65, 0xd0, 0x6e, 0x27, 0xba,
+ 0x3d, 0x2d, 0xa6, 0x42, 0xee, 0x9f, 0xd7, 0xc2, 0x42, 0xb3, 0x62, 0xa3, 0x30, 0x24, 0x24, 0x71, 0xdd, 0xe7,
+ 0x6c, 0x6e, 0x7a, 0xfb, 0x20, 0x0e, 0x83, 0x19, 0x9a, 0x1b, 0x73, 0x72, 0x3b, 0xf5, 0x48, 0xba, 0xf4, 0xce,
+ 0x45, 0xae, 0x60, 0x12, 0xdd, 0xbe, 0x27, 0xb9, 0xd3, 0xa8, 0xf3, 0x98, 0xc6, 0x6e, 0x1c, 0x34, 0x59, 0x6e,
+ 0xed, 0xe1, 0xb7, 0xa8, 0xc5, 0xd1, 0x21, 0x23, 0x60, 0xcf, 0x86, 0xd0, 0x03, 0x58, 0xe2, 0xc5, 0x53, 0x58,
+ 0x42, 0x05, 0x8a, 0x76, 0x7b, 0x1a, 0x14, 0xa0, 0x71, 0xee, 0xc6, 0xe9, 0x38, 0xf1, 0x6e, 0xe0, 0x1c, 0xc6,
+ 0x82, 0x25, 0x0b, 0x4a, 0x47, 0xb8, 0x1a, 0xe5, 0x21, 0x27, 0x12, 0x52, 0x1d, 0xef, 0xc3, 0xca, 0x4e, 0x03,
+ 0xbe, 0xaf, 0x0b, 0x5c, 0x8e, 0x6c, 0xb4, 0x30, 0x61, 0xe9, 0x45, 0xc4, 0xa5, 0xc1, 0x87, 0x49, 0xb5, 0x01,
+ 0x6e, 0x35, 0x20, 0xc7, 0x58, 0xed, 0xed, 0x6c, 0x56, 0x6c, 0x81, 0xd9, 0x8b, 0x58, 0x8d, 0xe0, 0x24, 0xba,
+ 0x27, 0x69, 0xa8, 0xcb, 0x8c, 0xf7, 0xa1, 0x30, 0x82, 0xd4, 0xa5, 0xe0, 0x96, 0x33, 0x2f, 0x7e, 0xdf, 0x9f,
+ 0x28, 0x3a, 0xa8, 0xab, 0xcf, 0x50, 0x70, 0xd9, 0xaf, 0xf1, 0xfe, 0x29, 0xb3, 0x84, 0x55, 0x36, 0x02, 0xc3,
+ 0xf9, 0x11, 0xd2, 0x09, 0x3f, 0xbd, 0x4e, 0x12, 0x92, 0x56, 0x1c, 0xad, 0x72, 0x59, 0xae, 0x88, 0x40, 0x6f,
+ 0xbd, 0x50, 0x69, 0x99, 0xe9, 0x40, 0x21, 0x15, 0xdf, 0x19, 0x6d, 0xcf, 0x82, 0x83, 0x67, 0xd5, 0x30, 0x79,
+ 0x32, 0x94, 0xd4, 0xf0, 0x43, 0xf1, 0x66, 0x07, 0xe2, 0xab, 0x44, 0x94, 0x0b, 0x51, 0x91, 0x1d, 0xab, 0x3b,
+ 0xe4, 0x39, 0x81, 0x35, 0x57, 0x10, 0xd8, 0xaf, 0x15, 0x98, 0x0e, 0xf0, 0x9c, 0xdc, 0x28, 0x03, 0x7e, 0xa2,
+ 0x36, 0x8b, 0xbc, 0x29, 0x5a, 0x92, 0xef, 0x46, 0xc2, 0x6a, 0x04, 0x10, 0xc7, 0x4e, 0xb9, 0x1f, 0x53, 0x56,
+ 0x18, 0xfb, 0xba, 0xe4, 0x59, 0x5c, 0x94, 0xaa, 0x37, 0x33, 0x85, 0x20, 0xca, 0x6d, 0x72, 0x84, 0x75, 0xe2,
+ 0x68, 0xb4, 0xd2, 0x27, 0x38, 0x65, 0x7f, 0x6c, 0x22, 0xe3, 0x0a, 0xa3, 0x2d, 0x4c, 0x84, 0xa7, 0x88, 0xca,
+ 0x65, 0xcc, 0x79, 0xe8, 0x92, 0x4a, 0x7a, 0xd4, 0xfb, 0xa8, 0xeb, 0x33, 0xdf, 0x55, 0xcf, 0x6a, 0x92, 0x38,
+ 0xd0, 0xd6, 0xcc, 0x84, 0xe4, 0x3d, 0xdd, 0x4c, 0x67, 0x74, 0x48, 0x30, 0xca, 0x37, 0x48, 0x2a, 0x67, 0xf3,
+ 0xe0, 0x64, 0xf3, 0x7f, 0xb4, 0x80, 0xb8, 0xe1, 0xc3, 0xc8, 0xba, 0x0d, 0x6b, 0x58, 0x13, 0x17, 0x95, 0x15,
+ 0x85, 0x03, 0x14, 0x1c, 0x68, 0xe9, 0x69, 0xa9, 0xca, 0x32, 0xd4, 0x79, 0x9b, 0x3a, 0x46, 0x11, 0x31, 0xb2,
+ 0x7a, 0xa6, 0xaf, 0x6f, 0x65, 0xec, 0x71, 0xd3, 0x10, 0x9e, 0x4c, 0xb2, 0x14, 0x48, 0x7f, 0xcf, 0xd0, 0x37,
+ 0xa6, 0xa4, 0x00, 0x78, 0x2f, 0x04, 0xf7, 0xc8, 0x2d, 0x76, 0x9d, 0x44, 0x57, 0xa3, 0xdb, 0x52, 0xb9, 0x24,
+ 0x4a, 0x37, 0x3e, 0x82, 0xee, 0xf4, 0x62, 0x77, 0xb2, 0x55, 0x67, 0xfc, 0xab, 0xd8, 0x38, 0x53, 0x93, 0xf4,
+ 0xd1, 0xb4, 0x41, 0x54, 0x27, 0x3f, 0xd4, 0x98, 0xde, 0xd3, 0x7c, 0x2b, 0x95, 0xfc, 0xb8, 0x9b, 0x0a, 0x1b,
+ 0x21, 0x7d, 0x63, 0x77, 0x0a, 0x8a, 0xcc, 0xfa, 0xcd, 0x05, 0x18, 0x2f, 0x24, 0xd1, 0x53, 0xfd, 0xf6, 0x56,
+ 0x93, 0x6c, 0x03, 0x47, 0x7b, 0x4a, 0x7f, 0x0f, 0x18, 0x5c, 0xff, 0x45, 0x9e, 0x8a, 0x3d, 0xeb, 0x38, 0x54,
+ 0x25, 0xab, 0x20, 0xf6, 0xd4, 0x67, 0x0d, 0x16, 0xeb, 0x15, 0x33, 0x00, 0x1c, 0x35, 0x52, 0x61, 0xd9, 0x69,
+ 0xa5, 0x53, 0xcb, 0x78, 0x9e, 0xe3, 0x2f, 0xfa, 0xa5, 0xb5, 0x42, 0xed, 0xf0, 0xaf, 0x83, 0xe4, 0xbf, 0x5a,
+ 0x17, 0xc7, 0x63, 0xea, 0x3e, 0xa8, 0x30, 0x7a, 0x4c, 0x30, 0x51, 0xfa, 0xe7, 0x5e, 0x74, 0x10, 0x1b, 0xcc,
+ 0x13, 0x18, 0xa5, 0xaa, 0x1d, 0xca, 0xe5, 0x2d, 0x97, 0x57, 0xf2, 0xa7, 0xbd, 0x2a, 0xa7, 0xb3, 0x55, 0x9d,
+ 0xdc, 0xad, 0xeb, 0x92, 0x6c, 0x37, 0x73, 0x27, 0x0e, 0x42, 0xe0, 0x58, 0x50, 0x80, 0x93, 0x45, 0xd7, 0x52,
+ 0x6f, 0x62, 0x01, 0xb3, 0xa4, 0xe1, 0x7e, 0xba, 0xea, 0x66, 0x71, 0x95, 0xa0, 0x43, 0xfd, 0x66, 0x26, 0x0e,
+ 0x6f, 0x31, 0x14, 0xf3, 0x13, 0xb1, 0x97, 0x03, 0x0b, 0xdd, 0xd5, 0x4a, 0x03, 0x3a, 0x54, 0x35, 0xb9, 0xfb,
+ 0x66, 0x98, 0xae, 0x5b, 0xc4, 0xd1, 0x58, 0xc2, 0xc5, 0x5d, 0x2c, 0xd2, 0x1e, 0xd9, 0x93, 0x4e, 0xb2, 0x48,
+ 0x8d, 0xac, 0xd5, 0x83, 0x8d, 0x13, 0x62, 0x4d, 0x18, 0xd2, 0x31, 0xf4, 0x9f, 0x6a, 0x64, 0x31, 0xcb, 0xa5,
+ 0x78, 0xe4, 0x22, 0x72, 0xf8, 0x1f, 0x1c, 0x85, 0x44, 0x4c, 0x1e, 0x4d, 0x32, 0x60, 0xf3, 0x2f, 0xa1, 0x4f,
+ 0x8c, 0x7f, 0x95, 0x27, 0x60, 0xf9, 0x0e, 0x9e, 0x16, 0xfb, 0xc4, 0x10, 0xcc, 0x68, 0x6c, 0x49, 0x53, 0x77,
+ 0xff, 0x9f, 0x82, 0xe3, 0xad, 0xe7, 0x99, 0xfd, 0xe3, 0xb2, 0x81, 0x17, 0x63, 0xed, 0xe4, 0xa9, 0x94, 0x14,
+ 0x1b, 0xdb, 0x80, 0xa1, 0x4f, 0x5d, 0xe9, 0x65, 0x29, 0x22, 0xce, 0x0e, 0x17, 0x7f, 0xdd, 0x91, 0x57, 0xc7,
+ 0x99, 0xa0, 0xe6, 0x6e, 0x88, 0x70, 0xf2, 0x65, 0x65, 0xe5, 0xb6, 0xde, 0xe6, 0xea, 0x9f, 0xa6, 0x7b, 0x8e,
+ 0xdf, 0x40, 0x49, 0xc4, 0xce, 0xec, 0x89, 0x24, 0xa1, 0x52, 0x40, 0x14, 0x9b, 0x97, 0xc4, 0xc5, 0x76, 0x5a,
+ 0x55, 0xb3, 0x63, 0xd8, 0x59, 0x54, 0x8f, 0x1e, 0xcd, 0x74, 0x01, 0xb8, 0xc5, 0xff, 0xc3, 0xde, 0x90, 0x74,
+ 0xec, 0xb6, 0xc0, 0x46, 0x9a, 0xe0, 0xee, 0x2e, 0x1c, 0xce, 0x4f, 0xb1, 0xc3, 0x2c, 0x90, 0x12, 0xad, 0x90,
+ 0x86, 0xb4, 0xa8, 0x13, 0xaf, 0x6e, 0xca, 0x41, 0xa7, 0x39, 0x6f, 0x7a, 0x10, 0x1b, 0x81, 0x5a, 0x5c, 0x0c,
+ 0xaf, 0x3f, 0xd5, 0xd7, 0x22, 0x12, 0x8e, 0x72, 0x79, 0x29, 0xea, 0xee, 0xed, 0x5b, 0x82, 0x90, 0x62, 0x39,
+ 0x0e, 0x99, 0x61, 0xc0, 0x80, 0x82, 0xb1, 0xdb, 0xb3, 0xe8, 0x2a, 0x0b, 0xb6, 0x31, 0x06, 0xf9, 0x00, 0xbe,
+ 0x1c, 0xce, 0x91, 0x8f, 0x69, 0x08, 0x79, 0x95, 0x90, 0x9f, 0x1e, 0x4b, 0xbb, 0x03, 0x5f, 0x55, 0x8c, 0x6b,
+ 0x35, 0x67, 0x95, 0xe3, 0xf3, 0xad, 0x41, 0x27, 0xfa, 0x09, 0xc5, 0x6f, 0xe5, 0x9a, 0x58, 0x00, 0x98, 0x05,
+ 0xd2, 0xd6, 0x5e, 0x51, 0xf9, 0x28, 0x69, 0xa8, 0x7b, 0x89, 0x73, 0x7e, 0xd9, 0xf8, 0x42, 0xad, 0x4d, 0x68,
+ 0xf2, 0xf9, 0xde, 0xa4, 0x2f, 0x95, 0x93, 0x2d, 0x7d, 0x6c, 0xf9, 0x0d, 0xbf, 0x27, 0x89, 0x80, 0xf9, 0xf7,
+ 0xa0, 0xf2, 0x3f, 0x36, 0xa6, 0x71, 0xd3, 0x05, 0x6f, 0xad, 0xc5, 0xed, 0x9d, 0x30, 0x8e, 0xc2, 0xeb, 0xb1,
+ 0x02, 0x94, 0xe0, 0xae, 0xd3, 0xc8, 0x3e, 0x10, 0xff, 0x06, 0xcb, 0xa7, 0x5f, 0x90, 0xcf, 0x74, 0x6e, 0xcd,
+ 0x2b, 0xef, 0x16, 0x9a, 0xee, 0xbd, 0xee, 0xf6, 0x12, 0xef, 0x0c, 0x6e, 0x7e, 0xe8, 0x62, 0xb9, 0x0f, 0xed,
+ 0x14, 0x0c, 0xdf, 0xee, 0xf4, 0x19, 0xab, 0x60, 0xe8, 0x93, 0x30, 0x9f, 0x86, 0x49, 0x64, 0x34, 0xbd, 0x21,
+ 0x57, 0x09, 0x2f, 0xd6, 0x1a, 0xfc, 0x7d, 0x06, 0xf7, 0x05, 0xa3, 0x4f, 0xff, 0xbc, 0x2d, 0xb2, 0x77, 0x66,
+ 0xb8, 0x98, 0x14, 0xe4, 0xea, 0xa0, 0x42, 0x12, 0x23, 0xc6, 0x46, 0x80, 0x32, 0x0b, 0xf6, 0xc7, 0x53, 0xe1,
+ 0xd8, 0xe0, 0xdb, 0xc6, 0x4b, 0x14, 0x7e, 0x6a, 0xa4, 0x7e, 0x45, 0x08, 0x3b, 0x5a, 0x59, 0xa1, 0x9b, 0x71,
+ 0x72, 0xfd, 0xec, 0xff, 0x6d, 0x95, 0x69, 0xc9, 0xee, 0xbc, 0xae, 0x6d, 0x4f, 0xcd, 0x91, 0x67, 0x90, 0x69,
+ 0xed, 0x20, 0x53, 0x39, 0x2a, 0x6a, 0x2f, 0x1d, 0x4e, 0x76, 0x3e, 0x12, 0x61, 0x3c, 0xa8, 0x76, 0x6d, 0x8c,
+ 0x9a, 0x7f, 0xd3, 0x78, 0xaa, 0x3d, 0xdb, 0xde, 0x0a, 0xd0, 0xbf, 0xb0, 0x03, 0x0f, 0xc0, 0xa2, 0xbc, 0xa2,
+ 0x95, 0x88, 0xad, 0xe5, 0x1c, 0x03, 0x66, 0xca, 0xc8, 0x8f, 0x95, 0x75, 0xbd, 0x4d, 0xf0, 0xc9, 0xf4, 0x6a,
+ 0x63, 0x36, 0xc0, 0xa3, 0xa2, 0xfa, 0xc7, 0xb4, 0x2a, 0x1a, 0x64, 0x8d, 0x88, 0x70, 0xf6, 0x25, 0xbd, 0xae,
+ 0xaa, 0x87, 0x99, 0xde, 0xe4, 0x32, 0x00, 0x66, 0xd4, 0x19, 0xc2, 0x8f, 0xb7, 0x46, 0x4a, 0x26, 0x6e, 0x27,
+ 0x3a, 0x74, 0xe0, 0x35, 0xa2, 0x91, 0x16, 0x0e, 0xdc, 0xff, 0x73, 0x2e, 0x12, 0x3f, 0x54, 0x0e, 0x62, 0xea,
+ 0xa8, 0x10, 0xcf, 0xb4, 0x1b, 0x3c, 0x07, 0x4d, 0xd2, 0xff, 0x0e, 0x32, 0x44, 0x9e, 0xfb, 0x48, 0x97, 0x94,
+ 0x98, 0x70, 0xfa, 0x85, 0x5a, 0xed, 0x5a, 0x5c, 0xaf, 0x52, 0xc0, 0x72, 0x3a, 0x8e, 0x77, 0x93, 0x23, 0x59,
+ 0x9d, 0x40, 0x7f, 0xc2, 0xc7, 0x6a, 0x45, 0x98, 0x2b, 0xf9, 0xce, 0xc4, 0x6b, 0x48, 0xf3, 0x9f, 0x24, 0x45,
+ 0xcb, 0xc1, 0xb5, 0x79, 0xc9, 0xb4, 0x52, 0x11, 0x1f, 0x6b, 0xd9, 0xb7, 0x3f, 0xf3, 0x28, 0x71, 0x19, 0x15,
+ 0x51, 0xdc, 0x99, 0x60, 0x75, 0x1f, 0x22, 0x5c, 0x21, 0x85, 0x30, 0x36, 0xba, 0x06, 0x74, 0xdd, 0x96, 0x5e,
+ 0xa9, 0xc2, 0x45, 0x02, 0x9f, 0x8a, 0xd0, 0xb4, 0x54, 0x67, 0x5d, 0x6f, 0xf6, 0x38, 0x85, 0xf7, 0x71, 0xbc,
+ 0x92, 0x14, 0x97, 0xaa, 0x2a, 0x8c, 0x5e, 0xa2, 0xf9, 0x7d, 0x79, 0x15, 0x1c, 0x9b, 0x89, 0xe7, 0x1f, 0x16,
+ 0xaa, 0x1b, 0x9b, 0xfa, 0x76, 0xd8, 0x8f, 0x52, 0x55, 0x5e, 0x9a, 0xf2, 0xd5, 0x0a, 0xe0, 0x27, 0xce, 0x74,
+ 0x74, 0xac, 0x6b, 0x14, 0x65, 0x68, 0xdb, 0xa8, 0xce, 0x70, 0x2b, 0x10, 0x60, 0x0c, 0xc0, 0x79, 0x4e, 0x98,
+ 0x4b, 0xd8, 0x1f, 0xa6, 0xdd, 0xf3, 0xa9, 0x23, 0x08, 0xa9, 0xbd, 0xde, 0x67, 0x2d, 0x77, 0x05, 0xcc, 0x22,
+ 0xaa, 0x4e, 0x52, 0xb4, 0x95, 0x93, 0x6f, 0xe3, 0xc6, 0xce, 0xdd, 0xcc, 0x4d, 0x88, 0x89, 0x93, 0x9b, 0xb1,
+ 0xe8, 0x70, 0x46, 0xde, 0x27, 0x6d, 0xa9, 0x74, 0x30, 0xaa, 0xd9, 0xc1, 0x23, 0x5d, 0x8c, 0x7a, 0x0f, 0xaa,
+ 0x52, 0x05, 0x60, 0x51, 0xe4, 0xab, 0xdd, 0xb1, 0xdd, 0x05, 0x23, 0xc2, 0xd8, 0xc1, 0xbf, 0x1c, 0xe6, 0xc0,
+ 0xa4, 0x09, 0x83, 0x3d, 0x69, 0xe6, 0x43, 0x18, 0xe7, 0xef, 0xfb, 0x25, 0x49, 0xbe, 0xe1, 0xf3, 0x90, 0x70,
+ 0x00, 0xb3, 0xf0, 0x14, 0x43, 0xed, 0xc0, 0x51, 0x87, 0x5a, 0x42, 0x96, 0x5e, 0x19, 0x27, 0xf3, 0x2a, 0xf8,
+ 0x8a, 0x20, 0x92, 0x51, 0x55, 0x10, 0x19, 0x91, 0xd8, 0x0e, 0x47, 0x07, 0x03, 0x9b, 0x73, 0xde, 0x1c, 0xa0,
+ 0xfb, 0x1b, 0x3d, 0x59, 0xc4, 0x38, 0x41, 0xfb, 0x73, 0xeb, 0x6a, 0x63, 0x4d, 0xba, 0x9d, 0xc0, 0x78, 0xec,
+ 0xf7, 0xaf, 0x85, 0x55, 0xff, 0x41, 0x75, 0x29, 0xad, 0x82, 0xf3, 0xc1, 0x1c, 0xb2, 0xf6, 0x47, 0xb7, 0x69,
+ 0x68, 0xc6, 0x93, 0xdf, 0x73, 0xbb, 0xcd, 0xa1, 0xcd, 0x9d, 0x3c, 0xce, 0xcb, 0xdd, 0x67, 0xce, 0x8d, 0x94,
+ 0xc2, 0x91, 0xb2, 0xa5, 0xcc, 0x8b, 0x15, 0xfc, 0xbd, 0x99, 0x66, 0x9b, 0x0f, 0x4c, 0xd4, 0x3a, 0xbe, 0x1f,
+ 0x49, 0x71, 0xb2, 0x5e, 0xda, 0xd5, 0x1e, 0x02, 0xc8, 0x54, 0x36, 0xdd, 0x1a, 0xc4, 0x02, 0xed, 0x13, 0x6d,
+ 0xf8, 0x33, 0xaa, 0xd8, 0xc1, 0xb3, 0x2a, 0xad, 0x2d, 0xc2, 0x8c, 0x84, 0x14, 0x34, 0x81, 0xa3, 0x31, 0xbe,
+ 0x24, 0xe3, 0x60, 0x80, 0x31, 0xf5, 0x6d, 0x93, 0x7c, 0xbe, 0x01, 0x4b, 0x9c, 0xc6, 0x41, 0xe1, 0x35, 0xff,
+ 0x7f, 0x69, 0x54, 0x00, 0x15, 0xfb, 0x43, 0x29, 0x0e, 0x76, 0x5a, 0x98, 0x8e, 0xaf, 0xb2, 0x64, 0x48, 0x3d,
+ 0x9d, 0x19, 0x9e, 0x2b, 0x9c, 0xc7, 0x69, 0x91, 0x0d, 0xe7, 0x40, 0xf0, 0x29, 0x9d, 0x1b, 0x79, 0x30, 0x92,
+ 0x91, 0x18, 0x0f, 0x79, 0x89, 0xb6, 0x8a, 0x95, 0x78, 0xce, 0xf0, 0x2e, 0xb4, 0x21, 0xa4, 0x17, 0x5b, 0x40,
+ 0x51, 0x21, 0xbc, 0x4b, 0x93, 0x2a, 0x89, 0x3b, 0x87, 0x34, 0x57, 0x6d, 0x3c, 0xf0, 0x07, 0xcc, 0xd4, 0xd4,
+ 0x81, 0xbf, 0xe2, 0xf6, 0xe4, 0x3d, 0xd7, 0xe8, 0x09, 0x97, 0x69, 0x4d, 0xa8, 0x8e, 0xf6, 0x6f, 0xff, 0x6c,
+ 0x54, 0x00, 0xa5, 0x38, 0xfa, 0xef, 0x88, 0xc8, 0xc3, 0xaa, 0xcc, 0x14, 0xe3, 0x3e, 0xd5, 0x01, 0x70, 0xe2,
+ 0x02, 0xec, 0x9d, 0x94, 0xb1, 0x31, 0xde, 0x60, 0xeb, 0x1d, 0xaf, 0xba, 0x78, 0xd7, 0x02, 0x76, 0x51, 0xa6,
+ 0x69, 0x2a, 0xec, 0x83, 0x81, 0xeb, 0x9f, 0x0e, 0xd2, 0x5c, 0x0c, 0xb2, 0xb3, 0xff, 0x2a, 0x13, 0x84, 0xa6,
+ 0x97, 0xbf, 0x34, 0xb1, 0x0a, 0x05, 0xdb, 0xa8, 0x8f, 0xd2, 0x65, 0x9b, 0x91, 0xe9, 0x3a, 0x49, 0x47, 0x39,
+ 0xbc, 0xf4, 0x62, 0xca, 0xe0, 0xdb, 0xfc, 0x42, 0xeb, 0x6a, 0x51, 0x73, 0xed, 0xfb, 0xdf, 0x52, 0xc1, 0x9d,
+ 0x32, 0xc3, 0x14, 0x36, 0x7c, 0x0e, 0x03, 0x8c, 0xe9, 0x0b, 0xb6, 0x01, 0xde, 0x7d, 0x29, 0xe7, 0x3d, 0xaf,
+ 0x74, 0xc7, 0xa9, 0x8b, 0xb2, 0x55, 0xb2, 0x00, 0xe1, 0xd1, 0x8d, 0xc4, 0xce, 0xeb, 0x8a, 0xb2, 0x4d, 0xb6,
+ 0x51, 0xdd, 0xc4, 0x41, 0xf5, 0x1c, 0x0a, 0x13, 0x5a, 0x28, 0x01, 0xc2, 0x54, 0x98, 0xb9, 0x00, 0x6b, 0xa7,
+ 0x35, 0x22, 0xcc, 0xfb, 0xcd, 0xcc, 0xc4, 0x37, 0xa3, 0xad, 0x92, 0x39, 0x77, 0xff, 0x4f, 0xb4, 0x73, 0x92,
+ 0xe8, 0x0c, 0xbe, 0x03, 0x28, 0x1d, 0x9f, 0x79, 0x41, 0xba, 0x43, 0xea, 0xa7, 0xb7, 0x8f, 0xe3, 0xef, 0xd6,
+ 0xb9, 0x5e, 0xa3, 0xef, 0x07, 0x24, 0x71, 0xe8, 0xf8, 0x0e, 0x91, 0x21, 0x29, 0xad, 0xcc, 0x2f, 0x10, 0xc7,
+ 0x90, 0xa1, 0xa5, 0x79, 0xc9, 0xa2, 0x49, 0x0a, 0x05, 0xc4, 0xfc, 0x30, 0xd0, 0x55, 0x00, 0x12, 0x00, 0x4a,
+ 0x67, 0xca, 0x6e, 0x53, 0x0e, 0x22, 0x3f, 0xe2, 0xa7, 0x7f, 0xb9, 0xd7, 0xe0, 0x84, 0xae, 0xa2, 0x40, 0x86,
+ 0xaa, 0xc9, 0x8f, 0xf9, 0xa5, 0x4d, 0x31, 0xfc, 0xf7, 0x31, 0x7c, 0x95, 0x04, 0x6f, 0x8b, 0xf3, 0x49, 0x1c,
+ 0x22, 0x2b, 0xdc, 0x46, 0xf4, 0x2e, 0xa3, 0x33, 0x0e, 0x11, 0x3f, 0xd4, 0x4f, 0x8a, 0x43, 0x91, 0x15, 0xce,
+ 0x6f, 0x64, 0x28, 0x2f, 0x70, 0x2a, 0x3a, 0xdb, 0x1e, 0xba, 0x30, 0x3d, 0x6f, 0xfc, 0x9a, 0xa5, 0x49, 0xa5,
+ 0x97, 0x10, 0xd6, 0xa0, 0x21, 0xe7, 0x7a, 0xec, 0x4e, 0x53, 0xc0, 0xab, 0xcd, 0xe8, 0xf1, 0x76, 0xf9, 0x60,
+ 0x83, 0xd9, 0xfb, 0x78, 0x2b, 0xb3, 0x23, 0x38, 0xe3, 0x7f, 0xf4, 0xf8, 0x06, 0x7c, 0xe2, 0xac, 0x24, 0x30,
+ 0x91, 0xef, 0x01, 0xb4, 0x05, 0xae, 0xd5, 0x67, 0x34, 0x97, 0x92, 0x63, 0xcf, 0xba, 0x87, 0x3e, 0xdf, 0xb0,
+ 0xa3, 0xe4, 0x4f, 0x97, 0xed, 0x14, 0xe6, 0x76, 0xfa, 0x7d, 0x63, 0x86, 0x93, 0xfc, 0xe5, 0xe6, 0x21, 0xea,
+ 0xff, 0xd2, 0xb4, 0x2e, 0xf8, 0xde, 0x03, 0xbf, 0xc9, 0x10, 0xe3, 0x55, 0x37, 0x40, 0x33, 0xc9, 0xd4, 0x0a,
+ 0xcb, 0xf8, 0x62, 0xf0, 0x1f, 0xb8, 0x62, 0xc0, 0x2f, 0x56, 0x0c, 0x06, 0x4d, 0xa8, 0xd6, 0x85, 0x70, 0x2f,
+ 0x55, 0xcb, 0x7c, 0x9f, 0x68, 0xfd, 0xf5, 0xfc, 0xea, 0x9c, 0xb9, 0x3b, 0x0a, 0xcc, 0xa7, 0x08, 0x9a, 0xf6,
+ 0xd2, 0xd8, 0xe9, 0x38, 0x88, 0xda, 0x97, 0x85, 0x22, 0xd3, 0x37, 0x8a, 0x5c, 0x5d, 0xe0, 0x78, 0x0d, 0xe9,
+ 0x5d, 0x0f, 0x20, 0x98, 0xea, 0x4d, 0x29, 0xc3, 0x0d, 0x79, 0xfc, 0x10, 0x27, 0x3f, 0xc5, 0x26, 0xa4, 0x99,
+ 0x84, 0xd4, 0xc1, 0xf9, 0x03, 0x22, 0xf5, 0x74, 0x1f, 0x8e, 0xfd, 0xc8, 0xc3, 0x7b, 0x32, 0xcb, 0xb1, 0x26,
+ 0xa1, 0x84, 0x08, 0x2c, 0x22, 0x17, 0x4e, 0xa2, 0x08, 0xe3, 0x2a, 0xcc, 0xdd, 0xe2, 0x89, 0xc4, 0xe7, 0xab,
+ 0xc4, 0x67, 0x72, 0xee, 0xf1, 0x96, 0xe0, 0xa6, 0xfa, 0xe9, 0x62, 0xec, 0x2b, 0x5c, 0x1b, 0xbe, 0x5a, 0x90,
+ 0x71, 0x10, 0x2d, 0xd3, 0x4e, 0x50, 0x03, 0x7e, 0xf3, 0xd1, 0xac, 0x7b, 0x8e, 0xcc, 0x1d, 0x0b, 0x53, 0xbe,
+ 0x47, 0xdb, 0x85, 0x44, 0x23, 0x9c, 0xe0, 0x63, 0xfd, 0xc4, 0x20, 0xec, 0xdc, 0x07, 0xf4, 0x41, 0x22, 0x15,
+ 0xb0, 0x86, 0x50, 0x07, 0x17, 0x7c, 0x25, 0x05, 0x09, 0x7c, 0x7c, 0xcb, 0x13, 0x60, 0x96, 0x5c, 0xc9, 0x6b,
+ 0xaa, 0xce, 0xe5, 0x05, 0x70, 0xe6, 0xec, 0xf7, 0x89, 0x01, 0xe4, 0xb1, 0xf7, 0xfc, 0x88, 0x65, 0x0e, 0xdd,
+ 0x88, 0x1c, 0xb9, 0x05, 0xbd, 0x4e, 0x47, 0xf7, 0x88, 0x7f, 0xa6, 0xe0, 0x7c, 0x01, 0x30, 0x0d, 0xfe, 0x1f,
+ 0x5f, 0x8d, 0x7d, 0xa2, 0x87, 0x60, 0x2a, 0x4c, 0x00, 0xf0, 0x3e, 0x4e, 0x41, 0x02, 0x20, 0x09, 0x9a, 0x55,
+ 0x6f, 0x5e, 0x87, 0xf1, 0xb9, 0x96, 0x26, 0xa6, 0x73, 0x6b, 0x62, 0x27, 0x5a, 0x90, 0x6d, 0xdd, 0xd4, 0x37,
+ 0xe9, 0x40, 0x78, 0xa0, 0x38, 0x71, 0xea, 0x95, 0x01, 0x2c, 0x80, 0x10, 0x56, 0x91, 0x48, 0x6c, 0xee, 0xda,
+ 0xae, 0x66, 0xee, 0x09, 0x1a, 0x61, 0xd2, 0xbd, 0x37, 0xb5, 0xd7, 0x18, 0x1b, 0xa5
};
// context = simple_context_vn
@@ -3487,330 +3720,179 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_MANDARIN__)
-// wake-word = nǐ hǎo diànnǎo
+// wake-word = 你好电脑
static const uint8_t KEYWORD_ARRAY[] = {
- 0x3c, 0xaa, 0x77, 0x04, 0x9c, 0x25, 0x7c, 0xdb, 0xc9, 0x51, 0x40, 0x69, 0x89, 0x3f, 0x46, 0x33, 0xe6, 0xb5,
- 0x04, 0xa3, 0x51, 0x68, 0x3b, 0x31, 0xce, 0x7f, 0x57, 0x96, 0xbc, 0x68, 0x9c, 0x85, 0x18, 0x19, 0x67, 0x47,
- 0xa9, 0x2b, 0x05, 0xbb, 0xcd, 0x1f, 0xd6, 0x6f, 0xb3, 0x38, 0x42, 0xdb, 0x36, 0x39, 0xf5, 0x64, 0xd1, 0x54,
- 0xd4, 0x5b, 0xcd, 0x2c, 0xf2, 0x94, 0x91, 0xf0, 0x3f, 0x7a, 0x66, 0xc1, 0x7e, 0xf0, 0x48, 0x84, 0x29, 0xfa,
- 0x49, 0x97, 0x80, 0xd0, 0xf1, 0x71, 0x7e, 0x83, 0xe3, 0xa4, 0x72, 0x07, 0x95, 0xdb, 0x9c, 0x42, 0x7c, 0x3d,
- 0x78, 0x79, 0x0f, 0xec, 0x90, 0xa3, 0x4d, 0xb2, 0x9c, 0xf5, 0xf9, 0xa9, 0x61, 0xae, 0x76, 0xdd, 0x9b, 0x05,
- 0xf6, 0x4d, 0x4d, 0x58, 0x32, 0x09, 0x52, 0x27, 0x73, 0x12, 0xd3, 0xda, 0x6a, 0x17, 0x75, 0xf0, 0xaf, 0x46,
- 0xdd, 0x4b, 0xd5, 0x1e, 0xaf, 0x5d, 0x95, 0xbd, 0xad, 0xcd, 0x7c, 0x1b, 0x32, 0xe1, 0xbe, 0x21, 0x2e, 0x28,
- 0xd0, 0x48, 0x83, 0x90, 0x3a, 0x41, 0x09, 0x1e, 0x07, 0x2e, 0xb5, 0xd8, 0xb7, 0x02, 0x21, 0x7c, 0xa9, 0xc7,
- 0xb6, 0xf3, 0x4d, 0x68, 0x2a, 0xd0, 0x31, 0x17, 0xcc, 0x86, 0x78, 0x07, 0xe2, 0x02, 0x3d, 0xf7, 0xb7, 0x42,
- 0xc9, 0x62, 0xe7, 0x59, 0x8e, 0x6d, 0xce, 0x25, 0x2e, 0x61, 0x55, 0xa2, 0xb4, 0x30, 0xb1, 0x98, 0xcc, 0x67,
- 0x4b, 0x02, 0xbe, 0x80, 0x7e, 0xbb, 0x79, 0x55, 0x7e, 0xec, 0x9d, 0x8d, 0xc5, 0xb5, 0x68, 0x99, 0xcf, 0xa8,
- 0x0e, 0x75, 0x3c, 0x88, 0xcf, 0x87, 0xa9, 0xb9, 0x24, 0x4a, 0x47, 0x0b, 0x7c, 0x64, 0x0c, 0xec, 0x2a, 0xde,
- 0x46, 0x7b, 0x43, 0xd7, 0x72, 0x0a, 0x6e, 0x1a, 0xd3, 0xf3, 0xc0, 0xba, 0x40, 0x3b, 0xb8, 0xc6, 0x3f, 0x88,
- 0xfb, 0x1f, 0xa2, 0x52, 0xfd, 0x3c, 0xe5, 0xe0, 0x13, 0x6a, 0x6c, 0x10, 0x96, 0x79, 0xd3, 0x35, 0x35, 0xc9,
- 0x3c, 0xc2, 0x39, 0x51, 0xae, 0x04, 0x83, 0x4d, 0xef, 0xa9, 0xb1, 0x5f, 0xd8, 0x0c, 0xe8, 0x7c, 0xfb, 0x36,
- 0x21, 0x02, 0x27, 0xd4, 0xb3, 0xd7, 0x2b, 0x00, 0x03, 0x18, 0x72, 0x0f, 0x64, 0xd4, 0x9a, 0x67, 0x4a, 0xc3,
- 0x40, 0x53, 0x1a, 0x1f, 0x3e, 0xe4, 0x28, 0xe8, 0x6b, 0x25, 0x55, 0xcc, 0x32, 0x13, 0x33, 0x04, 0x4e, 0x7e,
- 0x2d, 0x4b, 0x1b, 0xfc, 0xb0, 0xef, 0x65, 0x7a, 0xef, 0x08, 0xce, 0xa0, 0xe6, 0xdc, 0x49, 0x1c, 0xed, 0xcd,
- 0x5a, 0x21, 0xee, 0x00, 0x8a, 0xd1, 0x48, 0xc5, 0x3b, 0xe2, 0x48, 0x5b, 0x3d, 0x07, 0xe9, 0x37, 0x53, 0xe2,
- 0x67, 0x8d, 0x9e, 0x1d, 0x05, 0xc6, 0x26, 0xed, 0x68, 0xcd, 0xde, 0x6f, 0x28, 0xf1, 0xff, 0xd9, 0xb5, 0x11,
- 0xe6, 0x56, 0xb3, 0xae, 0xc7, 0x89, 0xd7, 0xdf, 0xad, 0x4a, 0xbd, 0xf5, 0x3a, 0x0d, 0x6a, 0x0d, 0x48, 0xaf,
- 0x15, 0xf5, 0x6b, 0x13, 0x57, 0xf2, 0x28, 0x8c, 0xd9, 0xd6, 0x63, 0x86, 0x86, 0xf2, 0xb6, 0xc6, 0xe1, 0x33,
- 0x8e, 0x2e, 0x0d, 0x2c, 0x77, 0xc3, 0x8e, 0x4e, 0xa8, 0xbb, 0xaa, 0xbb, 0x06, 0xe8, 0x35, 0xac, 0x91, 0x66,
- 0x95, 0xc8, 0xa1, 0x3e, 0x31, 0x4b, 0x8f, 0x88, 0x51, 0xd7, 0x0f, 0xf3, 0xac, 0x6f, 0x43, 0xd4, 0xf5, 0x30,
- 0x5a, 0x4c, 0xa0, 0x00, 0x0d, 0x3a, 0x22, 0x2c, 0x55, 0x44, 0x7c, 0x0a, 0xaa, 0xba, 0x70, 0xed, 0x19, 0xe1,
- 0x0b, 0xa9, 0xbd, 0x61, 0x06, 0x7e, 0x92, 0x0d, 0xa3, 0xb4, 0xbd, 0x78, 0x22, 0x55, 0x30, 0xe7, 0x72, 0x22,
- 0x80, 0x02, 0xab, 0x2e, 0xef, 0xe6, 0x7c, 0x0a, 0x3c, 0xed, 0xa6, 0x79, 0x03, 0xaf, 0x70, 0x2b, 0x9c, 0x41,
- 0xfe, 0x2f, 0x2f, 0xf4, 0xfa, 0xb2, 0xad, 0xd3, 0xe7, 0xe3, 0xec, 0x01, 0xd1, 0x3e, 0x76, 0x5c, 0x73, 0x90,
- 0x56, 0x3f, 0x82, 0xfc, 0x5f, 0x46, 0x23, 0xef, 0x93, 0x31, 0xd3, 0x26, 0x15, 0x05, 0x25, 0x0d, 0x01, 0xc8,
- 0x17, 0x5a, 0xac, 0x0c, 0x94, 0xd3, 0xf9, 0x6a, 0x5e, 0x5a, 0xd2, 0x6a, 0xf2, 0x99, 0xd1, 0xce, 0xfb, 0xf2,
- 0x9a, 0x9c, 0xb9, 0xef, 0x4a, 0xfa, 0xda, 0x1a, 0x9b, 0xb5, 0xec, 0xf6, 0x42, 0x7b, 0x60, 0x1f, 0x2d, 0xba,
- 0x84, 0x6e, 0x34, 0xa3, 0xd6, 0x68, 0x7d, 0xe4, 0x83, 0xe6, 0xb1, 0xe4, 0xbd, 0xe7, 0x21, 0x4e, 0xc0, 0x71,
- 0xd8, 0x71, 0x95, 0x19, 0xd4, 0x09, 0xf2, 0x3d, 0x90, 0x73, 0xcd, 0x2b, 0xef, 0x5a, 0x09, 0xf2, 0x47, 0x6a,
- 0xc4, 0x44, 0x04, 0xbf, 0xab, 0x68, 0x63, 0xfe, 0x5f, 0x7a, 0x4c, 0xed, 0x86, 0x6a, 0xe1, 0x76, 0xf6, 0xc9,
- 0xb2, 0x51, 0x13, 0x7a, 0xb8, 0x17, 0x21, 0xbb, 0x78, 0x7b, 0xca, 0x86, 0x8f, 0xad, 0xa0, 0x95, 0x1c, 0x45,
- 0x5f, 0x67, 0x67, 0x4f, 0x25, 0x84, 0xe6, 0xe6, 0x8d, 0x5f, 0xfb, 0xeb, 0x0a, 0xc5, 0x18, 0xeb, 0x55, 0x87,
- 0xad, 0x4a, 0x02, 0xc2, 0xe0, 0x0e, 0xc6, 0x9a, 0x57, 0xe8, 0x4f, 0xb4, 0x1b, 0xbf, 0xa2, 0xbb, 0x1d, 0x65,
- 0xb8, 0x80, 0xa6, 0xea, 0xe5, 0x08, 0xde, 0xbb, 0x3f, 0xfe, 0xe4, 0x1d, 0x1b, 0x55, 0xc6, 0x6c, 0x0f, 0x88,
- 0x2f, 0xe4, 0x00, 0xae, 0xd8, 0xa4, 0x9c, 0x4f, 0x46, 0x60, 0xd6, 0x33, 0xab, 0xcd, 0xf7, 0x2f, 0x25, 0x2f,
- 0x2d, 0x30, 0xcc, 0xd5, 0x77, 0x96, 0x80, 0x2b, 0x5e, 0xb4, 0x78, 0xe6, 0x91, 0x23, 0xef, 0x4b, 0xca, 0x24,
- 0x9c, 0x22, 0x7c, 0xa2, 0x9b, 0x1f, 0xb6, 0x00, 0x94, 0x3d, 0xb0, 0xae, 0xdc, 0x0b, 0x56, 0x2f, 0x01, 0xc8,
- 0xe6, 0xb4, 0xab, 0x2a, 0x91, 0x1c, 0xd0, 0xa7, 0x82, 0x25, 0xf3, 0xd7, 0xed, 0x30, 0xff, 0x1a, 0x5c, 0xe0,
- 0x4f, 0x66, 0xa9, 0x6f, 0x1b, 0x63, 0x31, 0x22, 0x22, 0x81, 0x45, 0x17, 0x15, 0x6d, 0xe8, 0x16, 0x98, 0x31,
- 0xd1, 0x5b, 0xc4, 0x8a, 0x93, 0x92, 0x36, 0xd5, 0x3c, 0x7c, 0xf7, 0x12, 0xb3, 0xdf, 0x4b, 0x73, 0xe3, 0xf4,
- 0x40, 0x18, 0xbc, 0x5e, 0x0a, 0x3c, 0xe9, 0x1b, 0xd2, 0xa3, 0x5e, 0xad, 0x77, 0xe3, 0x02, 0xc3, 0x80, 0x55,
- 0x8e, 0xc9, 0x99, 0xb7, 0xf3, 0x22, 0xb7, 0xe9, 0x47, 0x30, 0xb9, 0x2e, 0x77, 0x3e, 0xd0, 0xdb, 0x22, 0x72,
- 0xd9, 0xbf, 0x33, 0x7d, 0x31, 0xcc, 0x8f, 0xe4, 0x9f, 0x46, 0x59, 0x38, 0xfd, 0x2c, 0xe0, 0x3c, 0xa5, 0x0f,
- 0x4a, 0xd6, 0xfd, 0xa2, 0xff, 0x55, 0x53, 0x11, 0x4a, 0x83, 0x8b, 0x56, 0x28, 0x59, 0xaf, 0xf7, 0x17, 0x89,
- 0xf7, 0x9f, 0x4e, 0x1e, 0x07, 0x8c, 0xd2, 0x03, 0x80, 0xb2, 0xca, 0x76, 0x78, 0x0c, 0x9e, 0x0c, 0xfd, 0xdd,
- 0xc9, 0xdd, 0xe6, 0x10, 0x71, 0xe1, 0x27, 0xea, 0xf6, 0x98, 0xed, 0xa4, 0x5c, 0x6c, 0xac, 0xd7, 0x38, 0xe5,
- 0x57, 0xb1, 0xbf, 0xb7, 0x8e, 0x18, 0x8d, 0x71, 0xb5, 0x61, 0xd6, 0x67, 0xd2, 0x75, 0xa4, 0x32, 0x5e, 0xf4,
- 0x45, 0x1d, 0x52, 0x75, 0x9f, 0x09, 0x7f, 0xb1, 0x33, 0x8d, 0xd4, 0xcb, 0xb8, 0xf2, 0xae, 0x81, 0x64, 0x0a,
- 0x28, 0xd3, 0x2e, 0x30, 0xc6, 0xc8, 0xc0, 0x9c, 0xf3, 0x68, 0xd4, 0x07, 0x8b, 0x35, 0x3b, 0x3d, 0x6a, 0x98,
- 0x6b, 0x22, 0x02, 0x97, 0x48, 0x1d, 0x04, 0x03, 0x1e, 0x3e, 0x99, 0x13, 0xa5, 0x16, 0xb8, 0x8d, 0x79, 0x4f,
- 0x97, 0xe6, 0xeb, 0x84, 0xed, 0x10, 0x67, 0xd2, 0xca, 0x2d, 0x3a, 0xd3, 0x06, 0xe8, 0x27, 0xaf, 0xa6, 0x71,
- 0x80, 0x5d, 0x64, 0xc3, 0xd5, 0xfb, 0x23, 0x42, 0xee, 0x36, 0x49, 0xf0, 0xee, 0x08, 0x50, 0x35, 0x5c, 0x00,
- 0xc9, 0x83, 0x1c, 0x64, 0xcf, 0x7f, 0xfa, 0x73, 0xfd, 0x0e, 0xbd, 0x03, 0x73, 0x0f, 0x32, 0x31, 0xc6, 0xb9,
- 0xfe, 0xd4, 0x02, 0x6b, 0xa7, 0x22, 0x13, 0xde, 0xbe, 0x7e, 0x94, 0x47, 0x63, 0x58, 0x5f, 0x9b, 0x60, 0xda,
- 0x81, 0x3f, 0x79, 0x8d, 0xf3, 0x9b, 0x44, 0xde, 0x3b, 0xd3, 0xd6, 0xfd, 0x0a, 0x3b, 0x06, 0x93, 0x5f, 0x7f,
- 0xa4, 0x74, 0x8d, 0xa6, 0xcc, 0x03, 0x21, 0xf5, 0x39, 0x3b, 0xcf, 0x6c, 0x3c, 0x01, 0x25, 0xcc, 0x04, 0xf4,
- 0xfd, 0xd7, 0x63, 0x20, 0x32, 0x7c, 0x67, 0xc0, 0x48, 0x5f, 0x6c, 0x76, 0x24, 0xd7, 0xe2, 0x06, 0xcd, 0x9a,
- 0x57, 0xe3, 0x0c, 0x7e, 0x1d, 0x0b, 0x38, 0x48, 0x17, 0xf7, 0x98, 0xc2, 0xc6, 0x06, 0xbb, 0x2c, 0x05, 0x35,
- 0x53, 0xb1, 0x90, 0xa2, 0xe9, 0xaf, 0x5d, 0xeb, 0xf1, 0x96, 0xb9, 0xc1, 0x7a, 0x8b, 0x39, 0xd4, 0xa9, 0x70,
- 0x03, 0x33, 0x42, 0x07, 0x44, 0x00, 0xe3, 0xe5, 0xbf, 0xa9, 0xfc, 0x99, 0xe2, 0x9f, 0xdb, 0x90, 0x09, 0xc4,
- 0x8e, 0x46, 0x02, 0xe5, 0x64, 0x3a, 0xef, 0x89, 0x55, 0x78, 0x56, 0x56, 0x0e, 0x7f, 0x2b, 0x38, 0x4f, 0x08,
- 0x5b, 0x31, 0x42, 0x1a, 0xc9, 0xd8, 0x96, 0xea, 0x02, 0xfe, 0x23, 0x8f, 0x03, 0x33, 0x6c, 0x3f, 0x81, 0x54,
- 0x52, 0xbb, 0x8a, 0xee, 0xc6, 0xde, 0xe4, 0x91, 0x15, 0x38, 0x02, 0x76, 0x4f, 0x0f, 0x93, 0x05, 0x2f, 0x26,
- 0xc0, 0x47, 0x6b, 0x33, 0xbf, 0xd2, 0xc6, 0xea, 0x6e, 0xff, 0x76, 0x7d, 0x1d, 0xf4, 0x52, 0x20, 0x5c, 0x99,
- 0x05, 0x35, 0x81, 0x9b, 0x0a, 0xcb, 0x89, 0x89, 0x8c, 0xa9, 0x39, 0x9a, 0xbb, 0x4b, 0xf9, 0x36, 0xe4, 0x0d,
- 0x2c, 0x9e, 0x51, 0x2a, 0x5e, 0x73, 0xef, 0xbc, 0x04, 0x93, 0x30, 0x0a, 0x6a, 0x04, 0x33, 0x3e, 0x12, 0x91,
- 0xa2, 0xa9, 0x29, 0x3c, 0x04, 0x84, 0xa7, 0xd1, 0x9f, 0x9d, 0x7b, 0x90, 0x76, 0x9f, 0x6e, 0x72, 0xdb, 0x60,
- 0x46, 0x5f, 0x1e, 0xd7, 0xa4, 0xb8, 0x3c, 0x35, 0x21, 0x3b, 0x37, 0x6f, 0xf5, 0x1d, 0xa0, 0x63, 0x0d, 0xac,
- 0xa3, 0xad, 0xa6, 0x83, 0x72, 0x91, 0xb5, 0xd2, 0xf8, 0x50, 0x7b, 0x26, 0xdf, 0xb7, 0xb4, 0x30, 0x9f, 0x4d,
- 0x44, 0x5e, 0xe6, 0x59, 0x9b, 0x04, 0xf3, 0xc7, 0x11, 0x9e, 0xba, 0x70, 0x21, 0x2d, 0x05, 0x00, 0x3f, 0x1f,
- 0x5b, 0xc9, 0xf1, 0xb7, 0x8c, 0xa7, 0xb0, 0xd2, 0x7b, 0x44, 0xe2, 0xd3, 0xb2, 0x06, 0x72, 0x0f, 0x8e, 0xef,
- 0xa2, 0x16, 0x15, 0x68, 0x08, 0x1a, 0x70, 0x36, 0x21, 0xd5, 0x7f, 0xca, 0x67, 0x88, 0xe2, 0x3d, 0x4c, 0x57,
- 0x96, 0x3c, 0xad, 0x7d, 0x19, 0x0a, 0xbc, 0x3b, 0x8a, 0x30, 0x56, 0xee, 0xd8, 0xa5, 0xb6, 0x2c, 0x55, 0x63,
- 0xad, 0x69, 0x88, 0x1a, 0x83, 0x42, 0x8c, 0xfa, 0x08, 0x7f, 0xdb, 0x9e, 0x87, 0x87, 0x64, 0x3d, 0x69, 0x36,
- 0xd0, 0x25, 0x99, 0x3b, 0xcf, 0xd6, 0xd9, 0x12, 0x57, 0xd7, 0x3a, 0x0c, 0xf3, 0xad, 0xc1, 0x43, 0x35, 0x45,
- 0xae, 0x2e, 0x45, 0xd4, 0x0f, 0x70, 0xd2, 0xf1, 0xe6, 0x51, 0xb5, 0x4c, 0x83, 0x25, 0xb4, 0x19, 0xb3, 0x2e,
- 0xea, 0xb5, 0xf9, 0xa6, 0xea, 0x5f, 0xa7, 0x6e, 0x9d, 0x13, 0x6c, 0x95, 0x03, 0xce, 0xb7, 0x67, 0x7e, 0xdc,
- 0x25, 0xec, 0x50, 0xb7, 0x63, 0x3d, 0x72, 0xd2, 0x45, 0x8a, 0x54, 0xa6, 0x5c, 0x0e, 0x49, 0xd8, 0x20, 0x99,
- 0xd7, 0x0e, 0x53, 0x0f, 0x4d, 0xfa, 0xd2, 0xe1, 0x2f, 0x89, 0xf5, 0xaa, 0xbe, 0x57, 0xee, 0x80, 0x04, 0xc8,
- 0x65, 0x38, 0x34, 0x48, 0x99, 0xd3, 0xc3, 0x0b, 0x75, 0x39, 0x0a, 0x47, 0x42, 0xdd, 0x24, 0xdf, 0x3e, 0xf7,
- 0xbf, 0x0d, 0x02, 0x58, 0x67, 0x6f, 0x30, 0x9b, 0xf5, 0x3d, 0xb1, 0xe0, 0xc2, 0x97, 0x31, 0xff, 0x20, 0xab,
- 0x6a, 0x36, 0x97, 0x4f, 0xd4, 0x5d, 0x71, 0xfe, 0x5c, 0x81, 0x61, 0x17, 0xe7, 0x34, 0x5c, 0x10, 0x25, 0xae,
- 0x77, 0x98, 0x9b, 0x85, 0xa9, 0xbe, 0x3d, 0x35, 0x6e, 0x26, 0x44, 0x5e, 0xa1, 0x6f, 0xb0, 0x05, 0x30, 0x65,
- 0x4b, 0xef, 0x4e, 0x8e, 0xf7, 0x0a, 0xf2, 0x6b, 0xe7, 0xf0, 0xf7, 0xe9, 0x72, 0xfb, 0x2c, 0x3f, 0xa3, 0x73,
- 0x88, 0xe9, 0x5f, 0x7c, 0xd3, 0x75, 0xa5, 0xb3, 0x49, 0x98, 0xbe, 0xc6, 0x29, 0xe5, 0xda, 0xf2, 0x68, 0x8f,
- 0x54, 0x85, 0x46, 0xe1, 0x56, 0x55, 0xcf, 0xc4, 0xfc, 0x26, 0x4a, 0x5a, 0xc7, 0x5a, 0x4d, 0x6c, 0x40, 0xee,
- 0x46, 0x70, 0x7a, 0x05, 0x5a, 0x37, 0xe2, 0xa0, 0xf3, 0x6f, 0xb9, 0x4d, 0x9c, 0x34, 0x2a, 0x86, 0x6d, 0x30,
- 0xd7, 0x1e, 0x85, 0x21, 0xdc, 0x31, 0x97, 0x32, 0xce, 0x89, 0x44, 0xbf, 0x9f, 0xd9, 0x96, 0x68, 0x66, 0x78,
- 0xdb, 0xda, 0xb4, 0x45, 0x89, 0x80, 0xe8, 0x6f, 0x22, 0x98, 0xe9, 0x8f, 0x9f, 0xe9, 0x2e, 0x56, 0x98, 0x84,
- 0xa1, 0xd8, 0x43, 0x6a, 0x32, 0x39, 0x08, 0x9f, 0x98, 0xf1, 0x8e, 0x97, 0xb4, 0x41, 0xec, 0x41, 0x3a, 0x43,
- 0x63, 0xb1, 0x43, 0x48, 0x34, 0xad, 0x12, 0xbc, 0x89, 0x24, 0xc4, 0xc7, 0xda, 0x25, 0xcf, 0x01, 0x46, 0xf0,
- 0x1a, 0xd2, 0xf5, 0x1e, 0xfd, 0x16, 0xa7, 0xbc, 0xb0, 0x9b, 0xbb, 0x51, 0x70, 0x8e, 0xe6, 0x7e, 0xef, 0x9a,
- 0x2c, 0x71, 0xc3, 0x9e, 0xe0, 0x6d, 0x26, 0x98, 0x9a, 0xe5, 0xc6, 0x06, 0x4c, 0x4f, 0x80, 0x50, 0x74, 0x5b,
- 0x62, 0x3e, 0xe8, 0x93, 0xef, 0x6c, 0xd0, 0x3a, 0x17, 0x29, 0x42, 0xbc, 0x05, 0xd1, 0xec, 0x98, 0x32, 0x79,
- 0x86, 0x56, 0x04, 0xbd, 0xed, 0xa5, 0x2b, 0xf0, 0x93, 0x53, 0xf1, 0x17, 0x63, 0xdc, 0x7d, 0xa7, 0x11, 0x24,
- 0x38, 0xcb, 0xaa, 0x48, 0x94, 0x9e, 0x75, 0x4c, 0x0f, 0x37, 0x97, 0x4f, 0x58, 0x52, 0x9d, 0xd5, 0x3e, 0x21,
- 0x64, 0xd2, 0x60, 0x91, 0x30, 0x9f, 0xd2, 0xef, 0x27, 0x52, 0x87, 0xb0, 0x7c, 0x92, 0xe5, 0x6a, 0xe1, 0x1f,
- 0x8a, 0x4a, 0x67, 0x0b, 0x3a, 0x31, 0xd5, 0xe7, 0xde, 0x20, 0x4c, 0x75, 0x94, 0xa8, 0x63, 0xb5, 0xca, 0xcf,
- 0x07, 0x97, 0x3d, 0x65, 0x18, 0xca, 0xbd, 0x42, 0xc8, 0xb9, 0x52, 0xd3, 0xa5, 0xe0, 0x43, 0xeb, 0x45, 0x21,
- 0xeb, 0xe6, 0xc1, 0x56, 0xc1, 0xc7, 0x75, 0x8d, 0xbf, 0xd1, 0x77, 0x0d, 0x3c, 0x2f, 0x6b, 0x90, 0x6a, 0x3d,
- 0x96, 0x36, 0x2c, 0xa4, 0xcf, 0xa7, 0xba, 0xe6, 0x20, 0xed, 0x5a, 0x52, 0x14, 0xf9, 0xeb, 0x71, 0x44, 0x2b,
- 0x38, 0xa5, 0x06, 0xc8, 0x9e, 0xb6, 0x37, 0xf5, 0x17, 0x78, 0xdc, 0xf0, 0xac, 0x2a, 0xf0, 0x18, 0x95, 0xc0,
- 0x63, 0xcc, 0xe4, 0xea, 0xc8, 0x6f, 0x1c, 0xe4, 0x5c, 0x8a, 0xcc, 0x4c, 0x95, 0xc2, 0xbc, 0x41, 0x37, 0x42,
- 0x4c, 0x87, 0xb9, 0xc6, 0x73, 0x4b, 0xd5, 0x81, 0xca, 0xed, 0x84, 0x5d, 0x59, 0xe8, 0x52, 0x43, 0xb4, 0x9c,
- 0xd2, 0xbd, 0x7e, 0x9e, 0x95, 0xaa, 0xf6, 0x4e, 0x8f, 0xe0, 0xc5, 0xf6, 0xba, 0x9d, 0x33, 0xba, 0xb3, 0x89,
- 0x86, 0x74, 0x86, 0x5c, 0x11, 0xbe, 0x08, 0x3b, 0x47, 0xfb, 0x35, 0xe2, 0x2b, 0x96, 0xe1, 0x61, 0x60, 0xd7,
- 0x49, 0x01, 0x20, 0x4b, 0xa0, 0x1d, 0x84, 0x99, 0x5c, 0xed, 0xdc, 0x6a, 0x03, 0x36, 0x7b, 0xa5, 0x06, 0x50,
- 0x78, 0x9a, 0xfd, 0x6c, 0x60, 0x66, 0xe2, 0x31, 0x3b, 0xf7, 0xac, 0x71, 0x9c, 0x12, 0xd3, 0xab, 0x0f, 0xd7,
- 0x9c, 0x24, 0x6f, 0x5a, 0x45, 0xcc, 0x12, 0xb5, 0x19, 0xb8, 0xb8, 0x14, 0x47, 0x33, 0x4c, 0xa8, 0xc9, 0x2e,
- 0x58, 0x68, 0x1e, 0xe9, 0x6d, 0x31, 0xbe, 0x48, 0x39, 0xda, 0xcd, 0x39, 0xbd, 0xa2, 0x32, 0x95, 0xfa, 0x6c,
- 0x79, 0x53, 0xd0, 0xfa, 0x80, 0x9f, 0xd7, 0x61, 0xf4, 0xa3, 0x5d, 0x32, 0xdb, 0x18, 0x75, 0x12, 0xf8, 0x19,
- 0x93, 0x3a, 0x8b, 0xca, 0xcb, 0x43, 0x3c, 0x93, 0x0c, 0x6f, 0xc1, 0x52, 0xf3, 0x0f, 0xc2, 0xf6, 0x72, 0x18,
- 0x18, 0xf8, 0xd0, 0x28, 0xd9, 0x9a, 0x8f, 0x56, 0x1f, 0x07, 0x98, 0x81, 0x9f, 0xfb, 0xd5, 0x0a, 0xbe, 0xec,
- 0x47, 0x3d, 0x59, 0x72, 0x31, 0x5e, 0x70, 0x1a, 0x8a, 0x9c, 0x90, 0x52, 0x86, 0x4e, 0xd7, 0x33, 0x79, 0x71,
- 0x74, 0x5b, 0xf5, 0x6c, 0x85, 0x5c, 0x20, 0x33, 0x16, 0xc2, 0x7f, 0xb7, 0xa4, 0x89, 0x20, 0x9d, 0x88, 0x2a,
- 0x93, 0xa0, 0x51, 0x8a, 0xdf, 0x46, 0x4f, 0x32, 0xa4, 0x04, 0xf5, 0x45, 0x9f, 0xd0, 0x7e, 0xe5, 0xb2, 0xce,
- 0x78, 0x76, 0x04, 0x2a, 0xa5, 0xc2, 0xbe, 0x58, 0x1d, 0xae, 0xf3, 0x54, 0x28, 0x57, 0x55, 0xa5, 0x02, 0x4f,
- 0x01, 0x37, 0xc4, 0x71, 0xf2, 0xcd, 0x14, 0xc3, 0x09, 0x43, 0x01, 0x8e, 0x10, 0x68, 0xd6, 0x9a, 0xe8, 0xfe,
- 0xee, 0x01, 0x42, 0x9a, 0x2c, 0x42, 0xb5, 0xb5, 0x7b, 0xc7, 0xc3, 0x96, 0xcb, 0x55, 0x6f, 0x82, 0xe9, 0x30,
- 0x17, 0x09, 0x8d, 0x73, 0x37, 0x6d, 0x3c, 0x21, 0x69, 0xea, 0x31, 0x2b, 0x18, 0x0e, 0x0e, 0x71, 0xc2, 0x0d,
- 0x6f, 0xdd, 0x3f, 0x20, 0x27, 0x0f, 0x0a, 0xf3, 0x52, 0xa7, 0xd6, 0xf6, 0xaf, 0x1c, 0x9d, 0x8f, 0x31, 0x14,
- 0xef, 0x46, 0x6b, 0xe2, 0x0a, 0x3b, 0xa8, 0xed, 0x24, 0x09, 0x0e, 0xed, 0xb4, 0xfd, 0x85, 0x10, 0xf3, 0x27,
- 0xda, 0x69, 0x12, 0x11, 0xcc, 0xb1, 0x51, 0x54, 0x33, 0x3d, 0x23, 0xf2, 0xff, 0x25, 0x61, 0x1e, 0x73, 0x9a,
- 0x58, 0x20, 0x1d, 0x8f, 0x54, 0xa2, 0x5a, 0x6d, 0xf1, 0x75, 0x27, 0xeb, 0x2d, 0xd1, 0x98, 0xfe, 0xaf, 0x06,
- 0x6c, 0x60, 0xb4, 0x33, 0xab, 0x97, 0xf9, 0xf1, 0xc1, 0xc9, 0x30, 0x7f, 0xb6, 0xcc, 0xc7, 0x88, 0x86, 0x05,
- 0xc6, 0x0c, 0xb8, 0x94, 0x4f, 0x1b, 0x8c, 0xd0, 0x70, 0xe9, 0xa7, 0x58, 0xd1, 0x0a, 0x45, 0x3b, 0xbd, 0xc7,
- 0xf8, 0x28, 0x95, 0x7c, 0x4c, 0xc3, 0xd1, 0x5f, 0x7a, 0x95, 0x4b, 0x7a, 0x02, 0x2a, 0x44, 0xb9, 0xd9, 0x95,
- 0xe0, 0x94, 0xa9, 0xc0, 0xca, 0xd7, 0x11, 0x31, 0x0a, 0xf8, 0x64, 0xda, 0x85, 0x4f, 0xb4, 0x17, 0x6d, 0xf7,
- 0x6c, 0x7d, 0xc4, 0x68, 0x06, 0x51, 0xda, 0x0a, 0xf4, 0xc8, 0x35, 0xbf, 0xcf, 0x57, 0xb5, 0x14, 0xa0, 0x43,
- 0xfe, 0x76, 0xcc, 0x9f, 0x85, 0xde, 0x10, 0xe5, 0x3d, 0x4e, 0x8c, 0x11, 0x67, 0x71, 0x5e, 0x3a, 0xdd, 0x86,
- 0x0f, 0xb3, 0xce, 0xbe, 0xaa, 0xd5, 0x91, 0xdb, 0xde, 0xcd, 0x7a, 0x88, 0xcd, 0x43, 0x65, 0x41, 0xc3, 0xea,
- 0xc1, 0xe3, 0x0a, 0x2b, 0xe8, 0x98, 0xa5, 0xad, 0x87, 0x65, 0x59, 0x98, 0xd4, 0x64, 0x1a, 0xeb, 0x96, 0x2c,
- 0xd7, 0x5f, 0x22, 0x8e, 0x29, 0x6b, 0xc5, 0x7c, 0xcc, 0x69, 0xde, 0xf3, 0xd9, 0x2e, 0x78, 0x97, 0xa7, 0xa2,
- 0xff, 0x48, 0xa7, 0x54, 0x41, 0xb6, 0x41, 0xe6, 0xa2, 0x03, 0xf9, 0x2e, 0x4a, 0xfc, 0x3d, 0x48, 0x5e, 0x50,
- 0x57, 0x80, 0x7b, 0x37, 0xbd, 0xa7, 0x17, 0xf6, 0x76, 0x17, 0x6b, 0x88, 0xac, 0x88, 0xee, 0x40, 0xf6, 0xcf,
- 0x6f, 0x0c, 0x0e, 0x6c, 0x55, 0xb2, 0xf4, 0x93, 0xd9, 0xef, 0xb8, 0x3f, 0x1c, 0xc6, 0x35, 0x02, 0xab, 0x54,
- 0xd7, 0x70, 0x14, 0xcd, 0xd6, 0xc4, 0xbb, 0x28, 0x25, 0x6e, 0x20, 0x93, 0xc1, 0xe6, 0x4f, 0x44, 0xad, 0x07,
- 0xd3, 0xcc, 0xd2, 0x89, 0x2a, 0x4d, 0xc1, 0x0c, 0x3b, 0x00, 0xee, 0xe3, 0x53, 0x64, 0x3c, 0xa5, 0x67, 0xb9,
- 0xbe, 0x72, 0xef, 0x41, 0xf7, 0x32, 0x80, 0xef, 0x2c, 0x34, 0xe0, 0xbd, 0xb8, 0xc6, 0xfb, 0xb6, 0x38, 0xc1,
- 0x18, 0x3d, 0x99, 0x1a, 0xa7, 0x8d, 0xa8, 0xca, 0x32, 0x9f, 0x00, 0xe2, 0x04, 0xda, 0x28, 0x86, 0x6b, 0x74,
- 0x1e, 0x1e, 0x64, 0xd4, 0x80, 0xdb, 0xd7, 0xef, 0x32, 0x33, 0x58, 0x63, 0xca, 0xbf, 0x9a, 0xb7, 0x06, 0xd0,
- 0x9f, 0x14, 0x7d, 0x6d, 0x65, 0x57, 0xc1, 0x20, 0x7f, 0xfb, 0x86, 0xd2, 0xc3, 0xe9, 0x7c, 0xea, 0x04, 0x6b,
- 0x30, 0x71, 0x89, 0x92, 0x1e, 0xbb, 0x58, 0x56, 0x50, 0x06, 0x41, 0x79, 0xb4, 0xba, 0x83, 0x26, 0x63, 0x53,
- 0x97, 0xab, 0xf7, 0x03, 0xbb, 0x9e, 0x9d, 0xfd, 0xe8, 0x4f, 0xde, 0xb2, 0x11, 0xfb, 0x62, 0xbe, 0x7e, 0xea,
- 0x7c, 0xe5, 0x9f, 0x87, 0x57, 0xec, 0xe1, 0x8c, 0x93, 0x01, 0x60, 0x9f, 0xad, 0xf5, 0x4d, 0x8f, 0x5d, 0xe7,
- 0x46, 0xdc, 0x17, 0x61, 0x3c, 0x76, 0x2d, 0xe5, 0xb8, 0xe9, 0x41, 0xe3, 0x88, 0x57, 0x37, 0x25, 0x72, 0x2b,
- 0x7f, 0x19, 0x0b, 0x40, 0x57, 0x7d, 0x0c, 0xfa, 0xe4, 0x5f, 0x0e, 0x09, 0x73, 0x3d, 0xff, 0xdb, 0x1e, 0xc6,
- 0x19, 0x99, 0x06, 0xc7, 0xad, 0x85, 0xb1, 0x0f, 0xd9, 0x27, 0x1c, 0x50, 0x9c, 0x8c, 0x91, 0x4f, 0x44, 0x04,
- 0xc0, 0x62, 0x61, 0xca, 0x15, 0x4b, 0xb7, 0x93, 0xf5, 0xb1, 0x5a, 0x5e, 0xeb, 0xeb, 0x80, 0x36, 0xcd, 0x58,
- 0x94, 0xbe, 0x6b, 0x7f, 0x49, 0x27, 0x83, 0x8b, 0x19, 0x12, 0xeb, 0xaf, 0xfa, 0xa6, 0xc0, 0xae, 0xc1, 0xd4,
- 0x36, 0xce, 0x0b, 0xdd, 0x7d, 0xb8, 0x1a, 0xa8, 0xb0, 0xb4, 0xb3, 0xd2, 0xa3, 0x57, 0xe2, 0x31, 0x09, 0xc3,
- 0x20, 0x51, 0xc0, 0x0a, 0x2e, 0x23, 0xa6, 0x57, 0x49, 0xa0, 0x41, 0x36, 0x82, 0x5b, 0xd6, 0x0a, 0x47, 0xcf,
- 0x3d, 0xd9, 0xcb, 0x5a, 0xb7, 0xd8, 0x63, 0xf2, 0x4a, 0xec, 0x02, 0x1d, 0xba, 0xd7, 0x62, 0x8e, 0xf1, 0x35,
- 0x11, 0x42, 0xd4, 0x29, 0x9e, 0x26, 0x0a, 0x00, 0xd9, 0x57, 0x09, 0xb5, 0x7b, 0x62, 0xb5, 0xc0, 0x00, 0x0d,
- 0xf3, 0x28, 0xd6, 0x73, 0x6b, 0x76, 0x6e, 0x56, 0x8b, 0x44, 0x47, 0x8c, 0x8b, 0xbb, 0x04, 0xb8, 0x1b, 0x9a,
- 0x1a, 0x3a, 0xe6, 0x55, 0xd1, 0x42, 0x5e, 0x08, 0x91, 0x4f, 0x1c, 0xe6, 0x9d, 0x91, 0xd3, 0x19, 0x61, 0xfb,
- 0x88, 0x9e, 0x4d, 0xa7, 0xd1, 0x23, 0x10, 0x26, 0x16, 0xe9, 0x01, 0x33, 0x89, 0xbf, 0xee, 0x3c, 0xae, 0x77,
- 0x19, 0x79, 0xb7, 0xfa, 0xdb, 0x42, 0x0b, 0xa1, 0x6c, 0x58, 0x6f, 0x81, 0xb4, 0x5d, 0xd9, 0xef, 0xb6, 0x17,
- 0x10, 0x3b, 0x0f, 0x90, 0xd3, 0xed, 0xe7, 0xb1, 0x40, 0x14, 0x2e, 0x20, 0x0d, 0xfb, 0x35, 0x48, 0xa7, 0x95,
- 0xcb, 0xb5, 0xd7, 0xeb, 0xd5, 0xc7, 0x9b, 0x04, 0x0b, 0x49, 0xf8, 0xb9, 0xae, 0xa1, 0x9f, 0x61, 0x54, 0x06,
- 0x04, 0x9c, 0x6d, 0x81, 0xe3, 0x0d, 0xbd, 0xe1, 0x91, 0xb7, 0xd0, 0xe2, 0x1d, 0xc6, 0xcf, 0xfd, 0xfe, 0xe6,
- 0x7a, 0x0f, 0x9d, 0xdc, 0x55, 0xa6, 0x1a, 0xcb, 0x8f, 0x7f, 0x38, 0x9d, 0x93, 0x69, 0x4b, 0x54, 0x76, 0x19,
- 0x7c, 0xb3, 0x58, 0x99, 0x42, 0x2e, 0xc6, 0x35, 0x03, 0xce, 0x4e, 0xe2, 0xb0, 0x6d, 0x90, 0x8b, 0x4a, 0x5a,
- 0x01, 0x9b, 0x1f, 0x00, 0x62, 0xce, 0x31, 0xae, 0x99, 0xf2, 0xaf, 0x3e, 0xac, 0x62, 0xea, 0x35, 0x9e, 0x46,
- 0x53, 0x98, 0x07, 0xe5, 0x57, 0xe5, 0xb6, 0x3e, 0xc5, 0xde, 0x3e, 0xcb, 0xf7, 0x95, 0x0f, 0x07, 0xce, 0xf3,
- 0xcb, 0x5a, 0xcb, 0x2f, 0x92, 0x81, 0x97, 0x1e, 0xbf, 0xa3, 0x37, 0x25, 0xf6, 0x9b, 0x0e, 0x8a, 0xb2, 0x62,
- 0x21, 0xf7, 0xb7, 0x81, 0x30, 0x52, 0xf4, 0xa1, 0x5b, 0xae, 0xf6, 0x22, 0x97, 0x04, 0xda, 0x21, 0x24, 0xb2,
- 0x96, 0x4e, 0xd6, 0x89, 0x1b, 0x74, 0x09, 0x5a, 0x98, 0x04, 0x9b, 0x10, 0x84, 0xa3, 0xf3, 0xa0, 0x95, 0x94,
- 0x5b, 0xa6, 0xe4, 0x2a, 0x08, 0x70, 0x1e, 0xfa, 0x6f, 0xe8, 0x60, 0xa8, 0x55, 0x1e, 0xf1, 0xf8, 0x5b, 0x69,
- 0xd4, 0x10, 0x93, 0x43, 0x7e, 0x06, 0xc1, 0x42, 0x7a, 0x5d, 0x9a, 0xdf, 0xf4, 0x94, 0x80, 0x88, 0x3c, 0xbb,
- 0x95, 0x94, 0xf5, 0xbd, 0xf1, 0xfd, 0xb0, 0x10, 0x0d, 0x1e, 0x0d, 0x73, 0xae, 0x1d, 0x00, 0xee, 0x3a, 0xda,
- 0xb1, 0x5e, 0x15, 0xfe, 0xe0, 0x94, 0x3c, 0x8b, 0xbf, 0x23, 0x40, 0x5f, 0xe0, 0xe0, 0x97, 0xef, 0x6d, 0x97,
- 0xb7, 0x3b, 0x45, 0x8c, 0x28, 0x1d, 0x57, 0xe3, 0xca, 0xab, 0xad, 0x51, 0xe5, 0x02, 0x31, 0x26, 0x25, 0x76,
- 0x04, 0xb0, 0xf5, 0x7f, 0x64, 0x3a, 0x8c, 0x44, 0x85, 0x2e, 0xce, 0xa4, 0x7c, 0xb2, 0x95, 0x47, 0xd0, 0x57,
- 0x80, 0xc5, 0x3a, 0xea, 0xc3, 0xf9, 0x3e, 0xda, 0x55, 0xde, 0x63, 0x3e, 0x7a, 0xb0, 0xe4, 0xb0, 0x66, 0x23,
- 0x64, 0x20, 0xd1, 0x84, 0x2d, 0x7c, 0xc2, 0xde, 0xc6, 0x5d, 0x11, 0x34, 0x38, 0x9d, 0xa9, 0x68, 0x22, 0xe1,
- 0x77, 0x1a, 0xe1, 0xdc, 0x76, 0x53, 0xce, 0x0e, 0x4c, 0x91, 0x0d, 0x05, 0xe0, 0x2c, 0x5a, 0x30, 0x60, 0xc9,
- 0x22, 0x2b, 0x6b, 0x50, 0x4f, 0xef, 0x6e, 0x48, 0x90, 0xa9, 0x09, 0x48, 0x34, 0x1f, 0x21, 0xe9, 0x9a, 0x0f,
- 0xe2, 0xfd, 0xa9, 0x61, 0x65, 0x87, 0xa4, 0xcb, 0xb3, 0x53, 0x1b, 0x08, 0xc1, 0x9f, 0x57, 0x67, 0x07, 0x1f,
- 0x3e, 0x43, 0x6a, 0x34, 0xfb, 0xb4, 0x11, 0xe2, 0x07, 0xd5, 0x69, 0x4d, 0x01, 0xd3, 0xb8, 0x82, 0x8e, 0x87,
- 0x3e, 0x03, 0x2b, 0x38, 0x2f, 0x99, 0xa4, 0x56, 0xaf, 0x0b, 0x4f, 0xad, 0xc6, 0xe2, 0x00, 0x57, 0x45, 0x32,
- 0xfb, 0x40, 0xc3, 0x4a, 0x7d, 0x7b, 0x93, 0x3d, 0x79, 0x63, 0x8d, 0xe2, 0xed, 0x01, 0xb3, 0x51, 0x9b, 0xfd,
- 0xb2, 0xf7, 0x06, 0xbf, 0xc7, 0xfd, 0xa4, 0x90, 0x54, 0x9c, 0x01, 0x56, 0xda, 0xb8, 0xa7, 0x71, 0xc2, 0x02,
- 0x9d, 0xaa, 0xd5, 0xf4, 0x3f, 0x32, 0x41, 0x37, 0x45, 0x2e, 0x4c, 0x8f, 0xbc, 0x2b, 0xc2, 0x02, 0x2f, 0x09,
- 0x9d, 0x5b, 0xdf, 0xcd, 0xf8, 0x11, 0x2b, 0x54, 0x4b, 0x4d, 0x39, 0xe6, 0xb4, 0xaf, 0x44, 0x56, 0x69, 0xfc,
- 0xd5, 0x11, 0x82, 0x0b, 0x3a, 0x9e, 0xaf, 0x4c, 0xb3, 0x7b, 0xa0, 0x13, 0x92, 0xb4, 0x24, 0x93, 0x84, 0x60,
- 0xcf, 0xba, 0xd3, 0x17, 0xc5, 0x15, 0x93, 0x22, 0x89, 0xd5, 0x66, 0xb6, 0x18, 0xaf, 0xd4, 0x00, 0x06, 0xbf,
- 0xd0, 0x15, 0x60, 0x96, 0x1d, 0x73, 0x85, 0x0e, 0xd6, 0xbf, 0x27, 0x91, 0x22, 0x3f, 0x89, 0xca, 0xa3, 0x59,
- 0x0d, 0x5e, 0xdc, 0x54, 0xe5, 0x08, 0x60, 0x36, 0x63, 0xb1, 0xaa, 0x1a, 0x96, 0xb2, 0xea, 0x1a, 0xdc, 0x13,
- 0x42, 0xfb, 0x68, 0xde, 0xbb, 0xbe, 0x01, 0xdc, 0x2b, 0x9f, 0x7d, 0xb0, 0xd1, 0x44, 0x93, 0xbd, 0xd3, 0xd4,
- 0x8c, 0x10, 0x19, 0xa0, 0xca, 0x19, 0xbb, 0x32, 0xf8, 0x43, 0x45, 0x86, 0x97, 0x77, 0xad, 0x91, 0x5e, 0x7c,
- 0x73, 0x6a, 0x60, 0x46, 0xf6, 0x50, 0x6e, 0x40, 0xf8, 0x45, 0xdd, 0xee, 0x38, 0x6c, 0x2a, 0x8c, 0x68, 0xaa,
- 0xb5, 0x52, 0xb0, 0x0c, 0xbf, 0xc3, 0xc7, 0xf5, 0xd9, 0xc4, 0x31, 0x09, 0x2e, 0x25, 0x1a, 0x3f, 0xe7, 0xa6,
- 0xef, 0x7f, 0x7a, 0x2a, 0x48, 0x6b, 0xb2, 0xd0, 0xf9, 0xda, 0x7f, 0xfa, 0x9b, 0x92, 0x02, 0xcf, 0xb7, 0xb6,
- 0x4c, 0x2e, 0xd6, 0x1e, 0xdf, 0x32, 0xcf, 0xea, 0x0d, 0xb5, 0xdb, 0x94, 0xc2, 0x8e, 0x58, 0x7b, 0xfa, 0x3a,
- 0x58, 0xdc, 0xf6, 0x11, 0x5f, 0x89, 0xd7, 0x68, 0x66, 0xd8, 0xb9, 0x34, 0x7a, 0x15, 0x9f, 0xf4, 0xe8, 0x86,
- 0xef, 0x1c, 0x87, 0x7e, 0x53, 0x38, 0x90, 0x89, 0xf5, 0xf2, 0x4f, 0x9c, 0x90, 0x20, 0xfe, 0x5d, 0x8f, 0xf0,
- 0x0b, 0xb8, 0xab, 0xe3, 0x4e, 0xb1, 0xa7, 0x38, 0x34, 0x6b, 0xaa, 0xed, 0x3f, 0xc9, 0xbe, 0x22, 0xf1, 0x2c,
- 0xb2, 0x74, 0xe1, 0x0b, 0x14, 0x14, 0x8d, 0xac, 0xcd, 0xb3, 0xe0, 0x46, 0x45, 0xa4, 0xb7, 0x58, 0x1d, 0x86,
- 0x8f, 0xa1, 0x01, 0x9d, 0x3b, 0xe8, 0x19, 0x2b, 0x6a, 0x4d, 0xa2, 0x77, 0x49, 0x13, 0xe1, 0x73, 0x04, 0x7e,
- 0xbc, 0xe6, 0x2f, 0x0c, 0x1f, 0x0f, 0x46, 0x4d, 0x1b, 0xa0, 0xe2, 0xd7, 0xb0, 0x29, 0x7b, 0x12, 0xa8, 0x36,
- 0xf2, 0x5d, 0x47, 0x8e, 0x0a, 0x24, 0x28, 0x85, 0x6a, 0x39, 0xce, 0xfc, 0x88, 0xeb, 0xec, 0x78, 0x13, 0x6f,
- 0x2a, 0xbc, 0x82, 0x48, 0xe5, 0x32, 0xe8, 0x35, 0x79, 0xe6, 0x8b, 0x0f, 0xc3, 0xb9, 0xad, 0x2f, 0x79, 0x5d,
- 0xb0, 0x12, 0xa9, 0xd3, 0x05, 0x9f, 0x51, 0xd8, 0xcf, 0x69, 0x01, 0x5b, 0x8f, 0xcd, 0xc0, 0xda, 0x1b, 0xbb,
- 0x1b, 0x6e, 0xa1, 0x3b, 0x35, 0xb2, 0x79, 0x2d, 0x22, 0x7e, 0xb1, 0x30, 0xbf, 0xe4, 0x5c, 0x16, 0xea, 0x5d,
- 0x96, 0x5e, 0x34, 0x40, 0x88, 0x99, 0x55, 0xa1, 0xff, 0xd8, 0x87, 0x4c, 0x68, 0xad, 0xf1, 0x3f, 0x91, 0x83,
- 0xfc, 0x8e, 0xb0, 0x7b, 0xc3, 0xb5, 0x84, 0x2a, 0xa0, 0x22, 0x7c, 0x1a, 0x0f, 0xb5, 0x9e, 0xf3, 0x47, 0x26,
- 0xd3, 0x29, 0x82, 0xba, 0x39, 0xe6, 0xcd, 0x36, 0xe9, 0x24, 0xa4, 0xdf, 0x45, 0xe7, 0x36, 0x27, 0x6d, 0x0e,
- 0xb2, 0xa2, 0x40, 0xaf, 0x96, 0xda, 0xc8, 0xf4, 0xc5, 0x33, 0x07, 0x92, 0xf4, 0xb6, 0x1b, 0xc6, 0x49, 0x16,
- 0x57, 0x6b, 0xf3, 0x63, 0x81, 0xd9, 0xfc, 0x52, 0xd5, 0x60, 0x7c, 0xc6, 0x59, 0x18, 0x6f, 0xfe, 0x69, 0x27,
- 0x3f, 0x23, 0xf7, 0x64, 0x04, 0x21, 0xf4, 0xee, 0x52, 0xa0, 0xf3, 0x65, 0x81, 0xc0, 0x6d, 0xdf, 0x18, 0xd0,
- 0xf5, 0xa6, 0x5e, 0x24, 0x46, 0xbd, 0x3a, 0x82, 0x99, 0x6a, 0x72, 0x3c, 0x17, 0x69, 0x1c, 0xe8, 0x9c, 0x05,
- 0x0a, 0x67, 0xca, 0x5d, 0xa5, 0x6a, 0xc5, 0x8a, 0x58, 0x39, 0xb8, 0xf7, 0xc9, 0xea, 0xe3, 0xcc, 0xd1, 0xa0,
- 0x55, 0x62, 0xd7, 0x99, 0xae, 0xaa, 0x42, 0x5b, 0x5c, 0x10, 0xa9, 0x27, 0x99, 0x0f, 0xd7, 0x25, 0xad, 0xee,
- 0xd9, 0x97, 0x38, 0xe7, 0x1d, 0x09, 0x93, 0xb5, 0xf1, 0xd5, 0xaf, 0x3e, 0x20, 0xe1, 0x16, 0xb7, 0xe6, 0xd4,
- 0x91, 0x36, 0x96, 0xd1, 0x59, 0x2a, 0xeb, 0xa7, 0x95, 0xfc, 0x99, 0x29, 0xdb, 0x5a, 0xaa, 0x57, 0x36, 0x9a,
- 0xf1, 0x25, 0x8d, 0x8a, 0x52, 0x93, 0x6b, 0x62, 0xc4, 0xab, 0x9e, 0x6d, 0x57, 0xeb, 0xb7, 0xdf, 0x2f, 0xd3,
- 0x3d, 0x53, 0x88, 0x8b, 0x61, 0x10, 0xa8, 0xa6, 0xb6, 0xf1, 0x82, 0xee, 0xa5, 0x0c, 0x89, 0x7f, 0x89, 0x66,
- 0x49, 0xd8, 0x5b, 0x50, 0xff, 0xe8, 0x16, 0x08, 0x10, 0xa6, 0xc2, 0xaa, 0x36, 0xf5, 0x5a, 0xbf, 0x6b, 0xd3,
- 0x38, 0xa8, 0x24, 0x3e, 0xdd, 0x52, 0x3a, 0xdc, 0xbf, 0x86, 0x12, 0x40, 0x83, 0xd9, 0x1a, 0x0a, 0x63, 0x53,
- 0x3e, 0xc8, 0xa9, 0xf2, 0xc3, 0x41, 0xa9, 0xa9, 0x63, 0xb3, 0x16, 0x43, 0x18, 0x31, 0xc3, 0x7d, 0x0e, 0xa2,
- 0xaa, 0x00, 0xad, 0x5e, 0xa6, 0x79, 0x52, 0xec, 0xd2, 0x03, 0x60, 0x0f, 0xff, 0xcb, 0x35, 0x5d, 0x53, 0xa5,
- 0xc7, 0x7d, 0x86, 0x24, 0x67, 0x63, 0x45, 0x65, 0x60, 0xaf, 0xd0, 0x72, 0x93, 0x47, 0x60, 0x45, 0x43, 0x47,
- 0x17, 0x1a, 0xbe, 0x7d, 0x4c, 0x88, 0x0a, 0x71, 0xbe, 0xa1, 0xe5, 0xc3, 0x21, 0xc3, 0xc6, 0x29, 0x0e, 0xbf,
- 0x12, 0x40, 0x40, 0xeb, 0xb8, 0xaf, 0xa9, 0x3a, 0x39, 0xff, 0x0e, 0x89, 0x0e, 0x36, 0x8c, 0xee, 0x15, 0xd7,
- 0x1f, 0xf5, 0x41, 0x22, 0xa0, 0x79, 0x89, 0xdf, 0x2d, 0x8d, 0x10, 0xf0, 0x4e, 0xef, 0xe7, 0xcd, 0xeb, 0xa3,
- 0x25, 0xce, 0x43, 0x8d, 0x4b, 0x10, 0xd7, 0x5b, 0xa5, 0x0d, 0x09, 0x8e, 0xe4, 0xfb, 0xdb, 0xf2, 0xbf, 0x70,
- 0x9b, 0x96, 0x45, 0x77, 0x7d, 0x2e, 0xa8, 0x7d, 0x1d, 0x42, 0x10, 0xb5, 0x34, 0xd6, 0xb3, 0x34, 0x5b, 0xbe,
- 0x35, 0x7a, 0x60, 0xa2, 0x54, 0x08, 0x63, 0x9d, 0xfa, 0x80, 0x48, 0xbb, 0xe5, 0x69, 0xd3, 0xcb, 0xea, 0xb5,
- 0x56, 0xcc, 0x66, 0xc6, 0xed, 0x48, 0xf1, 0xba, 0xf4, 0xdd, 0x64, 0x1b, 0xdf, 0x55, 0x7c, 0x93, 0x4e, 0x4f,
- 0xb4, 0x75, 0x7e, 0x3f, 0xb2, 0x15, 0xcf, 0xdf, 0xf9, 0x8b, 0x29, 0x40, 0xab, 0xbc, 0xe4, 0x13, 0x57, 0xa2,
- 0xa2, 0xdb, 0x34, 0xa2, 0x79, 0x77, 0x0a, 0x3b, 0x8a, 0xaa, 0x02, 0xa1, 0xda, 0xa4, 0x58, 0xeb, 0xb5, 0x48,
- 0x14, 0x0b, 0xe7, 0x3e, 0xa1, 0x57, 0xdd, 0xe4, 0xea, 0xf2, 0xa2, 0xbb, 0x50, 0x4b, 0x59, 0x44, 0xf3, 0x08,
- 0x52, 0x63, 0x9d, 0xa3, 0xa5, 0xa0, 0xdf, 0x5e, 0xf6, 0xaf, 0x00, 0x4b, 0x35, 0xb6, 0xd2, 0xef, 0x66, 0x21,
- 0x02, 0x67, 0xb9, 0xbf, 0xdb, 0xa6, 0x68, 0xc0, 0x80, 0x04, 0x39, 0xdc, 0x0e, 0xae, 0x63, 0xd2, 0xf1, 0x1a,
- 0x44, 0xf5, 0x93, 0x0d, 0xc5, 0x12, 0xf1, 0x10, 0xc9, 0xaa, 0x29, 0xd1, 0x41, 0x78, 0xe4, 0xfc, 0x72, 0x44,
- 0x24, 0x7f, 0x66, 0x15, 0xf7, 0x7d, 0x25, 0xcf, 0x07, 0x69, 0x2a, 0xf1, 0x74, 0x52, 0x19, 0xc5, 0x8d, 0xba,
- 0x1c, 0x86, 0x09, 0x1b, 0x53, 0x0b, 0x4a, 0xcd, 0x2c, 0xa4, 0x5f, 0x23, 0x4c, 0x52, 0xed, 0x6b, 0xf1, 0x86,
- 0xde, 0xdc, 0xdb, 0x32, 0x3f, 0x6f, 0xbd, 0x22, 0xb3, 0x81, 0x68, 0x81, 0x21, 0x13, 0x7f, 0x75, 0x5b, 0x28,
- 0x79, 0x7d, 0xe8, 0xf4, 0xa3, 0x91, 0xbc, 0x81, 0xa3, 0x90, 0x5d, 0xf3, 0x38, 0xda, 0xe8, 0x04, 0xd7, 0x24,
- 0xc5, 0x59, 0x81, 0x9b, 0x45, 0x34, 0x94, 0xde, 0x57, 0x23, 0x52, 0x87, 0xff, 0x3f, 0x87, 0x60, 0x9c, 0x13,
- 0xdc, 0x99, 0x7b, 0x2f, 0x85, 0xc0, 0x15, 0xbd, 0x5d, 0x1f, 0xe7, 0x33, 0x53, 0x36, 0x6c, 0x81, 0xb3, 0x15,
- 0x3a, 0x28, 0xdb, 0x85, 0x79, 0x8f, 0xd5, 0x26, 0x6f, 0x7c, 0xb8, 0x98, 0xc2, 0x3d, 0x3d, 0x34, 0xad, 0x56,
- 0x28, 0x67, 0x3c, 0x0e, 0xdb, 0x2d, 0xb1, 0x05, 0x9a, 0x0c, 0x5f, 0x98, 0x87, 0xbd, 0x7f, 0x94, 0xd8, 0x9d,
- 0x0b, 0x31, 0x06, 0x9a, 0xe0, 0x60, 0x68, 0xf1, 0xb8, 0x5e, 0xd4, 0xb2, 0xa8, 0x0d, 0xc7, 0xc7, 0x0a, 0xfc,
- 0x72, 0xc3, 0x29, 0x07, 0x0a, 0xeb, 0xed, 0x74, 0x67, 0x29, 0x93, 0x9f, 0xf0, 0xe7, 0x12, 0xca, 0x30, 0x22,
- 0x8f, 0x77, 0x2b, 0x2d, 0x0f, 0x9c, 0xf5, 0xb2, 0xbf, 0x43, 0x22, 0xd8, 0xc2, 0x27, 0xdd, 0x25, 0xe1, 0x0c,
- 0xd5, 0x50, 0x16, 0xa3, 0xb1, 0x63, 0x1c, 0x2b, 0xf9, 0xfb, 0x95, 0x78, 0x40, 0x60, 0x6c, 0x9b, 0xdc, 0x9f,
- 0xc8, 0x31, 0x4d, 0x50, 0x8c, 0xc5, 0x75, 0xdb, 0x4c, 0xec, 0x61, 0x34, 0x29, 0xc3, 0x49, 0x0a, 0x21, 0x0b,
- 0x6b, 0xc9, 0xcb, 0xb2, 0x12, 0xf5, 0xce, 0xb0, 0xc1, 0x72, 0x6b, 0xb3, 0x9e, 0x6e, 0xfa, 0x0d, 0x1a, 0x4c,
- 0xc8, 0x43, 0x4f, 0x3f, 0x15, 0xeb, 0x54, 0xfc, 0xcb, 0xfa, 0x25, 0x81, 0xae, 0x0a, 0xe9, 0x22, 0xa5, 0x59,
- 0x24, 0xf0, 0x76, 0x6f, 0x76, 0x90, 0xb0, 0x25, 0xb3, 0x8d, 0xc6, 0xdc, 0xa3, 0x20, 0x3b, 0x43, 0xac, 0x3b,
- 0x94, 0xa5, 0x84, 0x8a, 0x73, 0xbb, 0x35, 0xde, 0x0c, 0x38, 0x57, 0xa0, 0xd2, 0x55, 0x69, 0x91, 0xe5, 0xd7,
- 0x39, 0xf2, 0x4f, 0xc6, 0x5c, 0x8f, 0xa3, 0x14, 0x48, 0xd4, 0x1a, 0xd1, 0x60, 0x37, 0x2e, 0xd4, 0x3e, 0x42,
- 0x6e, 0xf0, 0x82, 0xb8, 0x4c, 0x49, 0xf5, 0x1f, 0xb9, 0x4a, 0x59, 0x06, 0x33, 0xf8, 0x1c, 0x3f, 0x52, 0x02,
- 0x22, 0xdb, 0x4f, 0x22, 0x6c, 0x09, 0x06, 0xc9, 0x90, 0x89, 0x1e, 0x57, 0xa1, 0xda, 0xed, 0xad, 0x45, 0xcd,
- 0xf3, 0xc6, 0x8e, 0x11, 0x29, 0xb1, 0xef, 0xd4, 0x90, 0xa2, 0xec, 0xe5, 0x20, 0x37, 0x7e, 0xb5, 0x7c, 0xc4,
- 0xf5, 0x23, 0xc1, 0xab, 0x28, 0x73, 0xaa, 0xa3, 0x71, 0x3a, 0xe2, 0xd8, 0xfe, 0xea, 0xa7, 0x6f, 0x3f, 0xbe,
- 0x74, 0x41, 0xc8, 0x6b, 0x37, 0x83, 0x5c, 0xfb, 0xb9, 0xaa, 0x23, 0xa4, 0x3d, 0x2f, 0x9a, 0x14, 0xab, 0x09,
- 0xdf, 0xfe, 0x11, 0x38, 0xb2, 0xc0, 0xcb, 0x15, 0x73, 0x48, 0x02, 0xb7, 0x08, 0x9d, 0x56, 0x4f, 0xcf, 0x60,
- 0x83, 0x45, 0x94, 0x4b, 0x16, 0x11, 0xd6, 0xd3, 0x1e, 0x11, 0xed, 0x13, 0x2a, 0x9d, 0x25, 0xfb, 0x28, 0x54,
- 0x6b, 0xca, 0x43, 0x10, 0x40, 0x10, 0xb4, 0xbb, 0xbb, 0xe2, 0x41, 0xd2, 0xb6, 0x85, 0x48, 0xad, 0xca, 0x9f,
- 0x9d, 0x62, 0xb4, 0x52, 0x91, 0xe1, 0x37, 0x8a, 0xf9, 0xf5, 0x74, 0x8c, 0x5b, 0xfc, 0xb0, 0x5a, 0x5d, 0x74,
- 0x71, 0x05, 0x9d, 0x84, 0x3e, 0x8f, 0x98, 0x3a, 0xfa, 0xd2, 0x3b, 0x4d, 0xba, 0x4d, 0x4f, 0xb1, 0x8f, 0x61,
- 0x0d, 0x75, 0x1f, 0xcf, 0x4a, 0x6f, 0x69, 0x39, 0x2f, 0x5e, 0x49, 0x1d, 0xa4, 0xbe, 0x4e, 0xc7, 0xd3, 0xc7,
- 0xc3, 0x01, 0x94, 0xde, 0xa0, 0x57, 0xdc, 0x22, 0x8b, 0x64, 0x6d, 0x9e, 0x62, 0x9a, 0x5a, 0x56, 0xe1, 0xdf,
- 0xde, 0x2b, 0x09, 0xa4, 0xa0, 0xc5, 0xed, 0x36, 0x70, 0xe5, 0xe1, 0xa0, 0xcb, 0xe4, 0x7c, 0x64, 0x5a, 0xa2,
- 0x71, 0x44, 0x4c, 0x26, 0xb7, 0xba, 0xe1, 0x1a, 0xbc, 0x6a, 0xcb, 0xa5, 0x2b, 0x1c, 0x01, 0x19, 0x50, 0x93,
- 0xaf, 0xb8, 0x26, 0x3f, 0x37, 0x6e, 0x26, 0x12, 0x16, 0x36, 0x53, 0x56, 0xe4, 0x97, 0x17, 0x9e, 0xd5, 0xa4,
- 0x45, 0x7d, 0xf0, 0x06, 0x3c, 0x40, 0x63, 0xa8, 0x9b, 0x8e, 0xf2, 0xcf, 0xee, 0xa0, 0x7d, 0x38, 0x1d, 0xa2,
- 0x5f, 0xcd, 0x92, 0x3d, 0x48, 0xb3, 0x8b, 0x2d, 0x24, 0xc9, 0x10, 0xfe, 0x71, 0x7e, 0xc5, 0x9b, 0x05, 0x03,
- 0xd6, 0x08, 0xe6, 0x56, 0x24, 0x9a, 0x95, 0xc3, 0x0f, 0xa4, 0x36, 0x6b, 0x29, 0xfe, 0x76, 0x65, 0x7a, 0x38,
- 0x94, 0x52, 0x81, 0x66, 0xf8, 0xb9, 0xfc, 0xca, 0x45, 0x51, 0x4e, 0x9c, 0xe9, 0x7c, 0xf7, 0xf7, 0xd0, 0xa9,
- 0xa8, 0xe3, 0x04, 0x02, 0x09, 0x92, 0x5e, 0xfc, 0x55, 0x31, 0x2c, 0x1d, 0x01, 0x26, 0x6f, 0xf2, 0xbb, 0xb6,
- 0xd7, 0x5e, 0x9a, 0xb7, 0xcb, 0x80, 0xd7, 0xd2, 0x40, 0xf0, 0xb6, 0xc2, 0xbc, 0xa3, 0x26, 0xb1, 0xe4, 0x1b,
- 0x39, 0x5d, 0xda, 0x85, 0x45, 0x71, 0xa2, 0xbe, 0xe7, 0xe0, 0x2e, 0xba, 0xc9, 0x3e, 0x8f, 0x34, 0x07, 0x7f,
- 0x3e, 0xbf, 0x06, 0x40, 0xe7, 0x66, 0x8c, 0xed, 0x62, 0xce, 0xdb, 0xc5, 0x2a, 0x34, 0xe7, 0x97, 0x25, 0x33,
- 0xd2, 0xd3, 0x1a, 0x8c, 0x40, 0x8d, 0x23, 0x39, 0x86, 0x2b, 0xe2, 0xf8, 0x02, 0x73, 0xa7, 0xc5, 0x03, 0x3d,
- 0xa3, 0xfc, 0x3e, 0x6b, 0xb8, 0x00, 0x34, 0x77, 0x61, 0x43, 0x02, 0xb8, 0x14, 0x27, 0xd4, 0x00, 0xa8, 0x35,
- 0x88, 0xb6, 0x74, 0xf3, 0x13, 0x05, 0x51, 0x4d, 0x3d, 0x0c, 0xf9, 0x70, 0xac, 0xe6, 0x8d, 0x8d, 0xdd, 0x11,
- 0xce, 0x58, 0x0d, 0xb4, 0x65, 0x46, 0x3a, 0xdd, 0x42, 0x23, 0x57, 0x9b, 0xa9, 0x34, 0x2f, 0x7c, 0x74, 0x04,
- 0xd4, 0xf2, 0xa1, 0xf0, 0x5d, 0x7c, 0x35, 0x36, 0xd8, 0xaf, 0x4b, 0x06, 0x18, 0x71, 0x91, 0xd7, 0x44, 0x42,
- 0x59, 0x3f, 0x76, 0x2c, 0x65, 0x24, 0x46, 0x35, 0xdb, 0xcf, 0x07, 0x38, 0xd6, 0x0c, 0x12, 0xba, 0xe8, 0x84,
- 0x41, 0xb8, 0x2e, 0xec, 0xc9, 0xab, 0x01, 0x7a, 0x68, 0x70, 0x58, 0xab, 0xdb, 0x8e, 0xee, 0x5f, 0x24, 0x8b,
- 0xaf, 0x62, 0xbf, 0xa9, 0x0f, 0x3f, 0x9f, 0x0b, 0x5a, 0x38, 0x79, 0x2e, 0x88, 0x77, 0x3e, 0x66, 0xa0, 0x4d,
- 0x04, 0xe6, 0x52, 0xd0, 0x34, 0x14, 0xb1, 0x6c, 0x59, 0x2e, 0x19, 0x85, 0x48, 0x13, 0x00, 0x30, 0xe9, 0xd8,
- 0xe6, 0xe6, 0x26, 0x1b, 0xf2, 0x50, 0xbc, 0x73, 0xaa, 0xcb, 0xac, 0x95, 0x95, 0x4e, 0x56, 0x80, 0x4e, 0x93,
- 0x81, 0x61, 0x50, 0xe0, 0xeb, 0xba, 0x22, 0x03, 0xdb, 0x60, 0x1b, 0xd5, 0xa2, 0x17, 0x6f, 0xf8, 0x76, 0xce,
- 0x15, 0x93, 0x18, 0xc2, 0xfd, 0xa5, 0x92, 0x5c, 0xd9, 0xe3, 0x3b, 0xf5, 0x5b, 0x92, 0xe2, 0xec, 0x8a, 0x57,
- 0xca, 0xa4, 0x39, 0xc6, 0xcc, 0xf6, 0x22, 0x08, 0x2c, 0x0d, 0x53, 0xe5, 0x95, 0xa4, 0x09, 0x64, 0x6f, 0x52,
- 0x59, 0x51, 0xa0, 0xbe, 0xe3, 0x8c, 0x09, 0x9a, 0x3a, 0xe3, 0xe5, 0xeb, 0xa8, 0x05, 0x75, 0xbd, 0x40, 0x08,
- 0xd5, 0x9e, 0x96, 0x7d, 0xe0, 0xc5, 0x79, 0x7a, 0x80, 0xc8, 0x92, 0x05, 0xf0, 0x9e, 0x25, 0xf8, 0x70, 0xdc,
- 0x9c, 0x15, 0xf9, 0x37, 0x0e, 0x4e, 0xfb, 0xeb, 0xeb, 0xa3, 0x3c, 0x26, 0x2b, 0x80, 0xc1, 0x6b, 0x03, 0xe0,
- 0xce, 0xb7, 0x93, 0x12, 0x2d, 0x55, 0x29, 0xab, 0xf9, 0x62, 0x91, 0x83, 0xcd, 0xe4, 0xa5, 0x89, 0xb1, 0x2f,
- 0x89, 0x2f, 0xc5, 0x0f, 0x3c, 0xe1, 0x59, 0xb7, 0xfe, 0x92, 0x0a, 0x2c, 0xfb, 0x4e, 0xe6, 0x09, 0x08, 0x39,
- 0xcd, 0x6f, 0x86, 0x3f, 0x25, 0x16, 0xac, 0x02, 0x91, 0x92, 0x8c, 0xd6, 0x46, 0xec, 0x65, 0x24, 0x7b, 0x42,
- 0x2a, 0x4f, 0x86, 0xc9, 0xf4, 0x93, 0x04, 0xf0, 0xfc, 0x2c, 0x70, 0x01, 0x10, 0xcc, 0x62, 0x82, 0x99, 0x96,
- 0x98, 0x9e, 0x3f, 0x00, 0x5e, 0x46, 0x9a, 0x35, 0x85, 0xde, 0x2e, 0xc3, 0xff, 0x74, 0xa0, 0x13, 0x65, 0xd6,
- 0x77, 0x5e, 0x42, 0x5e, 0x56, 0x35, 0x41, 0x0e, 0x5d, 0xd2, 0x00, 0x64, 0xb6, 0xf9, 0x11, 0x21, 0x57, 0x49,
- 0x3e, 0x3a, 0x73, 0x61, 0x84, 0x3a, 0x4e, 0x6d, 0x65, 0x68, 0xcd, 0xa9, 0xa5, 0x8f, 0x6e, 0x3e, 0x0c, 0xbf,
- 0x52, 0x46, 0x9e, 0x44, 0x7f, 0x42, 0xf2, 0x00, 0x6b, 0xfb, 0x43, 0xd0, 0x8c, 0xf5, 0x5e, 0xb2, 0xeb, 0xe6,
- 0x0a, 0xfd, 0x1e, 0xe2, 0x4a, 0x5c, 0x5d, 0xd0, 0xba, 0x6d, 0xb2, 0x35, 0x83, 0xc2, 0x51, 0x62, 0xfc, 0x79,
- 0x4f, 0xca, 0x93, 0xed, 0xc5, 0x2a, 0x1c, 0xcb, 0x48, 0x99, 0xbc, 0x3b, 0x4e, 0xcb, 0xc7, 0x1a, 0xa4, 0x07,
- 0x3b, 0xe3, 0xad, 0x6c, 0xd1, 0xd4, 0x2a, 0x45, 0xde, 0x43, 0x23, 0x3a, 0xc0, 0x5c, 0x43, 0x9b, 0x43, 0xb1,
- 0xdb, 0xc8, 0xe4, 0xa8, 0xa5, 0xd6, 0xce, 0x01, 0xd5, 0x31, 0xf1, 0x47, 0xaf, 0x69, 0x38, 0x4b, 0x97, 0x54,
- 0x1d, 0xfa, 0xce, 0x96, 0xa4, 0xeb, 0xae, 0xec, 0x29, 0xe8, 0x14, 0x89, 0x67, 0xe0, 0xa2, 0xab, 0x43, 0xf5,
- 0x32, 0x04, 0xb6, 0xa9, 0x09, 0xa5, 0x59, 0x4f, 0x96, 0x54, 0xcd, 0xf0, 0x09, 0xe0, 0x35, 0x58, 0x16, 0x46,
- 0x09, 0x3e, 0x68, 0x6e, 0x8c, 0x93, 0x99, 0x81, 0x3e, 0xe5, 0x34, 0xef, 0x9e, 0x35, 0xe4, 0x3a, 0x19, 0xa0,
- 0x71, 0xd3, 0x73, 0x33, 0x43, 0x90, 0xfe, 0xae, 0x4c, 0x5c, 0xe8, 0x9f, 0x55, 0x05, 0xaf, 0x38, 0xcf, 0x54,
- 0x83, 0x7c, 0xbb, 0x50, 0x91, 0xa6, 0x72, 0x74, 0x31, 0xba, 0x01, 0x62, 0xc1, 0x5f, 0x41, 0x8b, 0x1b, 0x31,
- 0xfd, 0xf9, 0xff, 0x4b, 0x99, 0x77, 0xb8, 0x97, 0x77, 0x4e, 0x36, 0xed, 0x32, 0xd6, 0x91, 0x86, 0x8b, 0x49,
- 0xf8, 0x39, 0x7d, 0x53, 0x3c, 0x86, 0x9a, 0x56, 0x7d, 0xd1, 0xb3, 0x42, 0xde, 0xb1, 0x41, 0xe0, 0x1e, 0xf9,
- 0x30, 0x6f, 0x25, 0xc0, 0x46, 0x36, 0x07, 0x78, 0x67, 0xe2, 0x67, 0x70, 0xec, 0xa8, 0xfe, 0x1f, 0xbf, 0x04,
- 0xbc, 0xf0, 0xb9, 0x67, 0x97, 0xf9, 0x8c, 0x59, 0xda, 0x5c, 0xd3, 0x76, 0x5b, 0x01, 0x90, 0x98, 0x1e, 0xb2,
- 0xa9, 0x5a, 0x05, 0xd2, 0x57, 0x4b, 0x6a, 0x7b, 0x4a, 0xfe, 0x9b, 0xee, 0x4c, 0x70, 0xee, 0xf5, 0xf7, 0x3a,
- 0x02, 0x0a, 0xde, 0x02, 0xbb, 0xa3, 0x70, 0xf4, 0xdf, 0xd6, 0xdb, 0x3e, 0x16, 0xc0, 0x96, 0x12, 0x66, 0x3f,
- 0xa0, 0x62, 0x3d, 0x5f, 0x27, 0xab
+ 0xee, 0x89, 0xf9, 0x20, 0x54, 0x02, 0x82, 0xb6, 0x82, 0x89, 0x08, 0xc4, 0x25, 0x6f, 0x35, 0x01, 0x20, 0x47,
+ 0xf0, 0x24, 0xd1, 0x64, 0xf6, 0x16, 0x21, 0xcb, 0xf6, 0x20, 0x6c, 0xfe, 0x1e, 0xf6, 0x6e, 0x87, 0xc0, 0x28,
+ 0x13, 0x7a, 0x6a, 0x27, 0x7f, 0xff, 0x4b, 0xd3, 0xac, 0x17, 0x25, 0xbf, 0x43, 0x3b, 0xbe, 0x2d, 0x41, 0xb8,
+ 0xc4, 0xa5, 0x91, 0xa3, 0xc0, 0x52, 0xbe, 0x16, 0x34, 0x6f, 0x2f, 0x35, 0x43, 0x8c, 0xcc, 0x5e, 0xbe, 0x48,
+ 0x08, 0x60, 0x0c, 0x83, 0xb7, 0x54, 0x72, 0xc7, 0xf6, 0x18, 0x9c, 0x02, 0xfc, 0x7e, 0x26, 0x52, 0xeb, 0xd7,
+ 0x36, 0x7c, 0xae, 0x7c, 0xb4, 0x17, 0x41, 0xc1, 0x63, 0x7d, 0x59, 0x4d, 0xb6, 0x66, 0xc1, 0xa6, 0x3e, 0x7a,
+ 0x29, 0xc0, 0xd7, 0x17, 0x7d, 0xa8, 0x49, 0x27, 0x02, 0x3e, 0xc4, 0xb4, 0xe3, 0xfd, 0x55, 0xed, 0x66, 0x0a,
+ 0x28, 0x86, 0xbf, 0xa9, 0xff, 0x48, 0xf4, 0x2d, 0xa8, 0x30, 0xdb, 0x37, 0x8d, 0xae, 0xac, 0x7c, 0xa6, 0x00,
+ 0x2a, 0xf3, 0x2c, 0xb9, 0x57, 0x08, 0xd0, 0xaa, 0x6c, 0xa2, 0xc0, 0xb7, 0x26, 0xb7, 0xb2, 0x02, 0x58, 0x20,
+ 0x1c, 0xf4, 0x20, 0xfb, 0x67, 0x69, 0xd9, 0xf3, 0x86, 0x1d, 0x7d, 0xb1, 0xed, 0x4d, 0x75, 0x6b, 0x2e, 0x3f,
+ 0x36, 0xb9, 0xef, 0xda, 0xbd, 0x4a, 0x7f, 0x84, 0xd8, 0xaa, 0xa9, 0xab, 0xd7, 0xde, 0x25, 0x85, 0x36, 0x37,
+ 0x71, 0xc6, 0xe8, 0x4f, 0x72, 0x5a, 0x87, 0xa2, 0xcb, 0x2d, 0x4c, 0x7e, 0x47, 0x61, 0x91, 0xdc, 0xfc, 0x35,
+ 0xe5, 0x61, 0xf3, 0xaa, 0x7b, 0x55, 0x2c, 0xf0, 0x8f, 0xc9, 0x35, 0x29, 0x9e, 0x93, 0x41, 0x21, 0xa0, 0x09,
+ 0x1e, 0x02, 0x3c, 0xc8, 0x48, 0xf3, 0xa3, 0xbf, 0x63, 0xd4, 0x7f, 0xb7, 0x52, 0x22, 0x58, 0x0f, 0x02, 0x86,
+ 0x1b, 0xf7, 0x4d, 0x7e, 0x2a, 0x7c, 0x20, 0x97, 0xf5, 0x4a, 0xaa, 0x8d, 0xa2, 0x8f, 0x9b, 0xb8, 0xc5, 0x2b,
+ 0x02, 0x1a, 0xbd, 0xa1, 0x81, 0x79, 0x1a, 0xb1, 0x0c, 0xc3, 0x60, 0xa1, 0xd8, 0x30, 0xd9, 0x0b, 0x98, 0x3d,
+ 0xe6, 0xb6, 0xf8, 0x64, 0x75, 0xa7, 0xaa, 0x60, 0x2b, 0xcc, 0xc0, 0xa1, 0x35, 0x76, 0x7e, 0x45, 0x25, 0xf5,
+ 0x7f, 0x7e, 0xc5, 0x8d, 0x00, 0x56, 0xb1, 0xe0, 0x59, 0xb0, 0xcc, 0x29, 0x0e, 0x8a, 0x3d, 0x60, 0xff, 0xba,
+ 0xea, 0x80, 0x7a, 0xfc, 0xc5, 0xe7, 0x1b, 0x6b, 0x87, 0x38, 0xe7, 0x26, 0x73, 0x9c, 0x44, 0xdf, 0xb3, 0x7e,
+ 0x51, 0xa3, 0x28, 0x83, 0x8f, 0x9c, 0x06, 0x97, 0x10, 0xfd, 0x22, 0x82, 0x60, 0x31, 0x36, 0x66, 0x2a, 0x23,
+ 0x54, 0xc4, 0x17, 0x58, 0x73, 0x79, 0x70, 0x4f, 0xfa, 0xa3, 0xd1, 0x7c, 0x8e, 0xa8, 0xaf, 0x46, 0xec, 0x2a,
+ 0xa4, 0xe6, 0xa6, 0xa2, 0x4e, 0x09, 0xc3, 0xc2, 0xa6, 0x53, 0x3d, 0x87, 0x6d, 0x2e, 0xfe, 0xbf, 0x47, 0xce,
+ 0x2a, 0xf0, 0x0e, 0xd3, 0x2d, 0x05, 0xfd, 0x2c, 0x0f, 0x04, 0x15, 0xae, 0xca, 0x6c, 0x12, 0xb7, 0x20, 0x0d,
+ 0x06, 0xd5, 0xef, 0xc9, 0x88, 0x2c, 0x93, 0x0a, 0x0e, 0xf7, 0xb6, 0x61, 0xe7, 0xe0, 0x16, 0x30, 0xd1, 0x6e,
+ 0xb9, 0x23, 0xc0, 0x66, 0xd5, 0xae, 0x15, 0xf8, 0x1d, 0x1d, 0x66, 0xbb, 0xe4, 0x30, 0x4c, 0x14, 0x55, 0x47,
+ 0x78, 0x67, 0x99, 0x4f, 0xbf, 0x58, 0xe2, 0x63, 0x0b, 0xa8, 0x0a, 0x67, 0xf4, 0xc6, 0xbd, 0xda, 0x6a, 0x92,
+ 0x67, 0x56, 0x36, 0x0c, 0x89, 0xfc, 0x34, 0x48, 0xbc, 0x7e, 0xcc, 0xb6, 0xa2, 0xfc, 0x31, 0xf9, 0xe9, 0xad,
+ 0x54, 0x32, 0xed, 0x67, 0x91, 0x22, 0x6b, 0x2b, 0x1d, 0x32, 0x0f, 0x02, 0x39, 0x0a, 0xca, 0x5f, 0xcf, 0x53,
+ 0x54, 0x88, 0x28, 0x38, 0xf9, 0x77, 0x7b, 0x40, 0x86, 0x93, 0x9e, 0x58, 0x39, 0xb8, 0x57, 0x60, 0x19, 0x2f,
+ 0xc9, 0xff, 0xe4, 0x2e, 0x24, 0x25, 0x0c, 0x94, 0x1a, 0xbd, 0x0a, 0xdc, 0xb8, 0x32, 0xf4, 0x16, 0xda, 0xea,
+ 0xda, 0x98, 0xdb, 0x47, 0xe6, 0xe1, 0x4f, 0xf8, 0xe0, 0x0c, 0x85, 0xd3, 0x17, 0xbc, 0xae, 0x9e, 0x8a, 0x7c,
+ 0x55, 0xbe, 0xbe, 0xe9, 0x9f, 0x4c, 0xfc, 0x91, 0x5e, 0x57, 0xe4, 0xe5, 0x57, 0x23, 0x5e, 0x71, 0xca, 0xc8,
+ 0x41, 0x78, 0x16, 0x89, 0x1e, 0x71, 0xc0, 0xf5, 0x5c, 0xd1, 0x72, 0x40, 0x23, 0x9d, 0xce, 0xb3, 0x78, 0xf2,
+ 0x37, 0x50, 0x97, 0x3f, 0x8e, 0x89, 0x0c, 0x6a, 0x90, 0xe3, 0x2b, 0x04, 0x82, 0x85, 0x05, 0x65, 0x59, 0xe2,
+ 0x7c, 0x40, 0xe1, 0x29, 0x9e, 0xa6, 0xd5, 0x33, 0x0a, 0x9d, 0xdb, 0x01, 0xe7, 0xc8, 0xe4, 0xc7, 0x0e, 0x24,
+ 0x32, 0xa7, 0x77, 0x5a, 0x22, 0x45, 0x73, 0x1f, 0x23, 0x0e, 0x4f, 0x35, 0x04, 0x44, 0xb5, 0xcc, 0xa4, 0xde,
+ 0x6d, 0xb1, 0x13, 0x6f, 0xb5, 0x75, 0x0e, 0x7f, 0x32, 0x6c, 0x4f, 0xfe, 0x10, 0x10, 0x6d, 0x66, 0xd0, 0x49,
+ 0x36, 0x87, 0xb1, 0xdf, 0x75, 0xb2, 0x7f, 0x68, 0x34, 0xaf, 0xab, 0xb3, 0x2a, 0xfa, 0x19, 0x81, 0x33, 0x85,
+ 0x15, 0x7a, 0x2d, 0x52, 0x24, 0xfe, 0x11, 0x91, 0x95, 0x80, 0x3d, 0xf5, 0x6c, 0x06, 0x3a, 0x3e, 0x50, 0x5a,
+ 0xf7, 0x2b, 0xb4, 0x78, 0xe3, 0xec, 0x6a, 0x3a, 0x0e, 0xf5, 0x61, 0x68, 0x5a, 0x34, 0xda, 0x1b, 0xde, 0x89,
+ 0xa8, 0xe7, 0xec, 0xd0, 0xd4, 0x16, 0x51, 0x2d, 0xad, 0xa9, 0x9c, 0xcf, 0xc9, 0x93, 0x05, 0x95, 0xea, 0x95,
+ 0x74, 0xd5, 0x00, 0x55, 0x90, 0x0c, 0x5c, 0x1d, 0xaa, 0x88, 0xcc, 0xad, 0x82, 0xbc, 0x28, 0xef, 0x1a, 0xf0,
+ 0xb2, 0x32, 0x18, 0x28, 0x71, 0x23, 0x1f, 0x69, 0xf0, 0xeb, 0x96, 0x86, 0x05, 0x6d, 0x2e, 0x0e, 0x4e, 0x14,
+ 0x64, 0x70, 0xa9, 0x35, 0xf4, 0x17, 0x20, 0x23, 0x2c, 0xf1, 0x7a, 0xaf, 0x2b, 0x86, 0x78, 0x9e, 0x37, 0x27,
+ 0x8f, 0xee, 0xb6, 0x55, 0x71, 0xd1, 0x63, 0x48, 0x26, 0x67, 0xd5, 0xf9, 0xdd, 0xb9, 0xbb, 0x75, 0x04, 0x6d,
+ 0x46, 0x3c, 0x72, 0x61, 0x8d, 0x2b, 0x45, 0x27, 0xaf, 0x50, 0xad, 0x7f, 0xde, 0x3f, 0x91, 0xdf, 0x84, 0xf4,
+ 0x29, 0xbf, 0xe5, 0xfd, 0x40, 0x8a, 0xcd, 0x09, 0x8b, 0x20, 0xef, 0xa8, 0xe4, 0xf2, 0xc4, 0xbd, 0x37, 0x93,
+ 0x3b, 0xd1, 0xda, 0x91, 0xc3, 0x65, 0x67, 0xf9, 0x5b, 0x3e, 0xa4, 0xb4, 0xa5, 0x8d, 0xd6, 0x46, 0x0f, 0x42,
+ 0x7e, 0x57, 0xa2, 0xa2, 0x9c, 0x49, 0xc6, 0x1b, 0x78, 0x6c, 0x54, 0x99, 0x39, 0x15, 0x1e, 0x76, 0x07, 0x15,
+ 0x32, 0xf5, 0xc6, 0xe0, 0x1a, 0xd6, 0x81, 0xc9, 0x02, 0x81, 0xb6, 0xf8, 0xd6, 0xb1, 0xc9, 0xed, 0xe1, 0x59,
+ 0x4b, 0xb7, 0xd0, 0x83, 0x4f, 0x37, 0xf4, 0x98, 0xfb, 0xb7, 0xe2, 0x59, 0x15, 0xb1, 0x86, 0x7b, 0xa7, 0xb3,
+ 0xb4, 0x23, 0x92, 0x92, 0x38, 0x35, 0x45, 0xf6, 0x38, 0x84, 0xc1, 0x63, 0xd4, 0x4b, 0x85, 0x57, 0xc6, 0x08,
+ 0x67, 0x3d, 0x9b, 0x0d, 0x16, 0xf0, 0xda, 0xdd, 0xc1, 0x65, 0xff, 0x93, 0x7e, 0xa9, 0xf2, 0xa8, 0x19, 0x10,
+ 0xe5, 0x13, 0xaa, 0x0e, 0x0d, 0xe5, 0xbb, 0x1f, 0x7a, 0xbb, 0x66, 0x93, 0xaa, 0x93, 0xf3, 0xcd, 0x11, 0xc2,
+ 0x61, 0x3c, 0xb5, 0x0e, 0x74, 0x1f, 0xc0, 0x70, 0x15, 0xd1, 0x92, 0x97, 0xb1, 0x03, 0x95, 0x6a, 0xd3, 0xed,
+ 0x5d, 0x06, 0xe7, 0xac, 0xf0, 0x3c, 0xe8, 0x32, 0x44, 0xf4, 0xac, 0xe4, 0x22, 0xf0, 0xda, 0x1c, 0xd3, 0x78,
+ 0x8d, 0xfb, 0xc0, 0x61, 0xb1, 0xd6, 0xf4, 0xbc, 0x26, 0xd7, 0x1c, 0x0b, 0x8d, 0x5f, 0xba, 0xb6, 0xb9, 0xc3,
+ 0xf1, 0xad, 0x5e, 0x59, 0xd3, 0xd7, 0xa2, 0x8d, 0xe1, 0x85, 0x6b, 0x01, 0x10, 0xf3, 0x2e, 0xe8, 0x17, 0xae,
+ 0x0a, 0xdd, 0x88, 0x16, 0xd4, 0x1d, 0xca, 0x1d, 0x37, 0xe9, 0x8e, 0x3d, 0x81, 0x7b, 0xc4, 0xb3, 0xc3, 0x71,
+ 0x32, 0xea, 0x3b, 0xe7, 0x3f, 0x22, 0x8f, 0xed, 0xc0, 0x72, 0x9a, 0x59, 0xa4, 0xc9, 0xba, 0xac, 0x17, 0xc4,
+ 0xc5, 0xef, 0xba, 0xf2, 0x22, 0x42, 0xb2, 0x26, 0x9a, 0x0f, 0x29, 0x11, 0x0b, 0xc0, 0x5d, 0x1a, 0xd6, 0xe0,
+ 0xba, 0xd6, 0xa0, 0x91, 0xeb, 0x0c, 0x93, 0x2d, 0x33, 0x68, 0xf7, 0x3b, 0x4e, 0x12, 0xe0, 0x75, 0xfd, 0xaf,
+ 0xb4, 0x3f, 0x89, 0x5f, 0xdf, 0x29, 0x74, 0x15, 0x2b, 0xbb, 0x53, 0x97, 0x29, 0xbd, 0x8c, 0x58, 0xfa, 0x76,
+ 0x05, 0x27, 0x43, 0xcb, 0xcc, 0x81, 0x79, 0x98, 0xa7, 0x37, 0xbf, 0x47, 0x8e, 0x28, 0x6b, 0xda, 0x8e, 0xc9,
+ 0x8e, 0x60, 0x59, 0xe0, 0x9e, 0x00, 0x71, 0xc4, 0x75, 0x21, 0x6a, 0xcc, 0xb0, 0xa2, 0x2f, 0x4f, 0x1b, 0x37,
+ 0x96, 0x2d, 0x9c, 0xc4, 0xa9, 0x60, 0x1a, 0xd4, 0x16, 0xd0, 0x8a, 0x9d, 0x61, 0x53, 0x67, 0xe2, 0x83, 0xf0,
+ 0xbe, 0xad, 0xe5, 0x1a, 0x76, 0x3c, 0x42, 0x78, 0x99, 0x9d, 0xa4, 0xcf, 0xaa, 0x6a, 0x5b, 0x8d, 0xfd, 0xd5,
+ 0xa4, 0x3f, 0x8a, 0xe7, 0x88, 0x8a, 0x04, 0x4c, 0xdb, 0x90, 0xea, 0x58, 0x16, 0x96, 0xc4, 0x20, 0x20, 0x5b,
+ 0x09, 0xce, 0xb9, 0x8d, 0x1c, 0xc9, 0x47, 0x19, 0x34, 0xbd, 0xd9, 0x62, 0x37, 0x3e, 0x8c, 0x7f, 0x0b, 0xe6,
+ 0xf0, 0xc3, 0xc9, 0x82, 0x5d, 0xb6, 0xa8, 0xe5, 0xfa, 0xe6, 0x15, 0xaa, 0x7b, 0x6a, 0x2a, 0x2e, 0x36, 0x26,
+ 0x2c, 0x37, 0xe6, 0x40, 0x83, 0x6a, 0x72, 0x0e, 0x7f, 0xf4, 0x5c, 0xf4, 0x29, 0x18, 0x1d, 0xf9, 0x99, 0x9c,
+ 0x3f, 0x41, 0x89, 0x54, 0x98, 0xb9, 0x04, 0x81, 0xc8, 0xd5, 0xb8, 0x29, 0x27, 0x09, 0x91, 0x83, 0xfc, 0x64,
+ 0xd1, 0x2a, 0xed, 0x00, 0x18, 0xb2, 0xd2, 0x5c, 0x0b, 0xef, 0xcb, 0x89, 0x56, 0xff, 0xb6, 0x5e, 0xa4, 0x2b,
+ 0xd2, 0x07, 0x42, 0x8e, 0xe8, 0x75, 0xc7, 0x24, 0x13, 0xe5, 0x72, 0x0d, 0xe3, 0xfd, 0xfa, 0x20, 0x32, 0x8d,
+ 0xbe, 0x71, 0xb7, 0xe1, 0xa8, 0x01, 0x7d, 0xeb, 0x5d, 0x86, 0x98, 0x14, 0xe2, 0x94, 0x92, 0x95, 0x1b, 0x34,
+ 0x0d, 0xf4, 0x5a, 0x7f, 0x5d, 0x9c, 0x40, 0xa2, 0x1c, 0x48, 0x98, 0x65, 0x0d, 0xf4, 0x7d, 0xc7, 0x28, 0x88,
+ 0x4c, 0x92, 0xd9, 0x71, 0x31, 0x32, 0xe0, 0xe9, 0x54, 0x46, 0xa8, 0xe0, 0x92, 0xc1, 0x98, 0xfd, 0x32, 0xa7,
+ 0x87, 0xfa, 0xdc, 0x72, 0x48, 0xff, 0xb7, 0xb3, 0x84, 0x0b, 0x3e, 0x57, 0xb8, 0x7b, 0x90, 0x1f, 0x9f, 0xca,
+ 0xff, 0x97, 0xa3, 0xcc, 0x2d, 0x39, 0x68, 0x7e, 0x09, 0xfe, 0xd4, 0xbf, 0x73, 0xdd, 0x95, 0x24, 0x1e, 0xfe,
+ 0x88, 0x9d, 0x1a, 0xc6, 0xc6, 0x32, 0xa4, 0x2a, 0xdc, 0xb6, 0x13, 0x34, 0xe5, 0x99, 0x8f, 0xf9, 0x1e, 0xde,
+ 0xc4, 0x61, 0x83, 0x8e, 0x7d, 0xb2, 0xd9, 0xcc, 0x79, 0xbf, 0x28, 0x70, 0x4f, 0x69, 0xa7, 0xbc, 0xf4, 0x1c,
+ 0xf3, 0xf5, 0xb2, 0xa6, 0xbf, 0xb0, 0xca, 0xeb, 0x63, 0x33, 0xb2, 0x2d, 0x52, 0xb0, 0x4b, 0x4f, 0x13, 0x86,
+ 0x0f, 0x32, 0xac, 0xd4, 0xb2, 0x08, 0x3b, 0xe8, 0x53, 0x32, 0xa6, 0xf1, 0xab, 0x22, 0x0c, 0xee, 0xaf, 0x8c,
+ 0xdb, 0x08, 0x2c, 0x05, 0x1f, 0x22, 0x80, 0x58, 0x0c, 0x20, 0xe6, 0x10, 0x14, 0xf3, 0xeb, 0xd9, 0x36, 0x5f,
+ 0x98, 0x78, 0x73, 0x6e, 0x3a, 0x50, 0x6f, 0x00, 0x87, 0x71, 0xaa, 0x40, 0xc8, 0x5a, 0x4e, 0x9a, 0x69, 0xff,
+ 0xd6, 0x53, 0x72, 0x64, 0x3d, 0xf0, 0xc6, 0x90, 0x2a, 0xf7, 0x50, 0x68, 0xba, 0xae, 0x98, 0xcd, 0x11, 0xbc,
+ 0x65, 0xf3, 0x70, 0xda, 0xa8, 0x0e, 0x16, 0x0e, 0xe3, 0x59, 0xb5, 0x02, 0x37, 0x71, 0x7a, 0x1e, 0xad, 0xbf,
+ 0x0a, 0x87, 0xbd, 0xf6, 0x61, 0xcd, 0x4f, 0x85, 0x83, 0xec, 0x68, 0x2b, 0xe1, 0x09, 0x1f, 0xb9, 0xc9, 0xdf,
+ 0x30, 0x5d, 0xef, 0xf2, 0x53, 0x4d, 0x67, 0x29, 0xf8, 0xa5, 0x5f, 0xf9, 0xcb, 0x7f, 0x2c, 0xac, 0xa6, 0xd0,
+ 0xde, 0x15, 0x71, 0xe2, 0x43, 0x54, 0x5f, 0x75, 0x8f, 0x98, 0x42, 0x0d, 0x87, 0xb1, 0x1e, 0xb6, 0xa9, 0x0d,
+ 0xd5, 0x73, 0xd9, 0x14, 0x4f, 0xb0, 0x0f, 0x6d, 0x6a, 0xe9, 0x4c, 0xed, 0x56, 0xac, 0x87, 0x7a, 0x87, 0xb1,
+ 0xe6, 0x98, 0x13, 0x10, 0xbd, 0x05, 0x9b, 0xc6, 0x56, 0xf5, 0x5e, 0x9c, 0xdc, 0x92, 0x9e, 0xa5, 0x96, 0x09,
+ 0x6d, 0x9d, 0x07, 0x31, 0xac, 0xa0, 0x87, 0x43, 0x0e, 0x3f, 0x9d, 0xd5, 0x1a, 0x87, 0x89, 0xa2, 0x68, 0x7f,
+ 0xfa, 0xdb, 0x3c, 0x74, 0x06, 0x3d, 0xdb, 0xe7, 0x8e, 0xff, 0x46, 0x05, 0x57, 0xe2, 0xdd, 0x12, 0x97, 0x9e,
+ 0xa6, 0x1e, 0x3f, 0x54, 0x2c, 0xbf, 0x1c, 0x1a, 0xb0, 0xb8, 0x4f, 0x4e, 0x35, 0xcd, 0x3a, 0xfd, 0x0b, 0x1f,
+ 0x50, 0x49, 0x9f, 0x13, 0xd7, 0xf8, 0xee, 0x41, 0x77, 0x6c, 0xe5, 0xbe, 0x3a, 0xdf, 0xab, 0xf1, 0x9c, 0x27,
+ 0x42, 0xa7, 0x90, 0x68, 0x44, 0xee, 0x69, 0x7c, 0x24, 0xb4, 0x3b, 0x92, 0xfe, 0xaa, 0x6d, 0x1a, 0x36, 0x81,
+ 0x36, 0x4c, 0x17, 0xc6, 0xa1, 0xe1, 0x8d, 0xe6, 0xb7, 0x56, 0x61, 0xd5, 0xd8, 0x9d, 0x14, 0x11, 0xae, 0x9a,
+ 0x0f, 0x1d, 0x53, 0x74, 0xa0, 0x46, 0x47, 0xe1, 0x32, 0x78, 0x9a, 0x5b, 0x96, 0xf8, 0x4c, 0x5d, 0x6a, 0x23,
+ 0x31, 0x3e, 0x89, 0xe8, 0x30, 0xd4, 0x32, 0x84, 0xda, 0x2b, 0x6c, 0x13, 0x6c, 0x72, 0xe2, 0x3d, 0x1a, 0x8a,
+ 0x7d, 0x23, 0xed, 0x07, 0x24, 0x7f, 0xe9, 0xd9, 0x46, 0x15, 0xad, 0xcd, 0x7b, 0x39, 0x26, 0x8d, 0x56, 0xa1,
+ 0xcf, 0xc8, 0x10, 0x9d, 0x95, 0x0a, 0x41, 0x9f, 0x97, 0x93, 0xd5, 0xc1, 0xb2, 0x3d, 0xd2, 0xd1, 0xac, 0xce,
+ 0x7e, 0xae, 0x83, 0x76, 0xc6, 0x19, 0x35, 0x6b, 0x3e, 0xcf, 0xee, 0xcb, 0x7f, 0xd8, 0x5c, 0x17, 0x2e, 0xae,
+ 0xb2, 0x06, 0xd2, 0xd8, 0x3a, 0xdb, 0x14, 0xb9, 0x7b, 0x27, 0x1b, 0x4b, 0x44, 0x9e, 0xde, 0xff, 0xa5, 0x47,
+ 0x72, 0x3b, 0xb0, 0xa8, 0x27, 0xde, 0xf1, 0x21, 0x47, 0xc6, 0xa1, 0x2c, 0xb6, 0x19, 0x09, 0x29, 0xed, 0xa0,
+ 0xa9, 0x49, 0x95, 0x09, 0x39, 0xaf, 0x3a, 0xbc, 0x7e, 0xee, 0x42, 0x70, 0xdb, 0xe9, 0x78, 0xfc, 0x3f, 0x8d,
+ 0xb6, 0x8b, 0x49, 0x6e, 0xf7, 0x01, 0x32, 0x7c, 0xee, 0x55, 0x4a, 0xc8, 0x15, 0x62, 0x66, 0x23, 0x6d, 0xdb,
+ 0xb4, 0x18, 0x80, 0x3d, 0x26, 0x85, 0x0a, 0xf5, 0xca, 0xe5, 0x95, 0xf8, 0x88, 0x01, 0x22, 0x5d, 0x03, 0x0d,
+ 0x41, 0x08, 0xf0, 0x30, 0x35, 0x28, 0xcf, 0xc2, 0x73, 0xcd, 0xb1, 0x3e, 0xb3, 0xb6, 0x29, 0x03, 0xe4, 0x72,
+ 0xb6, 0x09, 0x46, 0x0d, 0xe3, 0x32, 0x3e, 0x2a, 0xab, 0x8e, 0x96, 0xa4, 0x21, 0x37, 0x99, 0x94, 0xda, 0x08,
+ 0xd4, 0x44, 0x9f, 0xfc, 0xdf, 0x5e, 0x77, 0xe0, 0x82, 0xda, 0xff, 0x84, 0xfe, 0x3c, 0xf6, 0x1b, 0x95, 0x5e,
+ 0x3c, 0x83, 0x6d, 0xb0, 0xdb, 0xea, 0xcd, 0x72, 0xa0, 0x28, 0x93, 0xd9, 0x2e, 0xfe, 0xd1, 0x37, 0xd2, 0xcc,
+ 0xe9, 0xc3, 0x6a, 0x0e, 0x15, 0x1a, 0x24, 0xae, 0x50, 0x66, 0x0f, 0xec, 0x10, 0x8e, 0x8d, 0x3a, 0xbd, 0x53,
+ 0x72, 0x33, 0x38, 0xc7, 0x0f, 0x09, 0x17, 0xe9, 0x8d, 0xcd, 0x2d, 0xff, 0xde, 0xed, 0x3c, 0x4a, 0x1f, 0x72,
+ 0x7a, 0x0a, 0xbb, 0xb7, 0xcb, 0xba, 0x94, 0x18, 0x23, 0xac, 0x8b, 0x37, 0x6a, 0x98, 0xaf, 0x60, 0x05, 0xf6,
+ 0x16, 0xc7, 0x31, 0x1e, 0x2f, 0x3f, 0xc6, 0xf1, 0x60, 0x26, 0x2a, 0x02, 0x10, 0x62, 0xe6, 0x12, 0x2b, 0x40,
+ 0xfe, 0x41, 0x48, 0xb1, 0xb4, 0x84, 0x75, 0x95, 0x06, 0xbe, 0x86, 0x20, 0x64, 0xb5, 0x78, 0x54, 0x22, 0x58,
+ 0x01, 0x2b, 0x09, 0x61, 0xdb, 0x40, 0x7c, 0xc2, 0xb1, 0x62, 0x37, 0x6a, 0x30, 0x88, 0xf0, 0x8e, 0x81, 0x71,
+ 0x5b, 0x99, 0x85, 0xf1, 0xf4, 0xe0, 0xce, 0x29, 0x76, 0x3c, 0x44, 0x27, 0xd2, 0x16, 0x38, 0x45, 0xe5, 0xb3,
+ 0x6d, 0xf2, 0xda, 0x93, 0x65, 0xa0, 0x4e, 0x99, 0xa3, 0x8f, 0x1c, 0x7e, 0xcb, 0xd6, 0xa3, 0xd4, 0x44, 0x79,
+ 0xb9, 0xeb, 0x0d, 0x55, 0x63, 0x9c, 0xce, 0x37, 0x4d, 0xd5, 0x5c, 0xd1, 0xad, 0x9e, 0xac, 0x27, 0xd3, 0xd3,
+ 0x52, 0x6e, 0x01, 0x30, 0x47, 0x43, 0x18, 0x9a, 0x5f, 0x51, 0x39, 0xa2, 0xbf, 0x53, 0x05, 0x8b, 0x30, 0x66,
+ 0x6b, 0xc2, 0xdb, 0x44, 0xe4, 0x4e, 0x67, 0xa4, 0xb5, 0xcf, 0x1b, 0x5b, 0xac, 0x65, 0xbf, 0x31, 0x4f, 0x99,
+ 0xa3, 0x73, 0xcd, 0x8a, 0x1d, 0x41, 0x52, 0xe8, 0x23, 0x75, 0x2f, 0x1e, 0xb4, 0x8d, 0x9e, 0x15, 0xe3, 0x11,
+ 0x9f, 0xbd, 0xea, 0x53, 0xce, 0x7b, 0xe4, 0xd9, 0x0c, 0xe9, 0x31, 0xb1, 0x4d, 0xd5, 0x89, 0x5b, 0x4b, 0x72,
+ 0x78, 0x4f, 0xc2, 0x2e, 0x23, 0xd7, 0xba, 0xf4, 0xbd, 0x12, 0x34, 0xfd, 0x8d, 0x6c, 0x36, 0xff, 0x81, 0x62,
+ 0x9f, 0x7a, 0x2e, 0xf9, 0xd8, 0x5c, 0x35, 0x50, 0x0b, 0x4b, 0x6f, 0x95, 0x7e, 0xae, 0xce, 0x00, 0x0c, 0x05,
+ 0x1f, 0x45, 0x0e, 0xa3, 0x7b, 0x71, 0x00, 0x89, 0x78, 0x90, 0xeb, 0xcd, 0xa0, 0x30, 0x54, 0xaa, 0x1d, 0x40,
+ 0x6b, 0xa7, 0x38, 0x7f, 0xaf, 0x2a, 0x52, 0xd4, 0x90, 0xb3, 0x43, 0x0e, 0x15, 0xd5, 0xf1, 0x87, 0xe9, 0x81,
+ 0x3d, 0x46, 0x9b, 0x07, 0xad, 0xce, 0x03, 0x4a, 0x58, 0x49, 0x4c, 0x7b, 0x17, 0x27, 0x0c, 0xc9, 0xca, 0xb0,
+ 0x5b, 0x0d, 0xaf, 0x3a, 0x32, 0xf4, 0x0f, 0x74, 0x90, 0xca, 0xb0, 0xd2, 0x35, 0x71, 0xf0, 0x78, 0xd4, 0xa1,
+ 0xfe, 0x5c, 0x69, 0x1f, 0xc0, 0x6e, 0xb6, 0x67, 0x1f, 0xc7, 0x53, 0xd3, 0x8f, 0x83, 0xcc, 0xad, 0xb3, 0xff,
+ 0x4a, 0x3c, 0x06, 0x43, 0xff, 0x2b, 0x1a, 0x67, 0xe2, 0x10, 0x89, 0x91, 0xa7, 0x8b, 0x52, 0xb1, 0xaa, 0x0e,
+ 0xd2, 0x57, 0x6b, 0x19, 0x20, 0x8c, 0xc5, 0x3f, 0x96, 0x58, 0xd8, 0x92, 0x59, 0x78, 0x64, 0xf5, 0xba, 0x2d,
+ 0x9c, 0x93, 0xed, 0x93, 0x8c, 0x37, 0x41, 0xe3, 0x33, 0xe4, 0x89, 0xcb, 0x91, 0x60, 0xbe, 0x74, 0xce, 0x7f,
+ 0x10, 0x19, 0xd2, 0x7b, 0x4d, 0x2d, 0x3c, 0x0f, 0x6c, 0xc1, 0x46, 0xf6, 0xb8, 0xb8, 0x5f, 0x0c, 0x18, 0x7a,
+ 0xed, 0x3c, 0x68, 0x44, 0xb7, 0x22, 0xd6, 0x98, 0x53, 0xec, 0x29, 0x44, 0xe6, 0x34, 0x0e, 0x67, 0xd0, 0x79,
+ 0x16, 0x20, 0x7a, 0xc5, 0x6d, 0xa1, 0xe3, 0xcd, 0xb5, 0x90, 0xdb, 0x52, 0xc7, 0x1d, 0x67, 0x97, 0xba, 0xb2,
+ 0x69, 0x68, 0x7c, 0x52, 0x83, 0xf2, 0xa0, 0x69, 0x89, 0x7f, 0xa0, 0x1a, 0x70, 0x54, 0x19, 0x8c, 0xbf, 0x2f,
+ 0x9d, 0x35, 0x80, 0x56, 0x12, 0x7e, 0x85, 0xa2, 0x08, 0xa9, 0x9f, 0x8e, 0xb1, 0x46, 0x60, 0xaf, 0x8e, 0x0a,
+ 0x1b, 0x0c, 0x94, 0xcd, 0x4e, 0x3d, 0x2d, 0x7d, 0x46, 0x3c, 0x06, 0xbc, 0x0b, 0xaf, 0x69, 0x6b, 0xd7, 0xc4,
+ 0x36, 0x4d, 0x1e, 0x52, 0xf9, 0x46, 0xd1, 0x5a, 0x3b, 0x18, 0x09, 0x57, 0x73, 0x47, 0xe9, 0xdd, 0xed, 0xa2,
+ 0xdc, 0x48, 0x10, 0x89, 0x01, 0x82, 0xac, 0xec, 0x3f, 0xad, 0xc0, 0xdd, 0x31, 0xcb, 0x3b, 0x50, 0x5c, 0x94,
+ 0x69, 0x48, 0xad, 0x5a, 0xa2, 0x64, 0x64, 0x82, 0x11, 0x6d, 0xad, 0xe7, 0x63, 0x1c, 0x98, 0x9f, 0xf5, 0xf3,
+ 0x1c, 0x2a, 0x8f, 0x4a, 0x0a, 0x9d, 0xa1, 0x8d, 0x04, 0x0d, 0x74, 0x95, 0x1b, 0x14, 0xd9, 0xa2, 0xe6, 0xa4,
+ 0x3a, 0x83, 0xc3, 0xc2, 0x35, 0x1a, 0xe3, 0x24, 0x0a, 0x0b, 0x05, 0xd3, 0xc0, 0x69, 0xa1, 0xdc, 0x88, 0x67,
+ 0x8f, 0xcb, 0xba, 0xd6, 0xa8, 0xee, 0x5f, 0xd5, 0x9f, 0xff, 0xc9, 0xbb, 0xe1, 0x6d, 0xb8, 0xa4, 0x61, 0x29,
+ 0xcf, 0x4a, 0x25, 0x9a, 0xa4, 0xac, 0xe3, 0x0a, 0x6a, 0xb3, 0x7c, 0xeb, 0x26, 0x26, 0xa2, 0x11, 0x16, 0x09,
+ 0xfb, 0x82, 0x39, 0x73, 0xac, 0xce, 0x2c, 0x8b, 0x1b, 0x64, 0xf3, 0x39, 0x2f, 0xf6, 0xc4, 0xcf, 0x4f, 0xfc,
+ 0x88, 0xdd, 0xfa, 0xd7, 0x20, 0x17, 0x40, 0x6d, 0x05, 0xdb, 0x75, 0xbf, 0x7c, 0x2f, 0xb0, 0x76, 0x4c, 0xc4,
+ 0xc7, 0x06, 0xac, 0x60, 0x54, 0x75, 0x2b, 0x65, 0xf3, 0x40, 0x89, 0x17, 0xe6, 0xa3, 0xd3, 0x8d, 0x53, 0xd8,
+ 0xf2, 0x34, 0x92, 0xb1, 0xc0, 0x81, 0xb2, 0xb4, 0xdf, 0x06, 0x09, 0xb4, 0xcf, 0x02, 0x46, 0x13, 0x7b, 0xbf,
+ 0xdb, 0xdc, 0xe1, 0x93, 0xcd, 0x54, 0x99, 0x4c, 0x40, 0xe8, 0x8b, 0x48, 0xa9, 0x04, 0xc5, 0x6c, 0xd3, 0x3f,
+ 0x9b, 0x7c, 0xe5, 0x8b, 0xd7, 0x14, 0xbc, 0xdb, 0xe6, 0x23, 0x38, 0xd5, 0x3f, 0x17, 0x5c, 0x13, 0x4f, 0x4f,
+ 0x5d, 0xd3, 0x9a, 0xbc, 0xfc, 0xa9, 0xcb, 0xe3, 0x8c, 0x1f, 0x3e, 0xb1, 0x7d, 0x2e, 0xb1, 0xe5, 0x78, 0x34,
+ 0xcd, 0xdf, 0xdb, 0x05, 0x12, 0xc5, 0xc3, 0xf2, 0x49, 0xf4, 0x34, 0xee, 0x0c, 0xa7, 0x08, 0x07, 0x75, 0xdf,
+ 0xc5, 0x0c, 0x73, 0xce, 0xc2, 0xd4, 0x4c, 0x82, 0x56, 0x5b, 0xe7, 0xf8, 0xe3, 0xe5, 0x00, 0xaa, 0x67, 0xa9,
+ 0x71, 0xf8, 0x2d, 0x4e, 0xc4, 0xc5, 0x1a, 0x96, 0x92, 0xf6, 0x9d, 0xd6, 0xce, 0x52, 0x6e, 0x01, 0x77, 0x47,
+ 0x29, 0xaf, 0x04, 0x56, 0x23, 0x63, 0x84, 0x16, 0xb9, 0x7b, 0xc5, 0x25, 0x7b, 0x7a, 0x43, 0xb2, 0x0b, 0x16,
+ 0xa9, 0x62, 0x30, 0xb7, 0x56, 0x77, 0x77, 0xaa, 0x44, 0x2f, 0x9a, 0x18, 0x6a, 0x16, 0xa8, 0x39, 0xd9, 0xf3,
+ 0xc4, 0x8b, 0x17, 0x65, 0x1b, 0x43, 0xc5, 0x36, 0x82, 0x5d, 0xa1, 0x60, 0x57, 0x21, 0xdd, 0x15, 0x62, 0x9a,
+ 0xa3, 0x90, 0x51, 0x8b, 0xbb, 0x70, 0xe3, 0x95, 0xea, 0x37, 0x72, 0x4e, 0xd0, 0x22, 0x15, 0xd7, 0xdb, 0x00,
+ 0x63, 0xaf, 0x41, 0x9b, 0xd5, 0x90, 0x6b, 0x2c, 0x6f, 0xe1, 0xbe, 0x2f, 0xf4, 0xee, 0xd1, 0xbe, 0x39, 0xae,
+ 0x3b, 0x25, 0x23, 0x22, 0x03, 0x80, 0x85, 0x7a, 0xd9, 0x31, 0xb6, 0x31, 0x9b, 0x03, 0xd6, 0x28, 0xa6, 0xdc,
+ 0xf4, 0x2a, 0x72, 0x96, 0x70, 0xce, 0x4a, 0x2b, 0xfc, 0xdc, 0xf3, 0x58, 0x20, 0x8e, 0xee, 0x5e, 0xbb, 0x64,
+ 0x8b, 0x58, 0x04, 0xca, 0x62, 0x4d, 0x36, 0xa9, 0x97, 0x87, 0xa7, 0xf1, 0x19, 0x91, 0xa4, 0xd0, 0x3e, 0xf4,
+ 0x21, 0x1b, 0x1a, 0xe5, 0x4a, 0x04, 0x65, 0x63, 0xdd, 0xc6, 0x9d, 0x47, 0x70, 0x11, 0x40, 0x45, 0x78, 0xed,
+ 0x14, 0xf6, 0x7d, 0x64, 0xa9, 0x83, 0x0f, 0x3c, 0xec, 0x72, 0xf2, 0xa3, 0xd4, 0xcf, 0x63, 0x29, 0xf0, 0x6c,
+ 0xe3, 0xde, 0xbe, 0x6e, 0xd6, 0x74, 0x35, 0x5c, 0x72, 0xbc, 0x0e, 0x19, 0x7c, 0xd8, 0x17, 0x1b, 0x42, 0x3f,
+ 0x75, 0xd4, 0x69, 0x52, 0xc8, 0x8f, 0xa0, 0xfc, 0x50, 0x1d, 0x6d, 0x5e, 0x1d, 0x9a, 0x80, 0xd7, 0xf6, 0x60,
+ 0x96, 0x01, 0x38, 0xbb
};
// context = simple_context_zh
diff --git a/demo/mcu/stm32f411/stm32f411e-disco/Src/main.c b/demo/mcu/stm32f411/stm32f411e-disco/Src/main.c
index 36c55f590..624816e26 100644
--- a/demo/mcu/stm32f411/stm32f411e-disco/Src/main.c
+++ b/demo/mcu/stm32f411/stm32f411e-disco/Src/main.c
@@ -63,8 +63,14 @@ static void inference_callback(pv_inference_t *inference) {
}
static void error_handler(void) {
- while (true)
- ;
+ printf("\r\n");
+ while (true);
+}
+
+void print_error_message(char **message_stack, int32_t message_stack_depth) {
+ for (int32_t i = 0; i < message_stack_depth; i++) {
+ printf("[%ld] %s\n", i, message_stack[i]);
+ }
}
int main(void) {
@@ -95,6 +101,10 @@ int main(void) {
pv_picovoice_t *handle = NULL;
+ char **message_stack = NULL;
+ int32_t message_stack_depth = 0;
+ pv_status_t error_status;
+
status = pv_picovoice_init(
ACCESS_KEY,
MEMORY_BUFFER_SIZE,
@@ -112,6 +122,16 @@ int main(void) {
&handle);
if (status != PV_STATUS_SUCCESS) {
printf("Picovoice init failed with '%s'", pv_status_to_string(status));
+
+ error_status = pv_get_error_stack(&message_stack, &message_stack_depth);
+ if (error_status != PV_STATUS_SUCCESS) {
+ printf("Unable to get Picovoice error state with '%s':\n", pv_status_to_string(error_status));
+ error_handler();
+ }
+
+ print_error_message(message_stack, message_stack_depth);
+ pv_free_error_stack(message_stack);
+
error_handler();
}
diff --git a/demo/mcu/stm32f769/stm32f769i-disco/.cproject b/demo/mcu/stm32f769/stm32f769i-disco/.cproject
index e9eedfda2..6ee707010 100644
--- a/demo/mcu/stm32f769/stm32f769i-disco/.cproject
+++ b/demo/mcu/stm32f769/stm32f769i-disco/.cproject
@@ -1,8 +1,8 @@
-
-
+
+
@@ -14,28 +14,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -90,8 +90,8 @@
-
-
+
+
@@ -103,28 +103,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -179,8 +179,8 @@
-
-
+
+
@@ -192,28 +192,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -268,8 +268,8 @@
-
-
+
+
@@ -281,28 +281,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -357,8 +357,8 @@
-
-
+
+
@@ -370,28 +370,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -446,8 +446,8 @@
-
-
+
+
@@ -459,28 +459,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -535,8 +535,8 @@
-
-
+
+
@@ -548,28 +548,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -624,8 +624,8 @@
-
-
+
+
@@ -637,28 +637,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -713,8 +713,8 @@
-
-
+
+
@@ -726,28 +726,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -802,8 +802,8 @@
-
-
+
+
@@ -815,28 +815,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -891,8 +891,8 @@
-
-
+
+
@@ -904,28 +904,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -980,8 +980,8 @@
-
-
+
+
@@ -993,28 +993,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -1069,8 +1069,8 @@
-
-
+
+
@@ -1082,28 +1082,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -1158,8 +1158,8 @@
-
-
+
+
@@ -1171,28 +1171,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -1247,8 +1247,8 @@
-
-
+
+
@@ -1260,28 +1260,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
@@ -1336,8 +1336,8 @@
-
-
+
+
@@ -1349,28 +1349,28 @@
-
-
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
+
-
-
-
+
+
-
-
-
+
+
-
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/demo/mcu/stm32f769/stm32f769i-disco/Inc/pv_params.h b/demo/mcu/stm32f769/stm32f769i-disco/Inc/pv_params.h
index 7baaa9aec..3f04ec8e7 100644
--- a/demo/mcu/stm32f769/stm32f769i-disco/Inc/pv_params.h
+++ b/demo/mcu/stm32f769/stm32f769i-disco/Inc/pv_params.h
@@ -1,6 +1,6 @@
/*
- Copyright 2020-2022 Picovoice Inc.
+ Copyright 2020-2023 Picovoice Inc.
You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
file accompanying this source.
@@ -16,510 +16,334 @@
#include
-#if defined(__PV_LANGUAGE_ENGLISH__)
+#if defined(__PV_LANGUAGE_ARABIC__)
-// wake-word = picovoice
+// wake-word = مرحبا الكمبيوتر
static const uint8_t KEYWORD_ARRAY[] = {
- 0x4b, 0x5e, 0x3b, 0x23, 0xa2, 0xbf, 0x43, 0xb1, 0x35, 0x08, 0x43, 0x8f, 0x19, 0x49, 0x67, 0x6e, 0xa9, 0xa1,
- 0xe8, 0xaa, 0x1e, 0x59, 0x2e, 0xc8, 0x0e, 0x94, 0xa2, 0xac, 0x10, 0x6b, 0xe2, 0xa1, 0xb5, 0x4c, 0xe4, 0x15,
- 0x3a, 0xad, 0x76, 0xa8, 0xd9, 0x2b, 0xae, 0xc3, 0x07, 0x87, 0x18, 0xdb, 0xf0, 0x2f, 0x84, 0xdc, 0xfd, 0xe3,
- 0x48, 0x41, 0x27, 0xb4, 0x5f, 0x52, 0x9f, 0x3d, 0x3a, 0xa5, 0xd7, 0x3a, 0x1b, 0xf6, 0x29, 0x5b, 0xbe, 0x8e,
- 0x91, 0x30, 0x17, 0x5c, 0x36, 0x38, 0x1f, 0x20, 0x43, 0x3e, 0x53, 0x3a, 0xd3, 0x6d, 0x47, 0xc5, 0x69, 0xa3,
- 0xff, 0x4a, 0x38, 0x6f, 0x40, 0x5a, 0x8e, 0x49, 0xe1, 0x27, 0xb5, 0xa9, 0xf8, 0xcf, 0xc3, 0x40, 0x18, 0x55,
- 0x7f, 0x7e, 0x9c, 0x9a, 0xbe, 0x26, 0xe6, 0x01, 0xe3, 0x5e, 0x2b, 0x8c, 0x63, 0xb4, 0xc1, 0x73, 0xbc, 0x05,
- 0x2a, 0xc2, 0x65, 0x59, 0x88, 0x65, 0x04, 0xc4, 0xa1, 0x3d, 0x35, 0x4e, 0xf0, 0xe0, 0xa5, 0x32, 0x07, 0xd8,
- 0x1d, 0x47, 0x13, 0x56, 0xb7, 0x21, 0x2a, 0xd8, 0xf4, 0x1c, 0x1b, 0x6b, 0xd5, 0xf0, 0x9b, 0xdf, 0x47, 0xb8,
- 0xea, 0x0e, 0x96, 0xea, 0x16, 0xdc, 0x42, 0x1e, 0xbd, 0x9c, 0xc1, 0xff, 0x88, 0xc2, 0xee, 0xdc, 0x6e, 0x01,
- 0x98, 0xbc, 0x0e, 0xd8, 0xd0, 0x6e, 0xdb, 0x60, 0xad, 0x5d, 0x6e, 0xa0, 0xe9, 0x53, 0x83, 0xf0, 0x6e, 0xed,
- 0x20, 0xaf, 0x21, 0xa5, 0x7b, 0x24, 0x39, 0x43, 0xe7, 0x6b, 0xdb, 0x3a, 0x03, 0x70, 0xbb, 0xc5, 0x47, 0xf1,
- 0xed, 0xcc, 0xff, 0x43, 0xeb, 0xcb, 0x95, 0xe1, 0x74, 0x91, 0x16, 0xbb, 0xe0, 0xa6, 0x51, 0x91, 0x63, 0x61,
- 0x49, 0x7b, 0x8d, 0xc0, 0x4c, 0x68, 0x81, 0x09, 0x6e, 0x1a, 0xb8, 0x8f, 0x43, 0x8a, 0x91, 0xe8, 0xdb, 0x48,
- 0xce, 0x46, 0xca, 0x45, 0x84, 0xd0, 0xa0, 0x96, 0x12, 0x29, 0xbc, 0x2e, 0xfc, 0xd4, 0x49, 0xfe, 0xd3, 0xa7,
- 0x40, 0x76, 0x7b, 0xa9, 0x48, 0x16, 0x50, 0x64, 0xe2, 0xc8, 0x35, 0xa2, 0xba, 0x37, 0xec, 0xa0, 0xa8, 0x5b,
- 0xea, 0xc8, 0x63, 0x17, 0xa9, 0x67, 0x74, 0x3b, 0x39, 0xd8, 0x25, 0xe3, 0x00, 0xd3, 0x5d, 0xf3, 0x10, 0x82,
- 0x0e, 0xf7, 0x75, 0x3e, 0x95, 0xd6, 0x34, 0xbd, 0xf3, 0xc3, 0x6c, 0x55, 0xba, 0x25, 0x71, 0x70, 0x4e, 0x25,
- 0xe2, 0x46, 0x1d, 0x70, 0x31, 0xab, 0xca, 0x8d, 0xa1, 0x9d, 0xbd, 0xf1, 0x8d, 0xea, 0x4d, 0xbc, 0x0e, 0x57,
- 0xd8, 0x6d, 0xd7, 0xf5, 0xf8, 0xf5, 0x1d, 0xf0, 0x00, 0x4a, 0xa6, 0xdf, 0xeb, 0xec, 0x85, 0x84, 0x67, 0x7e,
- 0x50, 0x60, 0x07, 0x9b, 0xb9, 0xd9, 0x6f, 0x13, 0xef, 0xf6, 0x6e, 0x47, 0xbf, 0xc9, 0xbc, 0x53, 0x4b, 0x2b,
- 0x64, 0xbe, 0xb6, 0xa8, 0x3d, 0x4e, 0xba, 0x1d, 0xa4, 0x55, 0x4c, 0xd2, 0xce, 0x5a, 0x0e, 0x0e, 0xd9, 0xde,
- 0x23, 0x2a, 0x66, 0x13, 0x2f, 0x17, 0x1a, 0xc0, 0x2b, 0x20, 0xfd, 0x95, 0x9d, 0x79, 0x59, 0x46, 0x9a, 0x4d,
- 0x44, 0x9b, 0xcb, 0x5c, 0x3f, 0x24, 0x8c, 0x56, 0x0d, 0x67, 0xdb, 0x40, 0x73, 0x28, 0x38, 0x52, 0x7d, 0x40,
- 0xce, 0x43, 0x1b, 0xe7, 0xcd, 0xef, 0xc9, 0x8d, 0x4b, 0xd7, 0x7d, 0xc3, 0xbf, 0x47, 0xd1, 0x7e, 0x5a, 0x55,
- 0x73, 0x9d, 0x23, 0x09, 0x26, 0xde, 0x53, 0xc9, 0x4c, 0x95, 0x4d, 0x25, 0x35, 0xe2, 0x4e, 0xaa, 0xcf, 0x0a,
- 0x4c, 0xe7, 0xa7, 0x9c, 0xa6, 0x02, 0x81, 0xf9, 0xe4, 0x8a, 0x1c, 0xa5, 0xe5, 0x4c, 0xb9, 0x25, 0x5b, 0xa3,
- 0xa0, 0xfe, 0x44, 0xac, 0x76, 0x2c, 0x89, 0xc7, 0x70, 0x1a, 0x54, 0xc8, 0x8b, 0x7e, 0x91, 0xf8, 0xb9, 0xdc,
- 0x01, 0xce, 0x77, 0x23, 0xa2, 0x36, 0x1d, 0xd4, 0xb0, 0xf4, 0x93, 0xe1, 0xc0, 0x8e, 0xaa, 0x20, 0x9e, 0xd0,
- 0x61, 0x0a, 0xee, 0x36, 0x3d, 0x60, 0x4e, 0x84, 0x3c, 0xb4, 0xd0, 0xcd, 0x2f, 0xfa, 0xba, 0xd3, 0x2f, 0x84,
- 0x2e, 0xe4, 0x0b, 0xe5, 0xfd, 0xcb, 0x1c, 0xb9, 0xfe, 0x31, 0xa3, 0x23, 0xf6, 0x30, 0xbf, 0x63, 0x92, 0xd2,
- 0x91, 0x04, 0xdc, 0xc9, 0x38, 0x1f, 0xd2, 0x93, 0x5a, 0xbd, 0x86, 0x01, 0xc7, 0xe2, 0xc6, 0xeb, 0x74, 0xa4,
- 0x4a, 0xf5, 0xdd, 0x08, 0xa5, 0xa5, 0x0b, 0x18, 0x61, 0x9b, 0x06, 0x18, 0xbc, 0xcf, 0x30, 0xbb, 0x4b, 0xf3,
- 0x4d, 0xb4, 0x3a, 0x87, 0xf1, 0x51, 0xc5, 0x39, 0x37, 0x64, 0x73, 0xca, 0xc1, 0x36, 0xb6, 0x6b, 0x92, 0x17,
- 0x8f, 0x38, 0x05, 0x6b, 0xe6, 0x08, 0xc2, 0xcb, 0xa5, 0xb3, 0xcb, 0x93, 0x44, 0x25, 0x5e, 0xc6, 0xc6, 0xf9,
- 0x70, 0x8b, 0x16, 0xc8, 0x40, 0x4a, 0x9a, 0x51, 0x2b, 0x15, 0xb6, 0x66, 0x9d, 0xbb, 0x1e, 0xef, 0x0a, 0x3a,
- 0x67, 0x02, 0xae, 0x86, 0x0d, 0xa9, 0x31, 0xdf, 0xeb, 0x5d, 0xee, 0xfe, 0xe6, 0xb7, 0xf4, 0xa6, 0x53, 0xe3,
- 0x6a, 0x8a, 0x3e, 0x08, 0xc4, 0x3e, 0x05, 0x24, 0xf6, 0xae, 0xc8, 0x42, 0x68, 0xd4, 0x55, 0xfe, 0xd4, 0x4d,
- 0x48, 0x7c, 0x58, 0x74, 0xf2, 0x21, 0x76, 0xd0, 0xf8, 0xd8, 0x86, 0xc6, 0x77, 0x83, 0x80, 0x1d, 0x38, 0x6b,
- 0x11, 0xe1, 0xbb, 0xd6, 0x6d, 0xaf, 0xc2, 0x01, 0xbc, 0x4e, 0xb7, 0x6f, 0x04, 0xe3, 0xac, 0x49, 0xbd, 0x40,
- 0xf9, 0xd8, 0xa9, 0xcf, 0xe4, 0x77, 0x0a, 0xeb, 0x77, 0xed, 0x8c, 0xff, 0xf1, 0x0e, 0x9f, 0xff, 0xf4, 0x23,
- 0xc2, 0xc7, 0xc5, 0xee, 0x52, 0xaa, 0x09, 0x78, 0x6b, 0x4b, 0x8a, 0xc2, 0x51, 0x98, 0x52, 0x68, 0xa9, 0x0e,
- 0xbb, 0xe6, 0xaa, 0x2d, 0xe9, 0xd1, 0xd7, 0x03, 0x37, 0x27, 0xfd, 0xd2, 0x0c, 0xe1, 0xe7, 0x25, 0xdd, 0x11,
- 0x43, 0x01, 0xdc, 0x1d, 0x16, 0x9f, 0x8f, 0x46, 0x7d, 0xcf, 0xe8, 0x33, 0x49, 0x0f, 0x9f, 0x14, 0xa7, 0xed,
- 0x14, 0x29, 0xc0, 0x3a, 0x1b, 0x97, 0x52, 0xfe, 0x9c, 0xc8, 0x78, 0x1c, 0x46, 0x7b, 0x8b, 0xdd, 0x14, 0x19,
- 0xaa, 0x97, 0x94, 0xe8, 0xe7, 0x3e, 0xab, 0x02, 0xf3, 0xef, 0xb1, 0x42, 0xe0, 0x54, 0x65, 0x81, 0x60, 0x65,
- 0x10, 0x25, 0x9a, 0xae, 0xec, 0x0c, 0x45, 0xd9, 0xaf, 0x91, 0x1d, 0xf1, 0xfd, 0xe0, 0xa3, 0x29, 0x0e, 0xb3,
- 0x25, 0xa2, 0x35, 0x3b, 0xe9, 0xaf, 0xc5, 0x44, 0x52, 0x2f, 0xe3, 0x19, 0x2c, 0xe5, 0x05, 0xa9, 0x18, 0x51,
- 0xe1, 0xfa, 0x4e, 0x90, 0xdc, 0xbc, 0x3b, 0xb7, 0x0d, 0xf0, 0xfc, 0x69, 0x09, 0x7e, 0xbb, 0x35, 0xc8, 0xc2,
- 0x74, 0x60, 0x5c, 0x35, 0xfd, 0xef, 0x9c, 0x5f, 0x54, 0xf7, 0x08, 0x33, 0x8e, 0x8d, 0x5e, 0xec, 0x9f, 0xc6,
- 0x90, 0xd1, 0x44, 0xfa, 0xe3, 0x22, 0x82, 0xf7, 0x4f, 0x42, 0xdd, 0xbf, 0x9e, 0xd2, 0x3c, 0x82, 0x54, 0xae,
- 0xfd, 0xbe, 0x92, 0x84, 0x0a, 0x10, 0x6c, 0x99, 0x06, 0x51, 0x24, 0x64, 0xa8, 0x11, 0x08, 0xc2, 0x58, 0x17,
- 0x8f, 0xdf, 0xf2, 0x09, 0x15, 0x2d, 0xce, 0xbe, 0xf5, 0x1e, 0xab, 0x94, 0x75, 0x75, 0x95, 0xd1, 0x87, 0x81,
- 0x7b, 0xaf
+ 0xfd, 0x87, 0xb0, 0xdd, 0x01, 0x99, 0x98, 0x86, 0xbc, 0x0a, 0xe0, 0xf6, 0x65, 0xdd, 0x9e, 0x76, 0x56, 0x0e,
+ 0x62, 0x66, 0xb9, 0xfa, 0x9b, 0x34, 0x34, 0xa6, 0x55, 0x1a, 0xc7, 0xc6, 0xdb, 0x8d, 0x00, 0xd6, 0x1a, 0xe8,
+ 0xf7, 0xd0, 0xcb, 0xf7, 0xf4, 0x26, 0x75, 0x5c, 0x3e, 0xff, 0x2a, 0xfe, 0x29, 0xb2, 0x7f, 0x60, 0x82, 0xff,
+ 0x2d, 0x14, 0x39, 0x17, 0xfe, 0x57, 0x04, 0x75, 0x03, 0x98, 0x97, 0x26, 0x55, 0xbf, 0x25, 0x80, 0x60, 0x5f,
+ 0x00, 0xe5, 0xca, 0xed, 0xc9, 0xa4, 0xf7, 0xb8, 0xd1, 0x51, 0xc0, 0xa4, 0x12, 0x8f, 0x18, 0x88, 0x46, 0x46,
+ 0xd3, 0x70, 0x94, 0x80, 0xcb, 0xf8, 0xc9, 0x40, 0x7c, 0x10, 0x19, 0xb5, 0x09, 0xa0, 0x83, 0x47, 0x47, 0xd8,
+ 0x24, 0x18, 0x6d, 0xec, 0x39, 0xcb, 0x8b, 0x5c, 0x78, 0x4d, 0x8d, 0x8e, 0x2c, 0x06, 0x20, 0x54, 0xbd, 0x6a,
+ 0x94, 0xcf, 0xfd, 0xbe, 0xf5, 0x45, 0x3f, 0x86, 0x3a, 0xf5, 0xed, 0x0a, 0x45, 0xdf, 0xe2, 0xc9, 0x09, 0x36,
+ 0x4d, 0x09, 0x5d, 0xdf, 0x1c, 0x34, 0xee, 0x50, 0x1c, 0xba, 0xf1, 0xc6, 0xc1, 0xf5, 0x56, 0x6b, 0x0e, 0xe2,
+ 0xae, 0x62, 0x89, 0xad, 0x6c, 0x3c, 0xbb, 0x84, 0xb7, 0xf9, 0x55, 0x30, 0x6a, 0x39, 0x84, 0xbb, 0x87, 0x8d,
+ 0xc4, 0x60, 0x99, 0x82, 0x57, 0x73, 0x82, 0x35, 0x71, 0x79, 0x45, 0x53, 0x0c, 0x19, 0x79, 0x50, 0xde, 0x3a,
+ 0x15, 0x02, 0x81, 0xbf, 0xd9, 0x84, 0xbb, 0x4d, 0xed, 0xda, 0x6d, 0xc5, 0xa0, 0x06, 0xad, 0xd7, 0x61, 0x81,
+ 0xde, 0xcd, 0xdb, 0x33, 0x2f, 0x24, 0xf8, 0x0c, 0xe5, 0x28, 0xe8, 0xbb, 0x25, 0x4b, 0x94, 0x7a, 0x55, 0xdc,
+ 0xf2, 0x61, 0x1c, 0xb3, 0xe3, 0xa9, 0xeb, 0x87, 0xe6, 0x26, 0x3b, 0xfd, 0x34, 0x57, 0x2a, 0x1f, 0x0e, 0x70,
+ 0x39, 0x21, 0x0e, 0x36, 0x81, 0x4c, 0xb4, 0xc1, 0xb2, 0xcb, 0xaa, 0x94, 0x36, 0x1f, 0xad, 0x1f, 0x7e, 0x6c,
+ 0xa8, 0x26, 0x3a, 0xb5, 0xbd, 0xe0, 0xa0, 0xc4, 0x29, 0xae, 0x1e, 0xb3, 0xb2, 0x21, 0x56, 0x38, 0x86, 0xb5,
+ 0x41, 0x42, 0xf2, 0x2a, 0x58, 0x64, 0x34, 0xe0, 0xa8, 0x00, 0x12, 0x79, 0x54, 0xd6, 0x1d, 0x86, 0x89, 0xc0,
+ 0x9f, 0x36, 0xac, 0x73, 0xbd, 0xf0, 0x5f, 0x85, 0x84, 0xbb, 0x93, 0x8d, 0x21, 0x9b, 0xea, 0xca, 0x98, 0x4d,
+ 0xd8, 0x5f, 0x0c, 0x8f, 0xf7, 0xf5, 0xc7, 0x2f, 0xc7, 0x45, 0xbf, 0xe9, 0x7d, 0x38, 0x88, 0xad, 0xcc, 0x34,
+ 0x79, 0x4a, 0xf5, 0xf7, 0x4b, 0x3d, 0xe4, 0x12, 0xa4, 0xb4, 0xe2, 0x36, 0xf8, 0xe1, 0xef, 0x93, 0xa3, 0x43,
+ 0x57, 0x26, 0x99, 0x28, 0x90, 0x03, 0x46, 0x33, 0x8d, 0xb9, 0xc5, 0xb5, 0x4e, 0xad, 0xfc, 0xda, 0x9a, 0x6e,
+ 0x1d, 0x5b, 0xf8, 0x93, 0x23, 0x6d, 0x3e, 0x9c, 0xa6, 0xe3, 0x9a, 0x61, 0x89, 0x7e, 0xb1, 0x53, 0x55, 0x92,
+ 0x4f, 0xf8, 0xb2, 0x23, 0xc4, 0xd7, 0x74, 0x49, 0xe4, 0x30, 0x8c, 0xdb, 0xb6, 0xf9, 0x85, 0xff, 0x0e, 0x58,
+ 0x39, 0x51, 0x3e, 0x9c, 0xf4, 0x06, 0x5b, 0x40, 0x85, 0x3a, 0xd9, 0xc9, 0xdd, 0xc0, 0xf8, 0x5f, 0x7a, 0xcd,
+ 0x13, 0x86, 0xdd, 0x28, 0x29, 0x39, 0x6c, 0xad, 0x84, 0x3e, 0xdb, 0xc7, 0x7a, 0x7f, 0x8c, 0x9b, 0x09, 0x3c,
+ 0x62, 0xbd, 0x27, 0xdb, 0x07, 0x27, 0xbd, 0x59, 0x46, 0x79, 0xdb, 0x7c, 0x90, 0xde, 0xc7, 0xf0, 0x99, 0x28,
+ 0x40, 0xf5, 0x2a, 0x20, 0xa9, 0xe6, 0x54, 0xb9, 0x87, 0x74, 0x19, 0xab, 0x09, 0x60, 0x8f, 0xcd, 0xf8, 0x10,
+ 0xda, 0x2d, 0x17, 0x03, 0x96, 0x45, 0x64, 0x5f, 0xd1, 0xec, 0x53, 0xe0, 0x20, 0xa2, 0x09, 0x2d, 0x62, 0x4b,
+ 0xed, 0x5b, 0x6c, 0x1c, 0x71, 0x0c, 0x35, 0x7c, 0x6d, 0x3b, 0x0d, 0x2b, 0x1d, 0xf7, 0xd5, 0x28, 0xd3, 0x17,
+ 0x25, 0x7d, 0xdd, 0x4e, 0x1e, 0xdf, 0x80, 0x20, 0x28, 0x15, 0x2f, 0xdc, 0x12, 0x54, 0x28, 0x54, 0xf8, 0x34,
+ 0x6f, 0x30, 0xd6, 0x93, 0x09, 0x73, 0xde, 0xd7, 0x16, 0x5a, 0x83, 0x28, 0xd1, 0xa6, 0x00, 0xad, 0x78, 0xbc,
+ 0xd0, 0xb8, 0x22, 0x5a, 0x6f, 0xcb, 0xa3, 0x35, 0x55, 0x97, 0xea, 0x10, 0xb3, 0xfd, 0xa4, 0xdb, 0x10, 0xf4,
+ 0x7e, 0x3d, 0x15, 0x50, 0x6a, 0x82, 0x92, 0xba, 0xa6, 0xb6, 0x22, 0x53, 0xef, 0x4f, 0xcc, 0x08, 0x81, 0xbf,
+ 0x91, 0x46, 0x28, 0x8b, 0x1d, 0x94, 0x94, 0xc6, 0x14, 0x3a, 0x71, 0x4f, 0x67, 0x70, 0x55, 0xe0, 0x0a, 0x7c,
+ 0xe9, 0xe9, 0x3e, 0x4e, 0x09, 0xa0, 0xbf, 0x78, 0x70, 0x54, 0x82, 0x1d, 0x95, 0x92, 0x79, 0x9b, 0xad, 0x8c,
+ 0xc7, 0x37, 0x17, 0xfd, 0x2f, 0x5c, 0x59, 0xd2, 0x51, 0x82, 0x38, 0x47, 0xdf, 0x9c, 0x60, 0x82, 0x7b, 0xb1,
+ 0xbe, 0xcf, 0xd2, 0x29, 0xcf, 0x07, 0x49, 0xbb, 0x8e, 0x49, 0x2f, 0x88, 0x74, 0xe0, 0x92, 0x42, 0xde, 0xa9,
+ 0x77, 0xab, 0x3a, 0xec, 0x67, 0x89, 0x8a, 0xe4, 0x40, 0x68, 0x21, 0x2d, 0x7d, 0xa5, 0xfb, 0xec, 0xf7, 0x27,
+ 0x68, 0x4f, 0x6f, 0xb6, 0xa0, 0x35, 0xa1, 0x34, 0x34, 0x83, 0x3d, 0x20, 0xe8, 0xe8, 0x38, 0x57, 0x92, 0xc0,
+ 0x88, 0x3e, 0x62, 0x21, 0xc9, 0x13, 0xd2, 0xcd, 0x84, 0xef, 0x56, 0xb0, 0xb5, 0x8d, 0x33, 0x51, 0xde, 0x8f,
+ 0x35, 0x33, 0x73, 0xe2, 0x8d, 0x6d, 0xee, 0xe1, 0xe4, 0xc8, 0xf5, 0xbd, 0xc8, 0xdc, 0x98, 0x39, 0x72, 0x2e,
+ 0x5a, 0x9d, 0xf3, 0x95, 0x40, 0x88, 0xe8, 0x0a, 0xbe, 0xca, 0x95, 0xd3, 0x88, 0xef, 0xc7, 0x64, 0x35, 0xf5,
+ 0xcf, 0xb7, 0xb0, 0x24, 0xf3, 0x7b, 0x6f, 0x3f, 0xb8, 0x0d, 0x88, 0x23, 0x18, 0xa5, 0x96, 0xf7, 0x0e, 0x7b,
+ 0xbe, 0xb2, 0xfc, 0xf5, 0xdf, 0xa8, 0x02, 0x89, 0xcc, 0xf2, 0xa4, 0x79, 0x28, 0x9a, 0x72, 0x10, 0x0a, 0xae,
+ 0xf2, 0x9a, 0x44, 0xce, 0x15, 0x6f, 0x50, 0x98, 0x7e, 0x9e, 0xe4, 0x15, 0xff, 0x70, 0xc9, 0x43, 0x33, 0x39,
+ 0xbf, 0xc9, 0xc3, 0x6c, 0x26, 0xd4, 0xb8, 0xd4, 0x06, 0x66, 0x30, 0xe6, 0x08, 0x26, 0x63, 0x31, 0x31, 0x31,
+ 0xf7, 0xf1, 0x82, 0x7c, 0x17, 0xeb, 0x6c, 0x17, 0x92, 0x15, 0x6b, 0x31, 0x2d, 0xd1, 0x97, 0x0d, 0xf4, 0x39,
+ 0xae, 0xf6, 0xf1, 0x7e, 0xac, 0x42, 0xa9, 0x7c, 0xe6, 0x77, 0xe6, 0x8e, 0xb2, 0x35, 0x60, 0xd4, 0x17, 0x0d,
+ 0x47, 0xed, 0x86, 0x18, 0x0d, 0x37, 0xba, 0x5b, 0x1c, 0x84, 0x24, 0xcd, 0x39, 0x57, 0x17, 0x04, 0x50, 0x60,
+ 0xe9, 0x87, 0x1c, 0x8b, 0xa6, 0x4f, 0x64, 0x40, 0x8e, 0xad, 0x6f, 0xcf, 0x35, 0x41, 0x72, 0x01, 0xed, 0xb1,
+ 0xa6, 0x39, 0x4a, 0x49, 0xba, 0x12, 0x45, 0x85, 0xee, 0x08, 0x93, 0xef, 0x53, 0x1b, 0x19, 0xd1, 0x33, 0xa5,
+ 0xd8, 0x78, 0xff, 0x6e, 0xff, 0x9f, 0x75, 0x75, 0x14, 0x5c, 0xf8, 0x2f, 0x37, 0x48, 0x45, 0x39, 0x3f, 0x2a,
+ 0xce, 0xe8, 0x76, 0xa4, 0x69, 0x51, 0x12, 0xf4, 0x0d, 0xcc, 0x21, 0xf7, 0x6d, 0x24, 0xbd, 0x20, 0xee, 0x1e,
+ 0x10, 0x1f, 0xbd, 0x69, 0xed, 0xc7, 0x7f, 0x69, 0xb7, 0xa2, 0x5b, 0x59, 0x39, 0xdd, 0x35, 0xdb, 0x30, 0x99,
+ 0x9f, 0x3e, 0xc5, 0x87, 0x8c, 0x88, 0xca, 0x5b, 0x0b, 0xba, 0x6c, 0x0d, 0x87, 0x82, 0x33, 0xc8, 0xdc, 0x8f,
+ 0xb4, 0x5b, 0xc9, 0xf3, 0xb0, 0x50, 0x7c, 0x00, 0xf6, 0xe0, 0xd2, 0xc7, 0xd1, 0x62, 0x85, 0x37, 0x0e, 0xf6,
+ 0x90, 0x4c, 0x9e, 0xca, 0xf1, 0x81, 0x0f, 0x67, 0x04, 0xd2, 0xcb, 0xb8, 0x2e, 0xed, 0x96, 0xbd, 0x19, 0x55,
+ 0xf1, 0x56, 0x7b, 0x48, 0x0b, 0xd4, 0x1d, 0xcb, 0xab, 0x21, 0xba, 0x23, 0x56, 0xd1, 0xe6, 0xb5, 0xa5, 0x4a,
+ 0x01, 0x2b, 0x86, 0xfd, 0xfe, 0x67, 0x7d, 0xd4, 0x69, 0x2d, 0x67, 0x18, 0xad, 0xd2, 0xb4, 0x51, 0x52, 0x5d,
+ 0x9f, 0x44, 0x5b, 0xb3, 0xc5, 0xdf, 0xd8, 0xd5, 0xda, 0x2d, 0xb9, 0xe1, 0x00, 0x63, 0xcf, 0x00, 0xe5, 0x30,
+ 0x3e, 0x98, 0x87, 0x91, 0x54, 0xcc, 0x6a, 0x92, 0x9c, 0x35, 0x14, 0x71, 0x6a, 0xeb, 0xd2, 0x07, 0x2c, 0x01,
+ 0x43, 0xfa, 0x97, 0xe0, 0x0b, 0x8e, 0x23, 0xad, 0x82, 0xd2, 0x45, 0xc4, 0x8e, 0xc9, 0x08, 0xcf, 0xff, 0x98,
+ 0x42, 0x23, 0xde, 0xa4, 0xae, 0x9b, 0x65, 0xc8, 0x11, 0x39, 0xe1, 0xb1, 0xb0, 0xde, 0x17, 0x9c, 0x93, 0x64,
+ 0xd4, 0xfa, 0x74, 0xfb, 0x5b, 0xbc, 0x3e, 0xfd, 0x52, 0xd5, 0x7f, 0x0e, 0x43, 0x08, 0x5c, 0xf9, 0x1a, 0x35,
+ 0xd0, 0xc2, 0x82, 0x61, 0xe2, 0x3a, 0x60, 0xa1, 0xc6, 0xb9, 0xbe, 0x6c, 0xe2, 0x98, 0xbf, 0xc7, 0x42, 0x91,
+ 0x64, 0x99, 0xbd, 0x28, 0x90, 0x8d, 0xe6, 0x0b, 0x36, 0x73, 0xe1, 0xb2, 0x7b, 0x8e, 0x0f, 0xb1, 0x7d, 0xdf,
+ 0xe3, 0x23, 0x1d, 0x5e, 0xc8, 0x5e, 0xbe, 0x14, 0x76, 0xd0, 0x35, 0xe2, 0xb2, 0x6e, 0x90, 0x06, 0x06, 0xba,
+ 0xd3, 0xda, 0x22, 0x83, 0xb8, 0xfb, 0x05, 0xcb, 0xb3, 0xcf, 0x1f, 0xae, 0xb3, 0x92, 0x52, 0x56, 0x70, 0x6c,
+ 0x85, 0x86, 0xe0, 0xa0, 0xa1, 0x98, 0x0e, 0x4d, 0x6d, 0x94, 0x7a, 0x8f, 0x54, 0x2a, 0xe8, 0x61, 0xf9, 0xba,
+ 0x04, 0x78, 0x56, 0xaf, 0x3d, 0x78, 0x89, 0x6e, 0x31, 0x0c, 0xdf, 0x7e, 0x52, 0x03, 0xd7, 0xe4, 0xab, 0x3c,
+ 0x97, 0x92, 0xe2, 0xa8, 0xcc, 0x37, 0xd0, 0x83, 0x73, 0x01, 0x44, 0x82, 0xb9, 0xa4, 0x39, 0x97, 0x7f, 0x78,
+ 0x81, 0x68, 0x89, 0x3b, 0xd6, 0xb9, 0x7c, 0x67, 0xb6, 0xd8, 0x30, 0x15, 0x5f, 0x09, 0x60, 0x72, 0x6b, 0x9d,
+ 0x74, 0x33, 0x58, 0x43, 0xa7, 0x61, 0x1b, 0x21, 0x62, 0xbc, 0x72, 0xda, 0x84, 0xdb, 0x2b, 0x0f, 0x60, 0x13,
+ 0x64, 0x6b, 0x43, 0x0a, 0xb5, 0x54, 0xa0, 0xdf, 0xf0, 0xda, 0x95, 0x35, 0x81, 0xbb, 0xf7, 0x72, 0x27, 0xf6,
+ 0xe1, 0x54, 0xc2, 0x3d, 0x4c, 0x99, 0xc9, 0x45, 0x72, 0xc6, 0x47, 0xaa, 0xb4, 0x17, 0x6f, 0xca, 0xec, 0x0d,
+ 0x55, 0x30, 0xcb, 0xc3, 0x79, 0x99, 0xc5, 0x3b, 0x98, 0x3f, 0x2b, 0xb2, 0xcf, 0xbd, 0xbb, 0x90, 0xb6, 0x4a,
+ 0x46, 0x19, 0x37, 0x7e, 0x0b, 0x7c, 0x0f, 0x7f, 0x67, 0x4c, 0x5e, 0x84, 0xc2, 0xe6, 0xa3, 0x4d, 0x41, 0xd2,
+ 0x97, 0x4f, 0x1a, 0x30, 0x25, 0xf0, 0xfb, 0xb7, 0x45, 0xaf, 0xf1, 0xe8, 0x63, 0xb2, 0x50, 0x61, 0xf2, 0x87,
+ 0xcc, 0x34, 0x54, 0x6b, 0xa7, 0xee, 0x04, 0xa3, 0x3f, 0xaa, 0x63, 0x08, 0xf1, 0xb2, 0x1d, 0xf7, 0xbe, 0x3a,
+ 0xb4, 0x63, 0x1d, 0x01, 0x9a, 0x8a, 0xc3, 0x78, 0xf9, 0x17, 0x1c, 0x3f, 0x6b, 0x9e, 0xcf, 0xee, 0xce, 0x96,
+ 0x84, 0x4e, 0x05, 0xaf, 0x16, 0x03, 0x07, 0x81, 0x77, 0x25, 0xab, 0x67, 0x95, 0xfa, 0x6c, 0xc9, 0xd3, 0xd3,
+ 0x8a, 0xfe, 0xe2, 0xc4, 0xa2, 0x1c, 0x83, 0x3d, 0x71, 0xf1, 0xcc, 0xae, 0x8b, 0xb2, 0x82, 0xcc, 0x12, 0xb9,
+ 0x17, 0xd3, 0xf5, 0x80, 0xd8, 0x06, 0x18, 0x38, 0x12, 0x54, 0xd3, 0x0e, 0x78, 0x0e, 0xfd, 0xd7, 0xbe, 0x20,
+ 0x98, 0x3f, 0x74, 0xae, 0x0a, 0xda, 0x66, 0xa3, 0x02, 0xfc, 0xd6, 0x44, 0x94, 0xde, 0xda, 0xf2, 0x6c, 0xa1,
+ 0xa8, 0x32, 0xf3, 0x9b, 0xee, 0x10, 0x18, 0x35, 0xcd, 0x3b, 0x2d, 0x2f, 0x48, 0x75, 0xff, 0x39, 0xb5, 0x75,
+ 0x2c, 0x79, 0xfa, 0xa1, 0xc7, 0x2e, 0x89, 0x9b, 0xb1, 0x0d, 0x70, 0x07, 0x22, 0x76, 0x75, 0x22, 0x40, 0x1a,
+ 0x79, 0x6b, 0xf0, 0xa1, 0xda, 0x11, 0xda, 0x0e, 0x77, 0x5e, 0x35, 0x7f, 0xec, 0x20, 0x52, 0xed, 0x37, 0x38,
+ 0x35, 0x9b, 0x80, 0x6d, 0xd1, 0x6b, 0x34, 0x1c, 0xf3, 0x89, 0x65, 0x14, 0xc1, 0xcd, 0x4e, 0x4e, 0xd5, 0x58,
+ 0xcc, 0x18, 0x75, 0xb8, 0x79, 0x2a, 0xfd, 0xe5, 0xe6, 0x3f, 0xde, 0xeb, 0x77, 0x0a, 0x2e, 0x10, 0x5a, 0x7a,
+ 0x1e, 0xdd, 0x20, 0x42, 0x4c, 0x04, 0xe5, 0xdd, 0x34, 0x17, 0xde, 0x38, 0x45, 0x38, 0x39, 0x22, 0x15, 0xa8,
+ 0xfc, 0xae, 0x9f, 0x24, 0x88, 0x0e, 0xb7, 0x46, 0xb1, 0x2c, 0x18, 0x2d, 0xce, 0xb7, 0xe6, 0x49, 0x8b, 0xd5,
+ 0xe0, 0x92, 0xff, 0x4b, 0x70, 0xca, 0xaa, 0x3a, 0xff, 0x59, 0xd9, 0xc4, 0x6c, 0x3d, 0x45, 0x0d, 0x79, 0x11,
+ 0x02, 0xff, 0xec, 0xc8, 0xfb, 0xbc, 0xcd, 0xc2, 0xd2, 0xc9, 0xd5, 0x2c, 0x8b, 0x19, 0xb8, 0xfc, 0xda, 0x90,
+ 0x13, 0xb8, 0xc6, 0x96, 0x14, 0xb8, 0x26, 0x83, 0x27, 0x76, 0x35, 0x57, 0x17, 0x91, 0x9d, 0x56, 0xa5, 0x6a,
+ 0x3c, 0x12, 0xe1, 0x1e, 0xd8, 0x18, 0xee, 0xd0, 0x92, 0xc6, 0xa3, 0xae, 0x87, 0x46, 0xe9, 0x14, 0xaa, 0x8c,
+ 0x30, 0x98, 0xf4, 0x45, 0xaf, 0x1a, 0x59, 0x21, 0x7f, 0xaf, 0xfd, 0x0c, 0x36, 0xd8, 0x00, 0x0a, 0xcc, 0xc6,
+ 0x25, 0x6e, 0x8e, 0x48, 0x6d, 0x70, 0x6b, 0x0c, 0xc4, 0xb6, 0xde, 0xad, 0x67, 0x58, 0xe3, 0x3f, 0x08, 0xc3,
+ 0x58, 0xc7, 0x57, 0x78, 0x44, 0xe1, 0xe4, 0x9b, 0x12, 0x79, 0x0d, 0xb4, 0x9d, 0xb8, 0x19, 0x0c, 0x21, 0x6e,
+ 0x90, 0x79, 0x8f, 0x97, 0x99, 0xeb, 0x6d, 0xce, 0x34, 0x13, 0x9e, 0x16, 0x6b, 0x9c, 0xd5, 0x1e, 0x92, 0xc4,
+ 0x8d, 0xa7, 0x3f, 0x67, 0x7a, 0x46, 0xa8, 0x70, 0x08, 0xbd, 0x0a, 0x0e, 0x06, 0xc5, 0xea, 0x84, 0x8e, 0xc1,
+ 0xb6, 0x9a, 0x2e, 0xd8, 0xa3, 0x81, 0x1f, 0x81, 0x76, 0x65, 0xdd, 0x82, 0x47, 0xb9, 0x09, 0x67, 0x18, 0x0b,
+ 0xb8, 0xdd, 0x26, 0x95, 0xb3, 0x30, 0xc0, 0x6d, 0xef, 0xcb, 0xa3, 0xaf, 0xb6, 0x9f, 0xca, 0x80, 0xbb, 0x5f,
+ 0x1f, 0x7c, 0x49, 0x6c, 0xbf, 0xcc, 0x8a, 0xee, 0x19, 0xf0, 0xd2, 0xb7, 0x24, 0xad, 0x6e, 0xa1, 0x5f, 0x22,
+ 0x9d, 0xf4, 0x26, 0xc6, 0x62, 0x34, 0x74, 0xda, 0xff, 0xc5, 0x7b, 0x23, 0xf7, 0x1f, 0xea, 0x71, 0x07, 0xbd,
+ 0x9f, 0x8a, 0x4e, 0xdf, 0xe4, 0xc3, 0xcd, 0x46, 0x72, 0x56, 0x85, 0xd8, 0x35, 0x9c, 0xef, 0x93, 0xb6, 0x02,
+ 0x3b, 0xda, 0x78, 0x44, 0xca, 0x30, 0x79, 0x3b, 0x07, 0x64, 0x75, 0xed, 0x27, 0x0e, 0xf2, 0x78, 0xe8, 0xc0,
+ 0xf2, 0x61, 0xfb, 0xf3, 0xcd, 0x25, 0x8f, 0xca, 0x42, 0x2f, 0xdf, 0x46, 0xcc, 0xa4, 0xa7, 0x5a, 0x2d, 0xbd,
+ 0x1c, 0x77, 0x52, 0x08, 0x3a, 0xfd, 0xea, 0xe3, 0xf0, 0x37, 0x8c, 0xb6, 0x6a, 0xcf, 0x61, 0x2a, 0x26, 0x28,
+ 0xc2, 0x50, 0xd1, 0x4f, 0xbc, 0x72, 0x57, 0x6d, 0x9f, 0x4c, 0x32, 0xb3, 0xa8, 0x2b, 0xca, 0x50, 0x15, 0x64,
+ 0x84, 0xb5, 0x2b, 0xa2, 0x6e, 0x4f, 0x1d, 0x88, 0xc8, 0x48, 0x7c, 0xf4, 0x58, 0xe2, 0x97, 0x5c, 0x31, 0xf4,
+ 0x2d, 0x5f, 0x5a, 0xc9, 0x3d, 0x07, 0x21, 0xc5, 0x69, 0x15, 0xb1, 0x44, 0x90, 0x11, 0x5e, 0x7c, 0xfc, 0xd2,
+ 0x60, 0x6d, 0x3a, 0x92, 0x04, 0x5c, 0x2d, 0x56, 0x2a, 0x0a, 0x6b, 0x9c, 0x4f, 0xf2, 0xc4, 0xb8, 0x60, 0x08,
+ 0x52, 0x2a, 0x9a, 0x55, 0x4c, 0xf0, 0xcc, 0xa9, 0x83, 0xb4, 0x8e, 0x07, 0xc4, 0x30, 0x69, 0xaf, 0x94, 0xfb,
+ 0x3f, 0x3b, 0x1c, 0x97, 0xee, 0xa6, 0xb2, 0x84, 0x56, 0x45, 0x5f, 0x0a, 0xe7, 0x3a, 0x16, 0x4b, 0x8b, 0x54,
+ 0xd4, 0x35, 0x38, 0xd5, 0x01, 0x92, 0xfc, 0x20, 0x8b, 0x0f, 0x2d, 0xc2, 0x97, 0xe6, 0x29, 0x88, 0x0b, 0x35,
+ 0xee, 0x0a, 0x35, 0xd6, 0x93, 0xb2, 0x00, 0x2d, 0xc2, 0xae, 0x35, 0x21, 0x52, 0xdb, 0x48, 0x7f, 0xaa, 0xe8,
+ 0x75, 0xfc, 0xb5, 0x1f, 0x6d, 0xc1, 0x25, 0x69, 0x8c, 0x78, 0x29, 0xf1, 0x4a, 0x0c, 0x3e, 0xbe, 0x9a, 0x1a,
+ 0xd7, 0x8f, 0x61, 0x74, 0xb7, 0xd5, 0x4c, 0xb8, 0xd0, 0x14, 0xd6, 0x32, 0x57, 0x11, 0xde, 0x93, 0x0a, 0x9c,
+ 0x7a, 0x73, 0xeb, 0x28, 0x20, 0xf0, 0x37, 0x4c, 0xa4, 0x90, 0x13, 0xc4, 0xbe, 0x30, 0x19, 0x7a, 0x9b, 0xec,
+ 0x62, 0xef, 0x66, 0x4f, 0x59, 0x91, 0x27, 0x72, 0xb4, 0x5f, 0x5c, 0x0e, 0x0d, 0x8b, 0x3e, 0xc9, 0x5e, 0xaa,
+ 0x92, 0x7a, 0x76, 0xfa, 0xcb, 0x84, 0x53, 0x56, 0xda, 0x3f, 0xfa, 0x35, 0x31, 0xfd, 0xa5, 0xb8, 0x47, 0x7d,
+ 0x68, 0x30, 0x50, 0xc3, 0x6c, 0x5d, 0x18, 0xc0, 0xeb, 0x32, 0x83, 0x54, 0xd8, 0x17, 0xd2, 0x66, 0x4e, 0xcb,
+ 0xad, 0x95, 0x39, 0xb3, 0x34, 0xb0, 0x2a, 0x12, 0xbd, 0x68, 0x74, 0x88, 0xba, 0x9d, 0xc0, 0xbb, 0xb4, 0x0e,
+ 0xd7, 0x2f, 0xd4, 0x5d, 0x40, 0xc6, 0x0f, 0xef, 0x8a, 0xb6, 0x4c, 0x89, 0x4e, 0xed, 0xde, 0x43, 0x2b, 0x2d,
+ 0xd8, 0x7b, 0x96, 0x9c, 0x7b, 0x68, 0xb7, 0x09, 0xb2, 0xa0, 0x2f, 0x11, 0x2c, 0x6e, 0x1f, 0x8f, 0x9b, 0x34,
+ 0x18, 0xc9, 0xd4, 0xf9, 0xeb, 0x49, 0x65, 0x66, 0xe1, 0xe7, 0x17, 0xb3, 0x51, 0x7c, 0x19, 0x13, 0x51, 0x2b,
+ 0x2e, 0x5f, 0x45, 0x94, 0x5a, 0x02, 0x35, 0x82, 0xca, 0xfa, 0x77, 0x11, 0xc9, 0x75, 0xd4, 0x72, 0xf2, 0x99,
+ 0x47, 0x97, 0x26, 0x96, 0x80, 0x8b, 0x33, 0xff, 0xf6, 0xd0, 0x4a, 0x4a, 0xab, 0xde, 0x55, 0x7c, 0x6f, 0xc0,
+ 0xf2, 0x3d, 0x37, 0x54, 0xcf, 0xab, 0x15, 0x66, 0x02, 0x4b, 0x38, 0x04, 0x45, 0x18, 0x08, 0x05, 0x58, 0xd1,
+ 0xed, 0x10, 0xfe, 0xe0, 0xe2, 0xc7, 0x24, 0x30, 0x22, 0xcd, 0x06, 0xd9, 0x02, 0x37, 0x53, 0x21, 0x88, 0x3d,
+ 0x3f, 0x9e, 0x21, 0x77, 0xb5, 0x85, 0xf8, 0x3d, 0x15, 0xc4, 0x00, 0x61, 0x59, 0x07, 0x43, 0x0f, 0x1e, 0x92,
+ 0x9e, 0xba, 0xfc, 0xa0, 0x58, 0xfd, 0x2e, 0x87, 0x93, 0x82, 0xd6, 0x02, 0xf5, 0x84, 0x08, 0x96, 0x8a, 0xa3,
+ 0xf9, 0xd2, 0xc3, 0xf2, 0xad, 0xbc, 0x13, 0xcb, 0xe9, 0x98, 0xed, 0xcd, 0xc5, 0x83, 0xbc, 0x43, 0x91, 0xcc,
+ 0x19, 0x47, 0x14, 0x7e, 0x8c, 0x8e, 0x36, 0x5d, 0x9e, 0x96, 0x8d, 0x97, 0x61, 0xad, 0x73, 0x64, 0x47, 0xed,
+ 0x3e, 0x40, 0x76, 0x99, 0xbe, 0x47, 0xe7, 0x5f, 0xae, 0x4c, 0x88, 0x3e, 0x90, 0x08, 0xd9, 0xc6, 0x35, 0x4b,
+ 0x19, 0xe4, 0x7b, 0xfe, 0x23, 0x04, 0x10, 0x2a, 0x50, 0x37, 0x88, 0x18, 0x72, 0xd0, 0x2a, 0x2f, 0x77, 0xaa,
+ 0x09, 0xe0, 0xf2, 0x49, 0x7a, 0xf2, 0xf9, 0x6b, 0xa5, 0x53, 0x55, 0xd5, 0x28, 0xf9, 0x2c, 0x0c, 0x99, 0x33,
+ 0x31, 0xc6, 0xa5, 0xb2, 0x52, 0x30, 0x42, 0x8e, 0x53, 0xb4, 0x38, 0xd3, 0x89, 0xfd, 0x0f, 0x25, 0x79, 0xbc,
+ 0xac, 0xe3, 0x8c, 0x04, 0xfd, 0x38, 0x67, 0xf0, 0xb5, 0x5f, 0xb1, 0x66, 0xf2, 0xb3, 0xd6, 0x0d, 0x99, 0x66,
+ 0xb6, 0x7b, 0xf4, 0x75, 0xa9, 0xb6, 0x8b, 0xbf, 0x58, 0xf8, 0xcc, 0xe0, 0x2c, 0xf6, 0xaf, 0xae, 0x1a, 0xd1,
+ 0x62, 0x55, 0xec, 0xb5, 0xf7, 0xff, 0x7b, 0x32, 0xe5, 0x81, 0x4d, 0xc1, 0x29, 0x67, 0x84, 0xb9, 0x54, 0x03,
+ 0x35, 0x17, 0x21, 0xcf, 0x91, 0xcd, 0x60, 0x6e, 0x2d, 0x86, 0xe1, 0x16, 0x56, 0x6a, 0x53, 0x9b, 0x98, 0xb8,
+ 0x8c, 0x85, 0x5a, 0x3b, 0xa0, 0xc0, 0x9c, 0xb4, 0xc8, 0x90, 0xda, 0x29, 0xd6, 0xcd, 0xc7, 0x6b, 0x8d, 0x43,
+ 0x95, 0x3d, 0xeb, 0x58, 0x6c, 0x55, 0x9a, 0xf5, 0xa3, 0xe2, 0xb0, 0x6d, 0x00, 0xe7, 0x98, 0xe5, 0xcb, 0x7a,
+ 0xf3, 0x3f, 0x0b, 0x09, 0x47, 0x45, 0x37, 0xc4, 0x98, 0x90, 0x00, 0x39, 0x4a, 0xff, 0x62, 0x01, 0x97, 0xb8,
+ 0x24, 0x41, 0x61, 0xd5, 0xbe, 0xc1, 0xac, 0xa8, 0xe5, 0x36, 0x41, 0x33, 0x2f, 0xef, 0x7d, 0x5e, 0x94, 0x60,
+ 0x76, 0xbf, 0x6c, 0xb3, 0x7a, 0x59, 0x60, 0xd3, 0x78, 0xbc, 0xc6, 0x4d, 0xf5, 0xe0, 0x1d, 0x55, 0x51, 0xf2,
+ 0xed, 0x17, 0x19, 0x03, 0x8e, 0x2e, 0xd6, 0x3f, 0x43, 0x7d, 0x91, 0x5b, 0xc8, 0x0f, 0xf3, 0x03, 0x58, 0x95,
+ 0x67, 0xed, 0x8b, 0xe2, 0x45, 0x84, 0xa5, 0x6d, 0xf8, 0x98, 0x50, 0x7f, 0x89, 0xcf, 0xf2, 0x40, 0x05, 0x8d,
+ 0x09, 0x8d, 0xdd, 0x11, 0xf5, 0x4c, 0x09, 0x71, 0x96, 0x8c, 0x01, 0xca, 0x99, 0x78, 0xfa, 0x50, 0x83, 0x6b,
+ 0xeb, 0x0d, 0x65, 0x1d, 0xee, 0xc2, 0xb2, 0x03, 0x66, 0x60, 0xbd, 0xa1, 0x9d, 0x13, 0x50, 0x8f, 0xeb, 0x0b,
+ 0x9a, 0x9e, 0x26, 0x9a, 0x94, 0x1b, 0x85, 0x6e, 0x4d, 0xbb, 0x0f, 0x6d, 0x72, 0x8f, 0x45, 0xb8, 0x95, 0x18,
+ 0x55, 0x60, 0x07, 0x27, 0x59, 0xb1, 0x73, 0xf3, 0xf8, 0xfb, 0xa6, 0xa1, 0x70, 0xd6, 0xd3, 0x35, 0xea, 0xaf,
+ 0x7d, 0x70, 0x88, 0xcd, 0x73, 0x34, 0x08, 0x63, 0xbd, 0xf8, 0x9d, 0x29, 0x31, 0x12, 0xea, 0x9f, 0xd0, 0x0c,
+ 0x5a, 0x06, 0xa3, 0xbd, 0xf9, 0xd4, 0x36, 0x02, 0x1d, 0x5a, 0x80, 0xe2, 0x66, 0xcc, 0x0b, 0x08, 0xab, 0xef,
+ 0xf7, 0x06, 0x79, 0xcf, 0x90, 0x90, 0x11, 0x31, 0x00, 0xcf, 0x03, 0x37, 0xb7, 0x2b, 0xd1, 0x94, 0x98, 0xfd,
+ 0xe2, 0x21, 0x5f, 0x0f, 0xcc, 0x20, 0xad, 0x8a, 0xf9, 0xf6, 0x77, 0x0e, 0xe8, 0x57, 0x87, 0x69, 0xd8, 0x61,
+ 0x03, 0xb5, 0x57, 0xf0, 0xf2, 0xd8, 0x24, 0x7b, 0x5b, 0x32, 0xc0, 0xdb, 0xa8, 0xc8, 0xff, 0x6c, 0x0b, 0xe4,
+ 0x7d, 0xd1, 0x6a, 0xd5, 0x7e, 0xa1, 0x01, 0x9a, 0x5a, 0xcb, 0x5e, 0x67, 0xa6, 0x1c, 0xdd, 0x20, 0xcf, 0xa7,
+ 0x91, 0x10, 0x47, 0x06, 0xb6, 0x2e, 0xc5, 0xb5, 0x35, 0x75, 0xae, 0xe8, 0xc7, 0xea, 0xb1, 0xb4, 0x27, 0x1b,
+ 0x52, 0x8a, 0x8d, 0x98, 0xe2, 0xc2, 0x6a, 0x17, 0x9d, 0x3d, 0x0d, 0x6e, 0xcc, 0x21, 0x8a, 0xbe, 0x55, 0xcd,
+ 0x19, 0x03, 0x2a, 0x27, 0xb7, 0xfb, 0xdb, 0x1d, 0xc0, 0xf8, 0x33, 0x1d, 0x9c, 0x4d, 0x40, 0x8c, 0x85, 0x16,
+ 0x5a, 0xc3, 0x55, 0xc8, 0xc1, 0x80, 0xe9, 0x6a, 0xb9, 0x88, 0x77, 0xd6, 0xba, 0xdd, 0xc4, 0x57, 0xd6, 0x1e,
+ 0xee, 0x98, 0x3b, 0x46, 0x9a, 0xf2, 0xba, 0x47, 0x0a, 0x81, 0xe9, 0x86, 0x32, 0xad, 0xa8, 0x17, 0xa6, 0x12,
+ 0xf3, 0x13, 0x93, 0xde, 0x7f, 0x52, 0x8d, 0xe2, 0x5d, 0xab, 0xce, 0xf3, 0x5e, 0x40, 0x69, 0xf1, 0x00, 0x9d,
+ 0x26, 0x6a, 0xb5, 0xb7, 0x3b, 0x82, 0xf0, 0x51, 0xb2, 0x8b, 0xea, 0xf0, 0x42, 0xaa, 0x69, 0x4c, 0x3a, 0xc4,
+ 0x4e, 0xb7, 0x35, 0x83, 0x97, 0xec, 0xb6, 0xe9, 0x76, 0x80, 0xbb, 0x88, 0x47, 0x73, 0x77, 0x6f, 0x54, 0x77,
+ 0xf4, 0x93, 0x04, 0xb8, 0x70, 0x77, 0xe0, 0xf1, 0xc3, 0x24, 0x50, 0x20, 0xb7, 0xe5, 0x1c, 0xa1, 0xd2, 0xae,
+ 0xe1, 0x25, 0x65, 0x23, 0xb6, 0x8c, 0x6e, 0x24, 0x97, 0xb1, 0xbe, 0x3b, 0xd3, 0xf5, 0x30, 0xfb, 0xe3, 0x93,
+ 0x2d, 0x70, 0xac, 0xde, 0x5a, 0x6c, 0x34, 0x81, 0xd9, 0xef, 0xee, 0x34, 0xc1, 0x2e, 0xa6, 0xf3, 0xd5, 0xdc,
+ 0x0a, 0x97, 0x3e, 0x75, 0x30, 0x66, 0xc8, 0x1b, 0xef, 0x66, 0xb2, 0x4c, 0x4e, 0xee, 0x9d, 0xa6, 0x43, 0xc3,
+ 0x1e, 0x3f, 0x24, 0x7e, 0x08, 0xa5, 0x2d, 0x47, 0x4c, 0x10, 0x0f, 0xe7, 0x4c, 0xad, 0x45, 0x11, 0xc4, 0x53,
+ 0x99, 0x84, 0xf0, 0x27, 0x50, 0xa7, 0xe1, 0x0b, 0xf8, 0x9c, 0x46, 0xd2, 0x50, 0x26, 0xd8, 0x1f, 0x34, 0x44,
+ 0x1f, 0xdc, 0x70, 0x82, 0x49, 0x2a, 0x57, 0x70, 0xcb, 0x75, 0x50, 0x2d, 0xe2, 0x3b, 0x81, 0xed, 0x32, 0x15,
+ 0x62, 0x55, 0x12, 0x7c, 0xb5, 0xe0, 0xd8, 0xe1, 0xd5, 0x93, 0x02, 0x69, 0xb3, 0x78, 0x8b, 0x3c, 0xde, 0x9f,
+ 0x08, 0xf3, 0x0b, 0xba, 0xd3, 0x6f, 0xd2, 0x43, 0x94, 0xa3, 0xe9, 0x99, 0x7c, 0xa8, 0xcb, 0x7a, 0x19, 0xf8,
+ 0xcf, 0x06, 0x66, 0x4b, 0xf8, 0xd1, 0x96, 0x78, 0x48, 0x45, 0x22, 0xa7, 0xc5, 0x41, 0x86, 0xea, 0xf7, 0x92,
+ 0x55, 0x0a, 0x84, 0xb2, 0x62, 0xa2, 0xc0, 0xe6, 0xce, 0x10, 0x02, 0x2b, 0x0d, 0xe5, 0x50, 0xee, 0x41, 0xc7,
+ 0x2c, 0x03, 0x01, 0xf9, 0xfb, 0xc7, 0x69, 0x6d, 0xf3, 0x78, 0x36, 0xa9, 0x3d, 0x90, 0xe5, 0xf5, 0x26, 0xfc,
+ 0x7c, 0xb0, 0x29, 0x60, 0xce, 0xb9, 0x55, 0x98, 0x87, 0x5f, 0xd6, 0xac, 0xe5, 0x5a, 0x95, 0x4c, 0x06, 0xcb,
+ 0x16, 0x05, 0xf7, 0x6a, 0xd1, 0x31, 0xc3, 0xf9, 0x7e, 0x21, 0x01, 0x66, 0xf1, 0x82, 0x54, 0x08, 0x6c, 0xf3,
+ 0x3c, 0x01, 0xa7, 0xf8, 0x14, 0x2a, 0x95, 0x01, 0xed, 0x66, 0x2e, 0xe3, 0xbc, 0xb4, 0x1e, 0xcd, 0x7b, 0x7e,
+ 0x4a, 0xe1, 0x35, 0xee, 0x6b, 0xef, 0x17, 0x8b, 0x39, 0x48, 0x1c, 0xb1, 0x83, 0x95, 0x63, 0x00, 0xf9, 0x24,
+ 0x69, 0xe2, 0x2e, 0x88, 0xcf, 0x37, 0x26, 0xcf, 0xca, 0x18, 0x2a, 0x99, 0x0d, 0x89, 0xe6, 0xa9, 0x64, 0x8f,
+ 0xf2, 0x84, 0x45, 0xde, 0x02, 0xef, 0x25, 0x5a, 0xdd, 0x42, 0x95, 0x65, 0xf2, 0x6a, 0x24, 0x5b, 0x5d, 0x88,
+ 0x6d, 0x75, 0x45, 0x54, 0x71, 0x98, 0x2c, 0xb7, 0xee, 0x2c, 0x5b, 0x61, 0x5f, 0x51, 0xf6, 0x5a, 0xc3, 0x0e,
+ 0x6f, 0x0e, 0xfb, 0xb0, 0x74, 0xa2, 0x09, 0x0d, 0x6d, 0xc7, 0x77, 0x24, 0x0c, 0xb0, 0x70, 0xc9, 0x35, 0x99,
+ 0x77, 0xe7, 0xef, 0xcd, 0xda, 0x46, 0x52, 0x5d, 0xa3, 0x5f, 0x45, 0x6b, 0x2d, 0x53, 0x93, 0xbe, 0x9b, 0xc6,
+ 0xfc, 0xf9, 0x26, 0xf8, 0x5d, 0x87, 0xdf, 0x9a, 0x53, 0x89, 0x2a, 0x79, 0x3c, 0x21, 0xa5, 0x4c, 0x62, 0x3d,
+ 0x4c, 0xc0, 0x85, 0xab, 0xcc, 0x8f, 0xc5, 0x22, 0x51, 0xd7, 0xb6, 0x0c, 0xc7, 0x69, 0xac, 0xf6, 0x5b, 0x0d,
+ 0xfd, 0x89, 0x35, 0x10, 0x59, 0x99, 0xc0, 0x52, 0x3a, 0xd2, 0x13, 0x2b, 0xe6, 0xe7, 0x12, 0x8c, 0x6b, 0x44,
+ 0x0a, 0x9c, 0x2e, 0x3f, 0x2f, 0x12, 0xdb, 0x8e, 0x94, 0xa3, 0xd1, 0xd6, 0x41, 0x91, 0xab, 0x9d, 0xc2, 0x9d,
+ 0x73, 0xd4, 0x81, 0x3a, 0x39, 0xeb, 0x92, 0x12, 0x09, 0x6f, 0x06, 0xd9, 0x72, 0x07, 0xd4, 0x8d, 0x99, 0x5e,
+ 0xca, 0x6f, 0x28, 0xe7, 0x2c, 0xc9, 0xa8, 0xcf, 0x7b, 0x69, 0xfa, 0x9d, 0x99, 0xdb, 0xfe, 0xfb, 0x27, 0x42,
+ 0x94, 0xfb, 0xfb, 0x87, 0xaa, 0x5a, 0x38, 0x8b, 0xb8, 0xaf, 0x3a, 0xf9, 0x16, 0x4e, 0x70, 0x69, 0x2d, 0xea,
+ 0xe3, 0xcb, 0xf3, 0x04, 0x6e, 0xba, 0x86, 0x0e, 0xa4, 0xc3, 0xdb, 0x33, 0x10, 0xdf, 0x36, 0x49, 0xa1, 0x1a,
+ 0x9e, 0xc3, 0x6e, 0xf4, 0xd6, 0x85, 0x14, 0x2e, 0x19, 0x99, 0x89, 0xf5, 0x63, 0x6b, 0x0a, 0x07, 0x6d, 0xfc,
+ 0x9f, 0x90, 0xac, 0x64, 0xa1, 0x14, 0xbc, 0xa8, 0x8c, 0xa2, 0x9b, 0x48, 0x56, 0xfd, 0xcf, 0x65, 0xeb, 0x8b,
+ 0x8a, 0x71, 0xd7, 0xdf, 0x5e, 0xf5, 0xb4, 0x98, 0xe8, 0x9e, 0xbd, 0x5e, 0x8f, 0xb9, 0xe1, 0xcd, 0x2f, 0xb2,
+ 0x79, 0xbd, 0x82, 0xce, 0x7b, 0x9d, 0xd3, 0xf6, 0xec, 0x7e, 0xa0, 0xa0, 0xc1, 0x88, 0xee, 0x7e, 0x85, 0x70,
+ 0x16, 0x53, 0x9f, 0xfb, 0x64, 0x35, 0xf7, 0xd7, 0xe6, 0x62, 0x6d, 0x1a, 0x46, 0xc9, 0xe9, 0xf2, 0xb7, 0x91,
+ 0x56, 0xb7, 0x5e, 0xd0, 0x5b, 0x0e, 0xd7, 0x62, 0x2e, 0xd3, 0xf4, 0x65, 0x04, 0xd9, 0x63, 0xee, 0x8b, 0x0d,
+ 0x1f, 0xaf, 0x5d, 0xfe, 0x4b, 0x56, 0x4b, 0x15, 0xf6, 0xdb, 0xbc, 0xca, 0xeb, 0x35, 0xbf, 0x32, 0xa5, 0x5e,
+ 0xf4, 0x22, 0x7a, 0xca, 0xbf, 0xd5, 0xbb, 0x0e, 0x5b, 0x81, 0xb7, 0xef, 0xe8, 0x4d, 0x8b, 0x20, 0x09, 0x5d,
+ 0x32, 0x50, 0x29, 0xb1, 0xc2, 0x04, 0xcc, 0x8f, 0xec, 0x5e, 0x48, 0xf0, 0x87, 0x4c, 0xb3, 0x27, 0x2c, 0x5d,
+ 0x4a, 0xc6, 0x73, 0x9d, 0xd7, 0x30, 0xf6, 0x32, 0xc8, 0xc0, 0xb8, 0x33, 0x23, 0xd3, 0x3a, 0x5a, 0x5b, 0x85,
+ 0x3b, 0x54, 0x70, 0x5c, 0xd0, 0xee, 0xbe, 0x65, 0x47, 0xe5, 0x82, 0xcf, 0x9f, 0xd6, 0xd7, 0xf0, 0x09, 0x60,
+ 0x89, 0x43, 0xfc, 0x70, 0xbb, 0xef, 0x13, 0x60, 0xb3, 0x6a, 0x22, 0x29, 0x5c, 0x36, 0xc5, 0xfd, 0xe3, 0x66,
+ 0xba, 0x02, 0x77, 0x12, 0x2d, 0x2f, 0xb9, 0xc3, 0x4c, 0x24, 0x00, 0x74, 0x96, 0x1a, 0xf7, 0x29, 0xcb, 0x90,
+ 0x5a, 0x61, 0x83, 0x09, 0xd3, 0x37, 0x0d, 0x34, 0xb5, 0x89, 0xec, 0x48, 0x80, 0x81, 0x80, 0x94, 0x96, 0x88,
+ 0x8e, 0x91, 0x95, 0xe1, 0x0e, 0x4b, 0x71, 0x88, 0x9c, 0x93, 0x8d, 0x16, 0x2e, 0xc3, 0x32, 0xc1, 0xd5, 0xc9,
+ 0x25, 0x32, 0x53, 0x6f, 0x63, 0x49, 0x2f, 0x0d, 0xe4, 0xc1, 0xf0, 0x93, 0x0c, 0x3b, 0x11, 0x2d, 0xf9, 0x15,
+ 0x1a, 0xc6, 0xfa, 0xb3, 0x1b, 0xd8, 0x18, 0xb5, 0x9d, 0x88, 0x1e, 0xc1, 0xc4, 0x6e, 0xe8, 0x64, 0x80, 0x6f,
+ 0xf9, 0xff, 0x53, 0xc7, 0x30, 0x09, 0xae, 0x8f, 0x64, 0x81, 0xe0, 0xb8, 0x7d, 0xe8, 0xcd, 0xea, 0xb1, 0x48,
+ 0x39, 0x49, 0x45, 0x03
};
-// context = smart_lighting
+// context = simple_context_ar
static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x65, 0x6e, 0x00, 0x09,
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x61, 0x72, 0x00, 0x09,
0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x98, 0x1b, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c,
- 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20,
- 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x61,
- 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x74, 0x6f,
- 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
- 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69,
- 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74,
- 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c,
- 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x74, 0x6f,
- 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
- 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
- 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63,
- 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d,
- 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
- 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
- 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
- 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72,
- 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20,
- 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
- 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f,
- 0x6c, 0x6f, 0x72, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74,
- 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
- 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x61, 0x6c,
- 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
- 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20,
- 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20,
- 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68,
- 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
- 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67,
- 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
- 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
- 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28,
- 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
- 0x73, 0x5d, 0x20, 0x5b, 0x69, 0x6e, 0x2c, 0x20, 0x61, 0x74, 0x5d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x24, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66,
- 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66,
- 0x66, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
- 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28,
- 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x6f,
- 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
- 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c,
- 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20,
- 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68,
- 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74,
- 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73,
- 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24,
- 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68,
- 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d,
- 0x20, 0x6f, 0x66, 0x66, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65,
- 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
- 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68,
- 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
- 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x62, 0x6c, 0x75, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x72, 0x65,
- 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x72, 0x61, 0x6e, 0x67,
- 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x69, 0x6e, 0x6b, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x72, 0x65, 0x64, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2d, 0x20, 0x22, 0x77, 0x68, 0x69, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
- 0x20, 0x22, 0x79, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x74,
- 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62,
- 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x62, 0x65, 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
- 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x68,
- 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6b,
- 0x69, 0x74, 0x63, 0x68, 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6c,
- 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x2d, 0x20, 0x22, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x0a, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
- 0x1d, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x37, 0x00,
- 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00,
- 0x57, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00,
- 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00,
- 0x8d, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x9d, 0x00, 0x00, 0x00, 0xa1, 0x00,
- 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00,
- 0x61, 0x6c, 0x6c, 0x00, 0x61, 0x74, 0x00, 0x62, 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x65,
- 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x6c, 0x75, 0x65, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x00,
- 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x67, 0x72, 0x65, 0x65, 0x6e,
- 0x00, 0x68, 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x00, 0x69, 0x6e, 0x00, 0x6b, 0x69, 0x74, 0x63, 0x68, 0x65,
- 0x6e, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x00, 0x6c, 0x69, 0x76,
- 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x6d, 0x61, 0x6b, 0x65, 0x00, 0x6f, 0x66, 0x66, 0x00,
- 0x6f, 0x6e, 0x00, 0x6f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x00, 0x70,
- 0x69, 0x6e, 0x6b, 0x00, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x00, 0x72, 0x65, 0x64, 0x00, 0x73, 0x65, 0x74,
- 0x00, 0x73, 0x68, 0x75, 0x74, 0x00, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x00, 0x74, 0x68, 0x65, 0x00, 0x74,
- 0x6f, 0x00, 0x74, 0x75, 0x72, 0x6e, 0x00, 0x77, 0x68, 0x69, 0x74, 0x65, 0x00, 0x79, 0x65, 0x6c, 0x6c, 0x6f,
- 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
- 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
- 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
- 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
- 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
- 0x1d, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x25, 0x00,
- 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x1d, 0x00,
- 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
- 0x30, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x44, 0x00,
- 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00,
- 0x52, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x66, 0x00,
- 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00,
- 0x75, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7d, 0x00,
- 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00,
- 0x04, 0x15, 0x02, 0x1f, 0x07, 0x02, 0x20, 0x1c, 0x22, 0x16, 0x07, 0x0b, 0x09, 0x1c, 0x22, 0x16, 0x07, 0x15,
- 0x22, 0x08, 0x0d, 0x17, 0x13, 0x14, 0x15, 0x01, 0x26, 0x03, 0x1f, 0x14, 0x03, 0x15, 0x0c, 0x14, 0x04, 0x15,
- 0x0c, 0x0f, 0x1c, 0x12, 0x17, 0x10, 0x04, 0x15, 0x24, 0x0d, 0x11, 0x17, 0x14, 0x11, 0x08, 0x03, 0x17, 0x15,
- 0x06, 0x1f, 0x1d, 0x15, 0x06, 0x1f, 0x15, 0x11, 0x23, 0x11, 0x18, 0x1c, 0x22, 0x16, 0x16, 0x0d, 0x14, 0x04,
- 0x0e, 0x01, 0x17, 0x04, 0x17, 0x04, 0x1c, 0x03, 0x17, 0x13, 0x04, 0x1c, 0x11, 0x17, 0x13, 0x1b, 0x02, 0x17,
- 0x1f, 0x1c, 0x12, 0x1b, 0x11, 0x18, 0x14, 0x1b, 0x0c, 0x1b, 0x03, 0x15, 0x1c, 0x0b, 0x09, 0x1d, 0x0b, 0x1f,
- 0x1e, 0x03, 0x1f, 0x1d, 0x24, 0x11, 0x08, 0x0a, 0x03, 0x0a, 0x12, 0x1f, 0x03, 0x1f, 0x11, 0x1f, 0x22, 0x1f,
- 0x0c, 0x17, 0x10, 0x24, 0x06, 0x1f, 0x24, 0x06, 0x1f, 0x25, 0x0b, 0x15, 0x19, 0x00, 0x0f, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x12, 0x00,
- 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00,
- 0x18, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x22, 0x00,
- 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
- 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1d, 0x00,
- 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x09, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x10, 0x00,
- 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
- 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
- 0x07, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
- 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00,
- 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
- 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00,
- 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73, 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
- 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
- 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00,
- 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00,
- 0x31, 0x00, 0x00, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x00, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66, 0x00, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0x04, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x64, 0x0a,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00,
- 0x44, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x3c, 0x02,
- 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x58, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0xb8, 0x00,
- 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00,
- 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00,
- 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x90, 0x01,
- 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
- 0x34, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x34, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x5c, 0x01, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x01, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00,
- 0xa4, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd0, 0x01,
- 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0xa4, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00,
- 0x2c, 0x02, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x1c, 0x02, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
- 0x54, 0x02, 0x00, 0x00, 0xc8, 0x02, 0x00, 0x00, 0x3c, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x6c, 0x02, 0x00, 0x00, 0xa4, 0x02, 0x00, 0x00, 0x54, 0x02, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x02, 0x00, 0x00, 0x6c, 0x02,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x02, 0x00, 0x00,
- 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x02,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x02, 0x00, 0x00,
- 0xa4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x02,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00,
- 0xc8, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xf4, 0x02,
- 0x00, 0x00, 0x18, 0x03, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0xf4, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00,
- 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00,
- 0xf8, 0x05, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x88, 0x03, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0xd0, 0x03,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00,
- 0x38, 0x04, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x28, 0x04, 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x4c, 0x04, 0x00, 0x00, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00,
- 0x74, 0x04, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x04,
- 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0xb4, 0x04, 0x00, 0x00, 0xa0, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xc8, 0x04, 0x00, 0x00, 0xb4, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x38, 0x05, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x50, 0x05, 0x00, 0x00, 0x74, 0x05, 0x00, 0x00, 0x38, 0x05,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x05, 0x00, 0x00,
- 0x50, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x05,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0xd4, 0x05,
- 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0xb0, 0x05, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xc4, 0x05, 0x00, 0x00, 0xb0, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xe8, 0x05, 0x00, 0x00, 0xd4, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x28, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x10, 0x06,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00,
- 0x28, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x06,
- 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x64, 0x06, 0x00, 0x00, 0x50, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x88, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x9c, 0x06, 0x00, 0x00, 0x88, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xec, 0x06, 0x00, 0x00, 0x10, 0x07, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0xec, 0x06,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0xc0, 0x08, 0x00, 0x00,
- 0xf8, 0x08, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x20, 0x07,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x6c, 0x07, 0x00, 0x00,
- 0x90, 0x07, 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x48, 0x07,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x07, 0x00, 0x00,
- 0x6c, 0x07, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0xdc, 0x07,
- 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0xcc, 0x07, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0xf0, 0x07, 0x00, 0x00, 0xdc, 0x07, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x2c, 0x08, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x08, 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x50, 0x08, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x74, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x08, 0x00, 0x00, 0xb0, 0x08, 0x00, 0x00, 0x74, 0x08,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x08, 0x00, 0x00,
- 0x8c, 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x08,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
- 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd4, 0x08, 0x00, 0x00, 0xc0, 0x08,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x08, 0x00, 0x00,
- 0xd4, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x09, 0x00, 0x00,
- 0xf8, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00,
- 0x6c, 0x09, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x5c, 0x09, 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x6c, 0x09, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xbc, 0x09, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe0, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00,
- 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf4, 0x09, 0x00, 0x00, 0xe0, 0x09,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
- 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x18, 0x0a, 0x00, 0x00, 0x04, 0x0a,
- 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00,
- 0x18, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x40, 0x0a,
- 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
- 0x54, 0x0a, 0x00, 0x00, 0x40, 0x0a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00,
- 0x8c, 0x0a, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0xb0, 0x0d,
- 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x05, 0x00, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0xd4, 0x0a, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x80, 0x0b,
- 0x00, 0x00, 0xa4, 0x0b, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xc4, 0x0a, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x0b, 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x0c, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x34, 0x0b, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x70, 0x0b, 0x00, 0x00,
- 0x34, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x60, 0x0b,
- 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x34, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x94, 0x0b, 0x00, 0x00,
- 0x80, 0x0b, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
- 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00,
- 0xa4, 0x0b, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x0b,
- 0x00, 0x00, 0xf4, 0x0b, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00, 0x00, 0xd0, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0c, 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x50, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x78, 0x0c, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0xb4, 0x0c, 0x00, 0x00,
- 0x78, 0x0c, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x0c,
- 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x78, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0c,
- 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00,
- 0x3c, 0x0d, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00, 0x2c, 0x0d, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x06, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x0d, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x54, 0x0d, 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x3c, 0x0d,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00,
- 0x54, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x7c, 0x0d,
- 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x3c, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x0d,
- 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x64, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xc8, 0x0d,
- 0x00, 0x00, 0xec, 0x0d, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xdc, 0x0d, 0x00, 0x00, 0xc8, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x64, 0x0e, 0x00, 0x00,
- 0x28, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x54, 0x0e,
- 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x28, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x0d,
- 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00,
- 0xc4, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xb4, 0x0e, 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0xd8, 0x0e, 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_ENGLISH__
-
-#if defined(__PV_LANGUAGE_GERMAN__)
-
-// wake-word = hey computer
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xa9, 0x5b, 0x9a, 0x5d, 0x4f, 0x7b, 0x71, 0x04, 0x94, 0xb2, 0x6c, 0x15, 0x29, 0xbf, 0xde, 0x31, 0x9c, 0xa9,
- 0x74, 0x68, 0x62, 0xfe, 0x9f, 0x16, 0x8d, 0xe3, 0xeb, 0x5e, 0x09, 0x1c, 0xaf, 0x7a, 0xbd, 0x42, 0x32, 0x40,
- 0x7c, 0xbd, 0xe8, 0x62, 0x32, 0xa3, 0x0c, 0xfd, 0x13, 0x16, 0xd9, 0x56, 0x8a, 0x8e, 0x8c, 0xcd, 0xc9, 0x06,
- 0x6c, 0x29, 0x42, 0xe4, 0x78, 0x9a, 0x07, 0x13, 0x77, 0xff, 0x6e, 0x47, 0xa5, 0x5f, 0xd2, 0xec, 0x28, 0x70,
- 0xb5, 0x69, 0x31, 0xc7, 0xe0, 0x98, 0xbd, 0x15, 0x1d, 0xbc, 0x84, 0xe3, 0xe3, 0x5f, 0x6b, 0x51, 0x1f, 0x38,
- 0x2f, 0xe6, 0xd2, 0x23, 0xb4, 0x61, 0x5d, 0xb3, 0x2b, 0xf0, 0x17, 0xf0, 0x63, 0xca, 0x51, 0x61, 0x85, 0xfc,
- 0xab, 0xed, 0xab, 0xc7, 0x16, 0xa0, 0x9e, 0xf4, 0x16, 0xb5, 0xe3, 0x96, 0xda, 0x56, 0x78, 0x2b, 0xea, 0x6e,
- 0x7e, 0x93, 0xb1, 0xdc, 0x91, 0x1a, 0x81, 0x38, 0xfc, 0x3d, 0x8e, 0x8c, 0xfc, 0x23, 0xb1, 0x0d, 0xd0, 0xd6,
- 0xae, 0x90, 0xab, 0x6e, 0x7d, 0xed, 0x0f, 0x7d, 0x14, 0xaf, 0x10, 0xfc, 0xa5, 0x66, 0x57, 0x63, 0x40, 0x82,
- 0xcc, 0x69, 0x1d, 0x8b, 0x55, 0x82, 0xfa, 0x48, 0x4a, 0xa0, 0x63, 0x8b, 0x57, 0x93, 0xc3, 0xe8, 0xb1, 0x52,
- 0x40, 0x14, 0xc6, 0x8a, 0xb7, 0x85, 0x7c, 0x0b, 0x51, 0x76, 0xd6, 0x6c, 0x13, 0x34, 0x87, 0x91, 0x1a, 0xbb,
- 0x7b, 0x26, 0x05, 0xdd, 0xda, 0x82, 0x5a, 0xce, 0xfd, 0xf1, 0xe0, 0x49, 0x28, 0x9a, 0x05, 0xc0, 0x11, 0x30,
- 0x1b, 0x3a, 0x6d, 0xfe, 0x21, 0x79, 0x25, 0x27, 0x9d, 0xfd, 0xa2, 0xc3, 0xc2, 0x5a, 0xc3, 0xa4, 0xf5, 0x39,
- 0xaa, 0x4b, 0x93, 0x78, 0xa0, 0xae, 0x20, 0x90, 0x07, 0xe3, 0x21, 0x4b, 0x60, 0x9f, 0x83, 0x59, 0xe9, 0xdb,
- 0x55, 0x7b, 0xed, 0x34, 0x2a, 0x06, 0x28, 0x16, 0x8d, 0x55, 0xb0, 0x38, 0x2e, 0x46, 0xb3, 0x94, 0xa9, 0x05,
- 0x30, 0x6c, 0x38, 0x41, 0xe8, 0x94, 0xc9, 0x21, 0x52, 0xbf, 0xf8, 0x50, 0x97, 0x56, 0x45, 0xa5, 0x1f, 0x2b,
- 0x55, 0xaa, 0x22, 0x58, 0x79, 0x94, 0x7c, 0x06, 0x2f, 0x30, 0xfb, 0x65, 0x37, 0xdb, 0xb0, 0x24, 0xe7, 0x5e,
- 0xab, 0x21, 0xde, 0x24, 0x9c, 0x56, 0x64, 0x5b, 0x11, 0xf8, 0xaa, 0x64, 0xa5, 0x84, 0x9f, 0xbd, 0xec, 0x56,
- 0x7c, 0xc7, 0x46, 0x15, 0x84, 0x18, 0x26, 0x9c, 0x32, 0xdd, 0xef, 0xd9, 0x93, 0x67, 0x08, 0x76, 0xa7, 0x73,
- 0x4a, 0x9c, 0xbc, 0xc4, 0x16, 0x35, 0x2a, 0x59, 0xec, 0x6c, 0x9f, 0x7e, 0x0f, 0x8d, 0x82, 0x36, 0xbc, 0xaf,
- 0x9f, 0xb0, 0x96, 0x07, 0xb6, 0x8f, 0xda, 0x4b, 0xb5, 0xe3, 0xc3, 0x00, 0x6c, 0x95, 0x43, 0x7d, 0x98, 0xaf,
- 0xa6, 0x7e, 0x38, 0x0e, 0xc1, 0x0c, 0x90, 0x51, 0x83, 0x90, 0x72, 0xaa, 0xe4, 0x50, 0x17, 0x31, 0x4f, 0x0c,
- 0x6e, 0xb7, 0x10, 0x32, 0x42, 0x03, 0xc2, 0x24, 0x57, 0x6d, 0x07, 0x93, 0x23, 0x4c, 0xd8, 0x2e, 0x7d, 0x46,
- 0x17, 0x06, 0x5f, 0xcd, 0x37, 0xa2, 0x0a, 0x0b, 0x9e, 0xb6, 0x7b, 0x82, 0x09, 0xa2, 0x65, 0x41, 0xea, 0x70,
- 0x96, 0x8e, 0x19, 0x88, 0xf6, 0xef, 0xc2, 0x45, 0x69, 0xc2, 0xd8, 0xfd, 0xfe, 0xde, 0x6a, 0x75, 0x47, 0x08,
- 0x60, 0x38, 0xbd, 0x9d, 0xb0, 0xf5, 0x34, 0xca, 0x7b, 0xcb, 0x59, 0x86, 0x6c, 0xa2, 0x1a, 0x76, 0xa9, 0x8a,
- 0x36, 0x97, 0xe7, 0xa9, 0x2d, 0xdf, 0xfe, 0x1f, 0xdf, 0xa1, 0xfd, 0x07, 0x94, 0xe4, 0x09, 0x94, 0x30, 0xa2,
- 0x75, 0x31, 0xb8, 0xce, 0xb0, 0xd6, 0x6d, 0xb9, 0x46, 0xc2, 0xfa, 0xfc, 0xbc, 0xf0, 0x26, 0x24, 0x49, 0x42,
- 0x5d, 0x53, 0x19, 0xd4, 0x58, 0x5e, 0x77, 0x89, 0xdd, 0xad, 0xd3, 0xd7, 0xd7, 0xb8, 0xb9, 0xaa, 0x05, 0x67,
- 0xdb, 0x5f, 0xfe, 0xad, 0xa8, 0x31, 0xc1, 0xb2, 0x86, 0x31, 0x1d, 0x25, 0x60, 0xf6, 0x88, 0xa8, 0x6c, 0x2e,
- 0xee, 0x99, 0xf6, 0x68, 0x1d, 0x2d, 0x2b, 0x30, 0x69, 0xca, 0xd9, 0x05
-};
-
-// context = beleuchtung
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x64, 0x65, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x22, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x20, 0x24, 0x76, 0x72,
+ 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
+ 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x22, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa7, 0xd9, 0x84, 0xd9, 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88,
+ 0xd9, 0x84, 0xd8, 0xa9, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xaa, 0xd9,
+ 0x81, 0xd8, 0xa7, 0xd8, 0xad, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x33, 0x00,
+ 0x00, 0x00, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x00, 0xd8, 0xa7, 0xd9, 0x84, 0xd9,
+ 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88, 0xd9, 0x84, 0xd8, 0xa9, 0x00, 0xd8, 0xaa, 0xd9, 0x81, 0xd8, 0xa7,
+ 0xd8, 0xad, 0x00, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x00, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1e, 0x00,
+ 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x46, 0x00,
+ 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00,
+ 0x7c, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa6, 0x00,
+ 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
+ 0xc4, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xd6, 0x00,
+ 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xea, 0x00, 0x00, 0x00,
+ 0xf1, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x03, 0x01, 0x00, 0x00, 0x07, 0x01,
+ 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x16, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00,
+ 0x21, 0x01, 0x00, 0x00, 0x27, 0x01, 0x00, 0x00, 0x2b, 0x01, 0x00, 0x00, 0x30, 0x01, 0x00, 0x00, 0x36, 0x01,
+ 0x00, 0x00, 0x02, 0x10, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x02, 0x1a, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x20, 0x09,
+ 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10,
+ 0x16, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20,
+ 0x24, 0x03, 0x09, 0x10, 0x08, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03,
+ 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24,
+ 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a,
+ 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a,
+ 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03,
+ 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11,
+ 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x10, 0x08,
+ 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x0c, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a,
+ 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a, 0x0c, 0x0e, 0x21, 0x0e, 0x0e, 0x21, 0x0e, 0x10, 0x0e, 0x21, 0x0e, 0x03,
+ 0x0e, 0x21, 0x0e, 0x1a, 0x0e, 0x21, 0x0e, 0x1a, 0x0c, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x0e, 0x1a, 0x24, 0x10,
+ 0x0e, 0x10, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x18, 0x10, 0x0a, 0x10,
+ 0x11, 0x10, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x11, 0x18, 0x10, 0x0a, 0x11, 0x10,
+ 0x18, 0x03, 0x0a, 0x11, 0x18, 0x03, 0x0a, 0x11, 0x03, 0x0c, 0x18, 0x03, 0x0a, 0x11, 0x1a, 0x0c, 0x18, 0x1a,
+ 0x0a, 0x10, 0x11, 0x18, 0x1a, 0x0a, 0x10, 0x11, 0x10, 0x18, 0x1a, 0x0a, 0x11, 0x18, 0x1a, 0x0a, 0x11, 0x10,
+ 0x18, 0x1a, 0x0a, 0x11, 0x1a, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69,
+ 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x18, 0x00,
+ 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_ARABIC__
+
+#if defined(__PV_LANGUAGE_GERMAN__)
+
+// wake-word = hey computer
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x97, 0x6f, 0x9c, 0x1d, 0x10, 0xb1, 0xbe, 0xcc, 0x81, 0xc4, 0xe7, 0xf1, 0xeb, 0xcd, 0x55, 0xd6, 0x74, 0x17,
+ 0xed, 0x0d, 0x6a, 0xbe, 0x39, 0xf7, 0xc6, 0x32, 0xe8, 0x31, 0x27, 0x37, 0x98, 0xea, 0x12, 0xbb, 0x53, 0xd6,
+ 0xa5, 0x80, 0xe7, 0x7d, 0x67, 0x29, 0x87, 0xf7, 0x09, 0x46, 0xe2, 0x3b, 0x52, 0xbb, 0x64, 0x92, 0x53, 0xb2,
+ 0x3d, 0x09, 0xd4, 0xa8, 0x7a, 0x34, 0x80, 0xfd, 0x6d, 0x5d, 0x33, 0x9e, 0x85, 0xb3, 0x2c, 0xd0, 0xc4, 0x52,
+ 0xe4, 0x9d, 0x46, 0x0c, 0x83, 0x36, 0x48, 0x34, 0xb2, 0xfb, 0x51, 0xad, 0xd4, 0x78, 0x30, 0x87, 0xfd, 0xf6,
+ 0x79, 0x60, 0x3a, 0x4d, 0x53, 0xb8, 0x80, 0x58, 0xa2, 0xf1, 0x68, 0x9e, 0x95, 0x72, 0x9e, 0xbe, 0xd9, 0xa5,
+ 0xdc, 0x15, 0xaa, 0x18, 0x41, 0xc6, 0x9f, 0xfc, 0x09, 0xef, 0x5a, 0x3a, 0x9f, 0xda, 0x40, 0x5d, 0x32, 0xef,
+ 0xad, 0x90, 0x22, 0xa1, 0xc7, 0xd7, 0xa0, 0x19, 0xbf, 0xa2, 0x17, 0xd6, 0xcb, 0x2a, 0x81, 0xa2, 0x1d, 0x02,
+ 0xcf, 0x16, 0xea, 0x2a, 0x29, 0x7a, 0xbc, 0x34, 0x97, 0x83, 0x75, 0x31, 0x7d, 0x7f, 0xf6, 0x1b, 0x72, 0xdb,
+ 0x07, 0xaf, 0xdd, 0xb6, 0xf9, 0x2a, 0xa4, 0x8d, 0x38, 0xe4, 0x43, 0xd0, 0x40, 0x66, 0x68, 0x4a, 0x2f, 0x21,
+ 0x23, 0xb5, 0x22, 0x42, 0x27, 0x5a, 0x03, 0x94, 0x93, 0x6d, 0x99, 0xa7, 0x6f, 0x13, 0x4e, 0x4f, 0x32, 0x6e,
+ 0x8f, 0x5e, 0x36, 0x19, 0xe1, 0x32, 0x08, 0x58, 0xc4, 0xa3, 0xf7, 0x60, 0x17, 0xec, 0xea, 0x78, 0x1d, 0x2b,
+ 0xbc, 0x6f, 0x80, 0x97, 0x88, 0x88, 0x6f, 0xf9, 0xf4, 0x99, 0x15, 0x12, 0x25, 0x54, 0xdf, 0x02, 0xdb, 0x6b,
+ 0x35, 0x04, 0x51, 0xd7, 0x5d, 0x7e, 0xee, 0xef, 0x85, 0x48, 0x55, 0x5c, 0x70, 0x70, 0xbb, 0xc2, 0x8f, 0x92,
+ 0x67, 0x43, 0x81, 0xa1, 0xca, 0x89, 0xf7, 0xa4, 0xd1, 0xa9, 0x86, 0x34, 0x41, 0xfa, 0xc0, 0x04, 0x9b, 0xcd,
+ 0x7e, 0x45, 0xbd, 0x8f, 0x72, 0x06, 0x0c, 0x40, 0x3e, 0x68, 0x62, 0x08, 0x76, 0xca, 0xbe, 0xef, 0xad, 0x18,
+ 0x3f, 0x2c, 0x68, 0x99, 0xfb, 0xb0, 0x9b, 0x4b, 0x64, 0x90, 0x8c, 0x70, 0xfe, 0x9d, 0xb4, 0x99, 0x3f, 0x30,
+ 0x5e, 0x8a, 0xea, 0x72, 0x2d, 0x2b, 0xb6, 0x77, 0x3f, 0x6e, 0xfd, 0x47, 0x7d, 0x1d, 0x44, 0xcb, 0x2d, 0x86,
+ 0x56, 0x95, 0xbf, 0xc9, 0xf8, 0x13, 0x3a, 0x3b, 0xd8, 0x15, 0x29, 0x08, 0x12, 0x34, 0x16, 0xca, 0x01, 0xde,
+ 0x99, 0xc9, 0xe7, 0x1a, 0x56, 0x64, 0x17, 0x2a, 0x1a, 0x24, 0xb8, 0x50, 0x01, 0x5c, 0x89, 0x07, 0x0c, 0x8c,
+ 0x9c, 0x0c, 0x1a, 0x3f, 0xea, 0x05, 0x67, 0x84, 0xd5, 0xc7, 0x6f, 0xe2, 0x3f, 0x92, 0x7c, 0x62, 0x0b, 0xb9,
+ 0xaa, 0xac, 0xa3, 0x68, 0x72, 0xb1, 0xca, 0x68, 0xf4, 0x3d, 0x95, 0x06, 0x14, 0x55, 0x4f, 0xb4, 0x84, 0x3d,
+ 0x5c, 0x49, 0x25, 0x52, 0x0a, 0x3a, 0xf5, 0x8b, 0x2d, 0x5f, 0x3e, 0x3d, 0x71, 0x0d, 0xae, 0xa1, 0x9d, 0x22,
+ 0xc7, 0x6e, 0xcf, 0x94, 0xec, 0xc5, 0xc0, 0x10, 0xbd, 0xc7, 0x54, 0x84, 0x72, 0x9a, 0xf3, 0x2e, 0xd0, 0xe0,
+ 0x29, 0x54, 0xda, 0xe2, 0x69, 0x76, 0x7c, 0x71, 0x5d, 0x1c, 0xb9, 0x7a, 0xe8, 0x5f, 0x19, 0x34, 0xe8, 0x49,
+ 0xa6, 0x61, 0x9c, 0x37, 0x0a, 0x5c, 0xac, 0x4b, 0x25, 0xe1, 0x44, 0x82, 0x0b, 0xe1, 0xe8, 0xbb, 0xdb, 0xae,
+ 0xcd, 0x55, 0x7b, 0xa9, 0xab, 0x94, 0x65, 0x15, 0x79, 0x27, 0x40, 0x83, 0x97, 0x08, 0xc2, 0x22, 0xb0, 0x31,
+ 0x36, 0x3a, 0x1e, 0x7e, 0x7d, 0x2b, 0x78, 0x30, 0x7c, 0x49, 0x1c, 0xa2, 0x65, 0x41, 0x95, 0x28, 0xef, 0x4d,
+ 0xa6, 0xb5, 0xab, 0xd9, 0xc7, 0x87, 0x18, 0xa9, 0x93, 0xb3, 0x78, 0x07, 0xf6, 0x62, 0x15, 0x58, 0x69, 0x50,
+ 0x52, 0xc8, 0x68, 0x37, 0xf3, 0x3e, 0x4e, 0x4b, 0xa8, 0x85, 0x1d, 0xcc, 0x77, 0x0e, 0x9e, 0x4c, 0x13, 0xee,
+ 0x72, 0xb4, 0xf4, 0x8f, 0x47, 0x8e, 0x55, 0x74, 0x45, 0xc6, 0x2f, 0x43
+};
+
+// context = beleuchtung
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x64, 0x65, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f,
0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x66, 0xc3, 0xa4, 0x72, 0x62,
@@ -751,49 +575,511 @@ static const uint8_t CONTEXT_ARRAY[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
};
-#endif // __PV_LANGUAGE_GERMAN__
+#endif // __PV_LANGUAGE_GERMAN__
+
+#if defined(__PV_LANGUAGE_ENGLISH__)
+
+// wake-word = picovoice
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x1a, 0x68, 0xd0, 0xd2, 0x03, 0xc2, 0x6e, 0xa8, 0x55, 0x24, 0x05, 0xa9, 0xa4, 0x4b, 0xb8, 0x1d, 0x5b, 0x39,
+ 0x6b, 0xc1, 0xb0, 0x5b, 0xe0, 0x23, 0xa6, 0x59, 0x0a, 0xab, 0x04, 0x94, 0xfb, 0xd5, 0x69, 0x30, 0x65, 0x58,
+ 0x41, 0x10, 0x27, 0x73, 0x31, 0x4c, 0xe6, 0x26, 0x51, 0x2b, 0x83, 0x4a, 0x98, 0x6d, 0x3c, 0xf3, 0x34, 0xb2,
+ 0x2b, 0xb2, 0xa6, 0x30, 0x78, 0x76, 0x70, 0x32, 0x82, 0x89, 0x9f, 0xc2, 0xd8, 0x40, 0x06, 0x7e, 0x5c, 0x4f,
+ 0xa6, 0x03, 0xd8, 0x0a, 0x80, 0x37, 0xfe, 0x92, 0x90, 0x0c, 0x9d, 0xd3, 0x77, 0xf6, 0xdc, 0xab, 0x9a, 0x8d,
+ 0x52, 0x1b, 0x5f, 0x15, 0x9c, 0x60, 0x87, 0xba, 0xd0, 0x36, 0xf4, 0x0e, 0xe2, 0x31, 0xef, 0x88, 0x9a, 0x33,
+ 0xd7, 0xaf, 0xb2, 0xdc, 0x62, 0x1d, 0xb2, 0xbb, 0x00, 0x99, 0x1f, 0x6b, 0xd7, 0xd4, 0x60, 0x68, 0xd4, 0x81,
+ 0x7d, 0xcc, 0x08, 0x04, 0xe5, 0x39, 0x47, 0x34, 0xc8, 0x9a, 0xce, 0x73, 0xe8, 0x4f, 0xf3, 0xa5, 0x3c, 0x76,
+ 0x75, 0x96, 0x73, 0x46, 0xc3, 0x4b, 0x9e, 0x00, 0x94, 0x3e, 0xa7, 0x24, 0x71, 0x8a, 0x16, 0xc2, 0x85, 0x66,
+ 0x68, 0xde, 0x07, 0xeb, 0xba, 0xa0, 0xbe, 0x92, 0xf6, 0xd8, 0xb7, 0x73, 0xe7, 0xe0, 0xf0, 0xc8, 0x12, 0x4a,
+ 0x4e, 0xd8, 0x0e, 0xac, 0x3b, 0x55, 0x7e, 0x2a, 0x33, 0x72, 0x65, 0x25, 0xe7, 0x85, 0xce, 0x5b, 0xe1, 0xa2,
+ 0x89, 0x8f, 0xc3, 0xfb, 0x6c, 0xf6, 0x64, 0x58, 0xa3, 0xc9, 0x81, 0x24, 0x0f, 0x9f, 0x2f, 0x2d, 0x00, 0x07,
+ 0x68, 0x03, 0xd7, 0x5d, 0x41, 0x39, 0xe8, 0xbf, 0xc4, 0x0a, 0x84, 0x81, 0x39, 0x5b, 0x82, 0x48, 0x42, 0x7b,
+ 0xa8, 0x52, 0x7b, 0x0b, 0x26, 0xd6, 0x83, 0xd5, 0x2b, 0x33, 0x32, 0x1d, 0x16, 0xab, 0x2c, 0xbe, 0x75, 0xca,
+ 0x69, 0x07, 0x1d, 0x00, 0x1b, 0x56, 0x59, 0xe3, 0xea, 0x87, 0x8f, 0x3f, 0x1d, 0xf4, 0xff, 0xf1, 0xf5, 0xda,
+ 0x57, 0x9e, 0xae, 0xa9, 0xab, 0x3c, 0xfd, 0xc8, 0x0b, 0x95, 0x22, 0x16, 0x45, 0x13, 0xf8, 0x36, 0x18, 0x16,
+ 0xac, 0x8b, 0x60, 0xa3, 0x2d, 0xf0, 0xd3, 0x14, 0x60, 0x97, 0xdd, 0x11, 0x81, 0x52, 0xf5, 0x37, 0xf2, 0xbc,
+ 0xa4, 0x72, 0x2e, 0xc8, 0x8d, 0xbf, 0xa3, 0x9e, 0x5e, 0xfa, 0xef, 0x23, 0x45, 0x91, 0x8a, 0x86, 0x66, 0x13,
+ 0x05, 0x6e, 0x3d, 0xbc, 0xd7, 0xef, 0xe1, 0x44, 0x02, 0x75, 0x65, 0x55, 0xcd, 0x85, 0x3e, 0x31, 0xe2, 0x8b,
+ 0x2b, 0xbd, 0x3f, 0xca, 0x4e, 0xdf, 0xb2, 0xca, 0x4b, 0x45, 0x9f, 0xf0, 0x3d, 0x97, 0x83, 0xe6, 0x0b, 0xcd,
+ 0x2b, 0xd3, 0x0d, 0xdb, 0x57, 0xd1, 0x18, 0xfa, 0xcf, 0x84, 0x50, 0xff, 0xdb, 0xa6, 0x5d, 0x7c, 0x0c, 0x71,
+ 0x8e, 0xb2, 0x36, 0x61, 0x13, 0xa4, 0x41, 0x26, 0xcf, 0x8d, 0xa8, 0xf8, 0x0f, 0xef, 0xb8, 0x2a, 0x4d, 0xf6,
+ 0x6b, 0x09, 0x5e, 0x5f, 0xf8, 0x8e, 0x4e, 0x9b, 0x68, 0x3d, 0x73, 0xa0, 0xdd, 0x1b, 0x8c, 0x56, 0x14, 0x98,
+ 0xf7, 0xc8, 0xd6, 0x99, 0x52, 0xcf, 0x7b, 0x11, 0x70, 0xe2, 0x22, 0x06, 0x7e, 0x0f, 0x0e, 0xd2, 0x5d, 0x58,
+ 0x74, 0xfc, 0x1a, 0xf9, 0xc9, 0x9f, 0xd8, 0x42, 0x0b, 0xe3, 0xa9, 0x28, 0xab, 0xce, 0x6b, 0x19, 0x4b, 0xea,
+ 0x53, 0x8b, 0x4d, 0x53, 0x81, 0xca, 0xec, 0x56, 0x82, 0xa5, 0x63, 0xbb, 0x6a, 0x11, 0x48, 0xe2, 0xc4, 0x4e,
+ 0xee, 0x24, 0x19, 0x16, 0x81, 0xb0, 0xa3, 0xfa, 0xe5, 0x2e, 0x0d, 0x89, 0x0b, 0x2f, 0xe0, 0x03, 0x83, 0x8b,
+ 0x3a, 0x75, 0xf4, 0x3a, 0x7e, 0x7c, 0x87, 0x7a, 0x68, 0x44, 0x5e, 0xb9, 0xd0, 0x50, 0xfc, 0xe3, 0x57, 0xc0,
+ 0xaf, 0xbb, 0x1f, 0xe2, 0x72, 0x3a, 0xc4, 0x9a, 0xa5, 0xf2, 0x7c, 0x8a, 0xe7, 0xad, 0xb8, 0x4b, 0x07, 0xa7,
+ 0xcb, 0xfd, 0x6c, 0x10, 0x13, 0x36, 0xec, 0x46, 0x73, 0x3b, 0xec, 0x84, 0xc3, 0x8f, 0x7a, 0x53, 0xf1, 0x9f,
+ 0x05, 0x92, 0xad, 0x11, 0xad, 0xe2, 0x5f, 0xe6, 0xf7, 0xc1, 0xbe, 0x50, 0x18, 0xf0, 0x25, 0xe0, 0x07, 0x51,
+ 0x7f, 0x5d, 0x42, 0xb9, 0xa8, 0x55, 0x9d, 0x01, 0x32, 0x70, 0xdb, 0x77, 0x7f, 0xe8, 0xa3, 0x94, 0xe8, 0x17,
+ 0x03, 0x1f, 0x22, 0x5c, 0x21, 0x20, 0x35, 0xea, 0x7b, 0xb5, 0xcb, 0xc7, 0x59, 0x8e, 0x08, 0x55, 0x91, 0xdd,
+ 0x35, 0x58, 0xc9, 0x37, 0xa5, 0xfa, 0xcb, 0x7d, 0x3d, 0x74, 0x45, 0xae, 0xe8, 0x1c, 0xd4, 0xe4, 0x96, 0x11,
+ 0x7c, 0x30, 0x27, 0xd7, 0x3a, 0xc2, 0xfb, 0x0c, 0x03, 0xa7, 0xe3, 0xaa, 0xdf, 0xa2, 0x81, 0xbe, 0xae, 0x12,
+ 0x3d, 0x0d, 0x23, 0x58, 0x3a, 0x7c, 0x8a, 0x33, 0x0a, 0xc9, 0xdd, 0x86, 0x8d, 0xaa, 0xf8, 0x76, 0x78, 0x89,
+ 0x33, 0xe0, 0xd7, 0x53, 0xce, 0x36, 0x21, 0x86, 0xf9, 0xe2, 0x6d, 0xda, 0x63, 0xf5, 0x18, 0xfe, 0xff, 0x66,
+ 0x19, 0x5e, 0x46, 0x4c, 0x20, 0xcb, 0x85, 0xf8, 0x93, 0x9e, 0xf5, 0xb3, 0x1a, 0xe3, 0x77, 0x4e, 0xc0, 0xeb,
+ 0xfb, 0xe3, 0xb3, 0xed, 0x23, 0x39, 0xfd, 0xfd, 0x5d, 0xa0, 0x4c, 0x3c, 0xdb, 0x62, 0x1e, 0xf8, 0xbb, 0xd6,
+ 0x43, 0x4a, 0x2c, 0x4c, 0x7c, 0xea, 0x5f, 0xc4, 0xf3, 0x82, 0x3c, 0x22, 0x02, 0x79, 0xd2, 0xb9, 0xa9, 0xaa,
+ 0x4f, 0x9e, 0xdd, 0x0e, 0x4d, 0xb4, 0xdd, 0x09, 0xde, 0x71, 0xd8, 0x9b, 0xdf, 0xd1, 0x0f, 0xeb, 0x34, 0x50,
+ 0xea, 0xc6, 0x31, 0xe7, 0xb2, 0x2b, 0x98, 0x95, 0x0a, 0x3c, 0x39, 0xc2, 0xf2, 0x7a, 0x56, 0x64, 0xfb, 0x15,
+ 0x07, 0x34, 0x3b, 0x93, 0x51, 0xd9, 0x34, 0xad, 0xc5, 0x90, 0x2b, 0x72, 0x39, 0x37, 0x1c, 0xe3, 0xb1, 0x3d,
+ 0x37, 0x0b, 0x5c, 0xa7, 0x78, 0xab, 0x32, 0x0b, 0xf5, 0xb5, 0x99, 0x1b, 0xb6, 0xee, 0x39, 0xb8, 0x2a, 0x12,
+ 0x30, 0x1c, 0xcb, 0xa7, 0xc3, 0x9b, 0xc4, 0xd8, 0x6f, 0x47, 0xea, 0x55, 0xac, 0x59, 0x45, 0x3c, 0x9f, 0xfc,
+ 0xea, 0x7a, 0x0e, 0xa6, 0x59, 0xdd, 0xb7, 0xce, 0x88, 0x77, 0x51, 0xd1, 0x1d, 0xd7, 0xda, 0x7d, 0x62, 0x7d,
+ 0x28, 0xa3, 0x90, 0x13, 0x45, 0x2e, 0x21, 0xc9, 0x6c, 0x12, 0xf3, 0xc9, 0x4e, 0xf9, 0x19, 0x2c, 0x82, 0xf3,
+ 0x72, 0xa7, 0xd6, 0xa5, 0x0b, 0x5d, 0xcf, 0xd9, 0x24, 0x41, 0x1e, 0xf8, 0xac, 0x9f, 0x93, 0xd1, 0xae, 0xc3,
+ 0x1c, 0xb2, 0xde, 0x5a, 0x1c, 0xc1, 0x0e, 0x37, 0x3c, 0x14, 0xca, 0xfe, 0x49, 0x50, 0xd9, 0x98, 0x26, 0x99,
+ 0x81, 0x87, 0xa6, 0x85, 0x09, 0xf0, 0x7c, 0x31, 0xab, 0xbe, 0xd8, 0x7b, 0xb6, 0xa1, 0x6b, 0xef, 0x97, 0x8a,
+ 0xd3, 0xfe, 0xfb, 0x94, 0xc4, 0x05, 0x95, 0x13, 0x6f, 0xfa, 0x13, 0xb7, 0x96, 0x8e, 0x0c, 0xb4, 0xd1, 0xf2,
+ 0x55, 0x08, 0x32, 0x88, 0xb1, 0x5e, 0x53, 0xa4, 0x50, 0xeb, 0x3a, 0x07, 0x7a, 0xc7, 0x47, 0x53, 0xc4, 0xac,
+ 0x3a, 0x34, 0xd1, 0x71, 0x17, 0x9f, 0xc0, 0x33, 0xed, 0xde, 0x4d, 0x8e, 0x1d, 0xfa, 0x63, 0xc2, 0xc5, 0x30,
+ 0x05, 0xff
+};
+
+// context = smart_lighting
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x65, 0x6e, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x98, 0x1b, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c,
+ 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20,
+ 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67,
+ 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x61,
+ 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x74, 0x6f,
+ 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
+ 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69,
+ 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74,
+ 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c,
+ 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x74, 0x6f,
+ 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d,
+ 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
+ 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
+ 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63,
+ 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68,
+ 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d,
+ 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67,
+ 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
+ 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f,
+ 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x5b, 0x74, 0x75, 0x72, 0x6e, 0x2c, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
+ 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f, 0x6c, 0x6f, 0x72,
+ 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2c, 0x20,
+ 0x73, 0x65, 0x74, 0x2c, 0x20, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x5b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69,
+ 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x74, 0x6f, 0x20, 0x24, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x63, 0x6f,
+ 0x6c, 0x6f, 0x72, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74,
+ 0x53, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
+ 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
+ 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x61, 0x6c,
+ 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x24, 0x73, 0x74,
+ 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
+ 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20,
+ 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20,
+ 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68,
+ 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x5b, 0x73,
+ 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x24, 0x73, 0x74, 0x61, 0x74,
+ 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67,
+ 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69,
+ 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
+ 0x20, 0x22, 0x5b, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x2c, 0x20, 0x74, 0x75, 0x72, 0x6e, 0x5d, 0x20, 0x28,
+ 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
+ 0x73, 0x5d, 0x20, 0x5b, 0x69, 0x6e, 0x2c, 0x20, 0x61, 0x74, 0x5d, 0x20, 0x74, 0x68, 0x65, 0x20, 0x24, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x24,
+ 0x73, 0x74, 0x61, 0x74, 0x65, 0x3a, 0x73, 0x74, 0x61, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x63,
+ 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66,
+ 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66,
+ 0x66, 0x20, 0x28, 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74,
+ 0x73, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28,
+ 0x61, 0x6c, 0x6c, 0x2c, 0x20, 0x74, 0x68, 0x65, 0x29, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x20, 0x6f,
+ 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
+ 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c,
+ 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20,
+ 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x6c, 0x69, 0x67, 0x68,
+ 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x29, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x6f, 0x66, 0x66, 0x20, 0x28, 0x74,
+ 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73,
+ 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x24,
+ 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20, 0x28, 0x74, 0x68,
+ 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5d,
+ 0x20, 0x6f, 0x66, 0x66, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65,
+ 0x29, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x68, 0x75, 0x74, 0x20,
+ 0x28, 0x74, 0x68, 0x65, 0x29, 0x20, 0x5b, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2c, 0x20, 0x6c, 0x69, 0x67, 0x68,
+ 0x74, 0x73, 0x5d, 0x20, 0x5b, 0x61, 0x74, 0x2c, 0x20, 0x69, 0x6e, 0x5d, 0x20, 0x28, 0x74, 0x68, 0x65, 0x29,
+ 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x20, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x62, 0x6c, 0x75, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x72, 0x65,
+ 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x72, 0x61, 0x6e, 0x67,
+ 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x69, 0x6e, 0x6b, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x72, 0x65, 0x64, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0x77, 0x68, 0x69, 0x74, 0x65, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d,
+ 0x20, 0x22, 0x79, 0x65, 0x6c, 0x6c, 0x6f, 0x77, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x61, 0x74,
+ 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x66, 0x66, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62,
+ 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x62, 0x65, 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22,
+ 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x68,
+ 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6b,
+ 0x69, 0x74, 0x63, 0x68, 0x65, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6c,
+ 0x69, 0x76, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x2d, 0x20, 0x22, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x0a, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x1d, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x37, 0x00,
+ 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00,
+ 0x57, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00,
+ 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00,
+ 0x8d, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x9d, 0x00, 0x00, 0x00, 0xa1, 0x00,
+ 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x00, 0x00,
+ 0x61, 0x6c, 0x6c, 0x00, 0x61, 0x74, 0x00, 0x62, 0x61, 0x74, 0x68, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x65,
+ 0x64, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x62, 0x6c, 0x75, 0x65, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x00,
+ 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x74, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x67, 0x72, 0x65, 0x65, 0x6e,
+ 0x00, 0x68, 0x61, 0x6c, 0x6c, 0x77, 0x61, 0x79, 0x00, 0x69, 0x6e, 0x00, 0x6b, 0x69, 0x74, 0x63, 0x68, 0x65,
+ 0x6e, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x00, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x00, 0x6c, 0x69, 0x76,
+ 0x69, 0x6e, 0x67, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x00, 0x6d, 0x61, 0x6b, 0x65, 0x00, 0x6f, 0x66, 0x66, 0x00,
+ 0x6f, 0x6e, 0x00, 0x6f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x70, 0x61, 0x6e, 0x74, 0x72, 0x79, 0x00, 0x70,
+ 0x69, 0x6e, 0x6b, 0x00, 0x70, 0x75, 0x72, 0x70, 0x6c, 0x65, 0x00, 0x72, 0x65, 0x64, 0x00, 0x73, 0x65, 0x74,
+ 0x00, 0x73, 0x68, 0x75, 0x74, 0x00, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x00, 0x74, 0x68, 0x65, 0x00, 0x74,
+ 0x6f, 0x00, 0x74, 0x75, 0x72, 0x6e, 0x00, 0x77, 0x68, 0x69, 0x74, 0x65, 0x00, 0x79, 0x65, 0x6c, 0x6c, 0x6f,
+ 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
+ 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
+ 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x1d, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x25, 0x00,
+ 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x1d, 0x00,
+ 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
+ 0x30, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x44, 0x00,
+ 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00,
+ 0x52, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x66, 0x00,
+ 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00,
+ 0x75, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x7d, 0x00,
+ 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00,
+ 0x04, 0x15, 0x02, 0x1f, 0x07, 0x02, 0x20, 0x1c, 0x22, 0x16, 0x07, 0x0b, 0x09, 0x1c, 0x22, 0x16, 0x07, 0x15,
+ 0x22, 0x08, 0x0d, 0x17, 0x13, 0x14, 0x15, 0x01, 0x26, 0x03, 0x1f, 0x14, 0x03, 0x15, 0x0c, 0x14, 0x04, 0x15,
+ 0x0c, 0x0f, 0x1c, 0x12, 0x17, 0x10, 0x04, 0x15, 0x24, 0x0d, 0x11, 0x17, 0x14, 0x11, 0x08, 0x03, 0x17, 0x15,
+ 0x06, 0x1f, 0x1d, 0x15, 0x06, 0x1f, 0x15, 0x11, 0x23, 0x11, 0x18, 0x1c, 0x22, 0x16, 0x16, 0x0d, 0x14, 0x04,
+ 0x0e, 0x01, 0x17, 0x04, 0x17, 0x04, 0x1c, 0x03, 0x17, 0x13, 0x04, 0x1c, 0x11, 0x17, 0x13, 0x1b, 0x02, 0x17,
+ 0x1f, 0x1c, 0x12, 0x1b, 0x11, 0x18, 0x14, 0x1b, 0x0c, 0x1b, 0x03, 0x15, 0x1c, 0x0b, 0x09, 0x1d, 0x0b, 0x1f,
+ 0x1e, 0x03, 0x1f, 0x1d, 0x24, 0x11, 0x08, 0x0a, 0x03, 0x0a, 0x12, 0x1f, 0x03, 0x1f, 0x11, 0x1f, 0x22, 0x1f,
+ 0x0c, 0x17, 0x10, 0x24, 0x06, 0x1f, 0x24, 0x06, 0x1f, 0x25, 0x0b, 0x15, 0x19, 0x00, 0x0f, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x12, 0x00,
+ 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x22, 0x00,
+ 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1d, 0x00,
+ 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x10, 0x00,
+ 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
+ 0x07, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x0d, 0x00,
+ 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00,
+ 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
+ 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00,
+ 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73, 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x0f, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x18, 0x00,
+ 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00,
+ 0x1d, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x21, 0x00,
+ 0x00, 0x00, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x73,
+ 0x74, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00,
+ 0x31, 0x00, 0x00, 0x00, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x63, 0x68,
+ 0x61, 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x00, 0x63, 0x68, 0x61,
+ 0x6e, 0x67, 0x65, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x4f, 0x66, 0x66, 0x00, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x04, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x64, 0x0a,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00,
+ 0x44, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x3c, 0x02,
+ 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x58, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0xb8, 0x00,
+ 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00,
+ 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x90, 0x01,
+ 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x34, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x34, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x5c, 0x01, 0x00, 0x00, 0x48, 0x01, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x01, 0x00, 0x00, 0x6c, 0x01, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x01, 0x00, 0x00, 0x90, 0x01, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0xe0, 0x01, 0x00, 0x00,
+ 0xa4, 0x01, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd0, 0x01,
+ 0x00, 0x00, 0xbc, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0xa4, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00,
+ 0x2c, 0x02, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x1c, 0x02, 0x00, 0x00, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xf0, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x54, 0x02, 0x00, 0x00, 0xc8, 0x02, 0x00, 0x00, 0x3c, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x6c, 0x02, 0x00, 0x00, 0xa4, 0x02, 0x00, 0x00, 0x54, 0x02, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x02, 0x00, 0x00, 0x6c, 0x02,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x02, 0x00, 0x00,
+ 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x02,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x02, 0x00, 0x00,
+ 0xa4, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x02,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00,
+ 0xc8, 0x02, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xf4, 0x02,
+ 0x00, 0x00, 0x18, 0x03, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0xf4, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00,
+ 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00,
+ 0xf8, 0x05, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x4c, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x60, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x88, 0x03, 0x00, 0x00, 0x74, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x98, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xc0, 0x03, 0x00, 0x00, 0xac, 0x03, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0xd0, 0x03,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00,
+ 0x38, 0x04, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x28, 0x04, 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe8, 0x03, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x4c, 0x04, 0x00, 0x00, 0x38, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd0, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00,
+ 0x74, 0x04, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x04,
+ 0x00, 0x00, 0x8c, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xb4, 0x04, 0x00, 0x00, 0xa0, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xc8, 0x04, 0x00, 0x00, 0xb4, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x74, 0x04, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0xd8, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0xec, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x04, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x10, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x38, 0x05, 0x00, 0x00, 0x24, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x50, 0x05, 0x00, 0x00, 0x74, 0x05, 0x00, 0x00, 0x38, 0x05,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x05, 0x00, 0x00,
+ 0x50, 0x05, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x05,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0xd4, 0x05,
+ 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xb0, 0x05, 0x00, 0x00, 0x9c, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xc4, 0x05, 0x00, 0x00, 0xb0, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x84, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xe8, 0x05, 0x00, 0x00, 0xd4, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x28, 0x03, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x28, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x10, 0x06,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00,
+ 0x28, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x06,
+ 0x00, 0x00, 0x3c, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x64, 0x06, 0x00, 0x00, 0x50, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x10, 0x06, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x88, 0x06, 0x00, 0x00, 0x74, 0x06, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x9c, 0x06, 0x00, 0x00, 0x88, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xf8, 0x05, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0xac, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xec, 0x06, 0x00, 0x00, 0x10, 0x07, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0xec, 0x06,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd4, 0x06, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0xc0, 0x08, 0x00, 0x00,
+ 0xf8, 0x08, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x20, 0x07,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x05, 0x00, 0x00, 0x00, 0x6c, 0x07, 0x00, 0x00,
+ 0x90, 0x07, 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x48, 0x07,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x80, 0x07, 0x00, 0x00,
+ 0x6c, 0x07, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0xdc, 0x07,
+ 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xcc, 0x07, 0x00, 0x00, 0xb8, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0xa0, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0xf0, 0x07, 0x00, 0x00, 0xdc, 0x07, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x2c, 0x08, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x08, 0x00, 0x00, 0x08, 0x08, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x50, 0x08, 0x00, 0x00, 0x3c, 0x08, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x07, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x74, 0x08, 0x00, 0x00, 0x60, 0x08, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x08, 0x00, 0x00, 0xb0, 0x08, 0x00, 0x00, 0x74, 0x08,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x08, 0x00, 0x00,
+ 0x8c, 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x08,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
+ 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xd4, 0x08, 0x00, 0x00, 0xc0, 0x08,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe8, 0x08, 0x00, 0x00,
+ 0xd4, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x09, 0x00, 0x00,
+ 0xf8, 0x08, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00,
+ 0x6c, 0x09, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x34, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x5c, 0x09, 0x00, 0x00, 0x48, 0x09, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x09, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x6c, 0x09, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00, 0x94, 0x09, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xbc, 0x09, 0x00, 0x00, 0xa8, 0x09, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xe0, 0x09, 0x00, 0x00, 0xcc, 0x09, 0x00, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xf4, 0x09, 0x00, 0x00, 0xe0, 0x09,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x07, 0x00, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x18, 0x0a, 0x00, 0x00, 0x04, 0x0a,
+ 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00,
+ 0x18, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x40, 0x0a,
+ 0x00, 0x00, 0x2c, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00,
+ 0x54, 0x0a, 0x00, 0x00, 0x40, 0x0a, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x06, 0x00, 0x00, 0x00,
+ 0x8c, 0x0a, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0xb0, 0x0d,
+ 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x05, 0x00, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0xd4, 0x0a, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x80, 0x0b,
+ 0x00, 0x00, 0xa4, 0x0b, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xc4, 0x0a, 0x00, 0x00, 0xb0, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x0b, 0x00, 0x00, 0xfc, 0x0a, 0x00, 0x00, 0x0c, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x34, 0x0b, 0x00, 0x00, 0x20, 0x0b, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x70, 0x0b, 0x00, 0x00,
+ 0x34, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x60, 0x0b,
+ 0x00, 0x00, 0x4c, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x34, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x94, 0x0b, 0x00, 0x00,
+ 0x80, 0x0b, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x0a,
+ 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00,
+ 0xa4, 0x0b, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xd0, 0x0b,
+ 0x00, 0x00, 0xf4, 0x0b, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xe4, 0x0b, 0x00, 0x00, 0xd0, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x0b, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x2c, 0x0c, 0x00, 0x00, 0x18, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x50, 0x0c, 0x00, 0x00, 0x3c, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x78, 0x0c, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x60, 0x0c, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0xb4, 0x0c, 0x00, 0x00,
+ 0x78, 0x0c, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa4, 0x0c,
+ 0x00, 0x00, 0x90, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x78, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0c,
+ 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00,
+ 0x3c, 0x0d, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0xdc, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00, 0x2c, 0x0d, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x1c, 0x0d, 0x00, 0x00, 0x08, 0x0d, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x0c, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0x0c, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x54, 0x0d, 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x3c, 0x0d,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00,
+ 0x54, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x7c, 0x0d,
+ 0x00, 0x00, 0x68, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x3c, 0x0d, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0xa0, 0x0d,
+ 0x00, 0x00, 0x8c, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x64, 0x0a, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0xc8, 0x0d,
+ 0x00, 0x00, 0xec, 0x0d, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xdc, 0x0d, 0x00, 0x00, 0xc8, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x64, 0x0a, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0xfc, 0x0d, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x28, 0x0e, 0x00, 0x00, 0x14, 0x0e, 0x00, 0x00, 0x09, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x64, 0x0e, 0x00, 0x00,
+ 0x28, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x54, 0x0e,
+ 0x00, 0x00, 0x40, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x28, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x0d,
+ 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00,
+ 0xc4, 0x0e, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
+ 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x8c, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xb4, 0x0e, 0x00, 0x00, 0xa0, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x0e, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0xd8, 0x0e, 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_ENGLISH__
#if defined(__PV_LANGUAGE_SPANISH__)
// wake-word = hola computadora
static const uint8_t KEYWORD_ARRAY[] = {
- 0xd4, 0xbc, 0x3c, 0xc6, 0x53, 0xe3, 0xa4, 0xc2, 0x2d, 0xa6, 0x98, 0x5b, 0xeb, 0x97, 0xc3, 0xff, 0xec, 0x5f,
- 0xec, 0x07, 0x3a, 0x72, 0x68, 0x85, 0x7d, 0x38, 0xa6, 0x67, 0x39, 0x16, 0x8d, 0xf4, 0x30, 0x8e, 0x79, 0x02,
- 0x5b, 0x65, 0xbc, 0xb7, 0x93, 0x5d, 0x90, 0x8c, 0x4c, 0x91, 0xac, 0x51, 0x10, 0xc5, 0xf7, 0x5a, 0xd6, 0x69,
- 0x1f, 0x8d, 0xb1, 0x2a, 0xbc, 0xfc, 0x71, 0xb7, 0x1e, 0x94, 0xab, 0x26, 0xb7, 0x97, 0x5c, 0x70, 0x49, 0x1e,
- 0x0f, 0x33, 0x36, 0xa0, 0xfb, 0x84, 0xbb, 0x56, 0x3d, 0xb7, 0x22, 0xc9, 0x6b, 0x1b, 0xf8, 0x33, 0x51, 0xd9,
- 0x83, 0xd7, 0x2d, 0x44, 0x2f, 0x89, 0x07, 0x1f, 0x41, 0x75, 0xb1, 0xbc, 0xde, 0x21, 0xa1, 0xac, 0x8b, 0x40,
- 0xf5, 0x56, 0xa0, 0xe7, 0xab, 0x98, 0xf3, 0x03, 0x98, 0x27, 0x10, 0xd3, 0xb2, 0x6f, 0xa0, 0x27, 0x5c, 0x3e,
- 0xa8, 0x08, 0x79, 0xea, 0xf4, 0xce, 0x73, 0xf8, 0x59, 0xc9, 0xf5, 0xf3, 0xf0, 0x60, 0x2d, 0xcc, 0xc1, 0x37,
- 0x12, 0x97, 0x64, 0x0d, 0xa8, 0xf3, 0x7b, 0xcb, 0x76, 0xf0, 0x9e, 0x86, 0xe5, 0x06, 0x15, 0xd7, 0x2a, 0xeb,
- 0xd4, 0x0a, 0xd7, 0x29, 0xde, 0x06, 0x55, 0xdc, 0x7d, 0xd0, 0xd4, 0xc1, 0x44, 0x25, 0x53, 0x30, 0xd7, 0x17,
- 0xe9, 0x13, 0x2a, 0x52, 0x66, 0x6c, 0x1a, 0x8a, 0x66, 0xfd, 0xa9, 0x6d, 0x49, 0x08, 0xf0, 0x10, 0x49, 0x76,
- 0xc5, 0xd8, 0xce, 0xa9, 0x3c, 0xe5, 0xd6, 0xa5, 0xd3, 0xc3, 0x0d, 0x65, 0xa2, 0x3a, 0x1c, 0xf2, 0x37, 0xa1,
- 0xab, 0x2d, 0x26, 0x31, 0xb0, 0x4d, 0xe3, 0xd1, 0xd0, 0xfd, 0x88, 0xf5, 0x7e, 0x1a, 0xd7, 0x15, 0xf3, 0x3b,
- 0xb7, 0xdd, 0xb8, 0x4c, 0x86, 0x99, 0xf0, 0xf3, 0xb1, 0x26, 0x9d, 0x24, 0xf8, 0xd8, 0xdb, 0x4b, 0x5b, 0xc3,
- 0x91, 0x05, 0x27, 0xb3, 0x21, 0x48, 0x9c, 0x8a, 0x1b, 0x95, 0xce, 0xee, 0x7b, 0x54, 0xa2, 0xc4, 0xe8, 0x44,
- 0xe9, 0x1f, 0x1a, 0xa9, 0xff, 0x8e, 0xd1, 0x06, 0xf4, 0xab, 0x8f, 0x4f, 0x6a, 0xec, 0x47, 0xf5, 0x65, 0x7f,
- 0x19, 0x98, 0x6b, 0xbf, 0xfe, 0x51, 0x0b, 0x04, 0x38, 0xb7, 0x76, 0x63, 0x87, 0xb0, 0x90, 0x53, 0x7b, 0x49,
- 0x37, 0x25, 0xe1, 0x2a, 0x67, 0x4b, 0xcd, 0x5d, 0x71, 0x99, 0x1e, 0x50, 0xdf, 0xc9, 0x76, 0xd2, 0x84, 0xda,
- 0x0c, 0xed, 0x88, 0x1d, 0x10, 0xf3, 0x10, 0xcd, 0xfa, 0x73, 0x8d, 0x0c, 0xaa, 0x30, 0xc0, 0xd5, 0x10, 0xb6,
- 0x9d, 0xdb, 0x32, 0x41, 0x6d, 0x71, 0x9e, 0x70, 0xbb, 0xe4, 0x61, 0x87, 0xb0, 0x3a, 0xa5, 0x8b, 0x61, 0xe4,
- 0x18, 0x9a, 0x14, 0x12, 0x77, 0x52, 0x05, 0xbd, 0xd1, 0x0a, 0x75, 0x52, 0x7b, 0xe3, 0xf8, 0xca, 0xee, 0xe0,
- 0xcc, 0xb4, 0xe3, 0x17, 0xec, 0x4b, 0x35, 0x0b, 0x1b, 0x2e, 0x35, 0x83, 0x72, 0x48, 0x8f, 0x7e, 0x2a, 0x2a,
- 0x72, 0x19, 0x71, 0x1b, 0x42, 0x4e, 0x05, 0x31, 0x5d, 0x04, 0xd4, 0xb8, 0xb0, 0x09, 0xd9, 0x6d, 0x6a, 0x85,
- 0xa0, 0xfc, 0xe8, 0x4a, 0x96, 0x4d, 0xed, 0x7e, 0xd7, 0x43, 0x61, 0x17, 0x92, 0x80, 0xa1, 0x94, 0x5b, 0x5b,
- 0xd1, 0x21, 0xe2, 0xa8, 0x7e, 0xd8, 0x55, 0x74, 0x31, 0x65, 0xc8, 0xab, 0x11, 0x43, 0x33, 0xdf, 0xa2, 0x9d,
- 0x3d, 0x39, 0xdf, 0x22, 0x15, 0xac, 0x8a, 0x4b, 0x15, 0xcc, 0xa0, 0x24, 0x94, 0x6d, 0x41, 0x68, 0x18, 0xe2,
- 0xc9, 0x68, 0x13, 0xf3, 0xfa, 0x53, 0xc3, 0xe9, 0xa4, 0x98, 0x45, 0x68, 0x77, 0x7f, 0x60, 0x4a, 0x81, 0x98,
- 0x8b, 0xae, 0xe2, 0x86, 0x60, 0x9d, 0xce, 0x79, 0x9e, 0x1c, 0xc4, 0xa4, 0xc3, 0x7f, 0x7f, 0x10, 0x1b, 0x0a,
- 0x30, 0x6b, 0x6c, 0x50, 0x9a, 0x12, 0xb2, 0x46, 0x75, 0xc5, 0xb3, 0xb8, 0x7b, 0x89, 0x6e, 0xe4, 0xf5, 0xa7,
- 0x52, 0x39, 0x25, 0x48, 0xc2, 0xea, 0x6a, 0xa8, 0x25, 0xe2, 0xe8, 0xbd, 0xf1, 0xe5, 0x1c, 0x4e, 0xae, 0x5f,
- 0xac, 0x26, 0xe9, 0x95, 0xd3, 0x58, 0x3f, 0x8a, 0x67, 0x62, 0x85, 0xa6, 0xb0, 0x1d, 0xa9, 0xe7, 0x31, 0xf5,
- 0x5d, 0x31, 0x25, 0x88, 0x40, 0x7f, 0x83, 0xa6, 0x56, 0x6f, 0xbd, 0x2d, 0x87, 0xd9, 0x97, 0x81, 0x43, 0xc0,
- 0xa0, 0xa6, 0x6b, 0xfe, 0xae, 0x98, 0x7a, 0xc9, 0x8a, 0x00, 0x51, 0xff, 0x8a, 0x47, 0x33, 0x0b, 0x88, 0x95,
- 0xff, 0xa8, 0x11, 0xee, 0x4c, 0x43, 0xf4, 0x89, 0xdf, 0x4d, 0xf5, 0x07, 0xbb, 0x7e, 0x61, 0xaa, 0xcf, 0xd2,
- 0x85, 0xf6, 0xba, 0x20, 0x91, 0xc6, 0x3f, 0x3f, 0xc4, 0xb1, 0xf6, 0xb8, 0x03, 0x54, 0x68, 0x65, 0xef, 0x30,
- 0x59, 0xb3, 0xac, 0xb2, 0xe8, 0x15, 0x43, 0x09, 0x45, 0xc7, 0x07, 0x46, 0x35, 0x17, 0x9a, 0x75, 0x53, 0x5e,
- 0x98, 0x69, 0xf6, 0xf2
+ 0x1c, 0xce, 0x7c, 0xd9, 0xc2, 0x23, 0x16, 0x70, 0x85, 0xf7, 0x93, 0x1a, 0x59, 0xd0, 0x62, 0xce, 0xac, 0x16,
+ 0xd1, 0x3e, 0x05, 0x02, 0x6d, 0x26, 0x65, 0x81, 0xc9, 0xd5, 0xae, 0x93, 0x30, 0x29, 0x02, 0x0a, 0x0d, 0xc3,
+ 0xc9, 0xf7, 0x80, 0xfc, 0x2a, 0x2c, 0x76, 0x68, 0xb3, 0x78, 0x70, 0x64, 0xf6, 0xbb, 0xbe, 0x84, 0xa3, 0xae,
+ 0x4a, 0x9b, 0x96, 0x84, 0x8e, 0x5b, 0xc9, 0x8d, 0x80, 0x6a, 0xd9, 0xf8, 0x20, 0x9a, 0xcf, 0x55, 0x23, 0x33,
+ 0x7c, 0x6a, 0x99, 0x16, 0x0f, 0x04, 0x87, 0x41, 0xef, 0x3f, 0x0f, 0x20, 0xe0, 0xe6, 0xdd, 0x1f, 0x62, 0x0a,
+ 0x0c, 0x13, 0x0d, 0x59, 0x52, 0x1d, 0x6d, 0x59, 0x95, 0xec, 0xf8, 0xe1, 0x08, 0x17, 0x5a, 0xaf, 0x87, 0x6e,
+ 0xdf, 0x24, 0x2f, 0x39, 0x8e, 0xcc, 0x90, 0xbd, 0xd3, 0x3d, 0x7d, 0xba, 0x07, 0xcd, 0xe3, 0x0a, 0xf3, 0x96,
+ 0x31, 0x13, 0x3d, 0xa1, 0x0b, 0x00, 0xb2, 0x54, 0x41, 0xbe, 0x1b, 0x83, 0x5d, 0xbc, 0x44, 0x7c, 0x36, 0x69,
+ 0xd1, 0x87, 0x24, 0xf8, 0x5c, 0x72, 0xe8, 0x65, 0x65, 0x49, 0xae, 0xee, 0xe2, 0xf9, 0x13, 0x40, 0x18, 0x4a,
+ 0xaf, 0x4e, 0xf8, 0xe4, 0x65, 0xe1, 0x4e, 0x5a, 0xb9, 0xcc, 0x32, 0xab, 0x37, 0xfe, 0x82, 0x54, 0xec, 0x7c,
+ 0xb7, 0x1d, 0x09, 0x66, 0x59, 0xd5, 0x47, 0x3f, 0x71, 0xa2, 0xb8, 0x74, 0xe6, 0x41, 0x8b, 0x63, 0x0e, 0xcc,
+ 0xd7, 0xc8, 0x56, 0xa5, 0xe1, 0x06, 0x81, 0x95, 0x45, 0x5c, 0x20, 0x82, 0xdb, 0xe2, 0x5a, 0xba, 0xc6, 0x16,
+ 0x4f, 0x08, 0x51, 0xb5, 0xcd, 0x0c, 0x2f, 0x7c, 0x96, 0xff, 0xfc, 0x5e, 0x21, 0xc0, 0x14, 0xf0, 0x50, 0xa6,
+ 0x7a, 0x09, 0xbb, 0xcf, 0x4b, 0x14, 0x39, 0xc0, 0x03, 0xd3, 0x2c, 0x6a, 0x45, 0xfe, 0xf8, 0xea, 0x77, 0xd4,
+ 0x2b, 0xfb, 0x24, 0x58, 0xd1, 0x73, 0x93, 0x13, 0x3a, 0x32, 0x16, 0x3a, 0xb5, 0x64, 0x97, 0x6f, 0xc7, 0xa6,
+ 0x71, 0xee, 0x47, 0x5a, 0xeb, 0x66, 0xad, 0xb3, 0xf5, 0x1f, 0x0c, 0x14, 0x3a, 0xfc, 0xb4, 0x53, 0xc2, 0xaa,
+ 0xf6, 0x77, 0x1d, 0x0c, 0x6a, 0x6c, 0x78, 0xb8, 0xb5, 0x7d, 0xd2, 0x8b, 0x97, 0x04, 0xbe, 0x0c, 0xa9, 0xa8,
+ 0x6c, 0x48, 0x6b, 0x92, 0x14, 0x44, 0x3c, 0x6e, 0x64, 0x95, 0x0f, 0xf6, 0x0f, 0x5d, 0x74, 0xf8, 0xa6, 0xc4,
+ 0xf4, 0x26, 0x04, 0x38, 0xb5, 0x79, 0x4a, 0xe5, 0x47, 0xb2, 0xc6, 0x5a, 0x82, 0xd6, 0xfd, 0x19, 0xfd, 0xd2,
+ 0xef, 0x7b, 0x29, 0xc1, 0x2c, 0xc7, 0x03, 0xff, 0xa1, 0xfd, 0xf5, 0x91, 0x87, 0x4f, 0x8a, 0x68, 0x40, 0xdd,
+ 0xb4, 0x6d, 0x64, 0xb4, 0x8b, 0x0c, 0x87, 0x54, 0x68, 0x1b, 0xc3, 0x12, 0x52, 0xb9, 0x1f, 0x0d, 0x0b, 0x4b,
+ 0x5a, 0x88, 0x79, 0x6e, 0xdc, 0x1d, 0x45, 0x37, 0xca, 0x44, 0x18, 0xb6, 0x9f, 0x2e, 0xdc, 0x24, 0xcc, 0xb2,
+ 0x20, 0x66, 0x4e, 0x88, 0x4f, 0x3c, 0x1e, 0x52, 0x02, 0x30, 0x58, 0xb7, 0x7b, 0xaa, 0xf4, 0x95, 0xee, 0xbe,
+ 0xbc, 0xbf, 0x2a, 0x8b, 0xe8, 0xff, 0x14, 0xb5, 0xad, 0xc2, 0xfc, 0x1d, 0xef, 0xc8, 0x56, 0x4f, 0xb5, 0xa5,
+ 0x6e, 0xa4, 0x47, 0x27, 0xaa, 0x12, 0xf6, 0x8d, 0x85, 0xc9, 0xb0, 0x16, 0xbb, 0xed, 0x63, 0x64, 0xa3, 0x4d,
+ 0x71, 0x03, 0x2e, 0xa8, 0xf3, 0xdf, 0x1e, 0x03, 0x45, 0x96, 0xae, 0x71, 0xad, 0x0e, 0xf4, 0x1a, 0xec, 0x59,
+ 0xc5, 0x35, 0x7f, 0x4f, 0xbb, 0x30, 0x36, 0xff, 0x81, 0x6f, 0x17, 0xe6, 0xba, 0x1a, 0xb6, 0xb0, 0xfa, 0x52,
+ 0x45, 0xec, 0xd8, 0x8e, 0x2e, 0xef, 0x4c, 0x56, 0xba, 0x3d, 0xa8, 0x84, 0x57, 0xa1, 0x81, 0x08, 0xe0, 0x80,
+ 0x75, 0x01, 0xf3, 0x09, 0x93, 0x14, 0xd4, 0x19, 0xc4, 0xe9, 0x1c, 0xf8, 0x0e, 0xa9, 0x43, 0x02, 0xa3, 0x4d,
+ 0x21, 0xa0, 0x37, 0x35, 0x76, 0x49, 0xb5, 0xf0, 0x2b, 0x7d, 0xd8, 0x65, 0xee, 0x6a, 0xb6, 0x0a, 0x64, 0xe3,
+ 0x16, 0x1c, 0xfa, 0x49, 0x29, 0x6f, 0x4a, 0x0f, 0xab, 0x2c, 0xbc, 0x33, 0x95, 0x6d, 0xcf, 0xc7, 0x0a, 0x7c,
+ 0x4a, 0x89, 0xbc, 0x2d, 0x53, 0x06, 0x84, 0xac, 0x7a, 0x29, 0x8f, 0xea, 0xed, 0x17, 0xbb, 0x11, 0xc3, 0x73,
+ 0x68, 0x4f, 0x42, 0xe7, 0x3a, 0xf6, 0x73, 0x16, 0x00, 0xa8, 0xb9, 0x03, 0x65, 0xb1, 0xb6, 0x37, 0x22, 0x0c,
+ 0xff, 0x54, 0x8a, 0xe5, 0xf4, 0xd0, 0xe9, 0xa9, 0x85, 0x4d, 0x17, 0x6c, 0x21, 0xad, 0x04, 0x72, 0x34, 0x11,
+ 0xfc, 0x35, 0x04, 0xac, 0x46, 0xc4, 0xa0, 0xe9, 0x9e, 0x1d, 0x65, 0x6f, 0xf5, 0xcb, 0xd1, 0xe3, 0x28, 0xcf,
+ 0x5b, 0xc3, 0x9f, 0xa8, 0x7a, 0x59, 0x94, 0xb6, 0xca, 0xbd, 0x32, 0x79, 0x72, 0x41, 0x57, 0xfb, 0x03, 0x21,
+ 0x4d, 0x2a, 0x6c, 0x7c
};
// context = iluminación_inteligente
@@ -986,47 +1272,144 @@ static const uint8_t CONTEXT_ARRAY[] = {
#endif // __PV_LANGUAGE_SPANISH__
+#if defined(__PV_LANGUAGE_FARSI__)
+
+// wake-word = سلام رایانه
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x59, 0x31, 0x28, 0x1e, 0xd6, 0xd3, 0x96, 0x5b, 0xcc, 0x53, 0x9b, 0x26, 0xf2, 0xdd, 0x74, 0xe3, 0xc0, 0x07,
+ 0x05, 0xb1, 0x68, 0x0c, 0x1e, 0x4c, 0x73, 0xac, 0x70, 0xe6, 0x4c, 0x78, 0x98, 0xcb, 0x8e, 0x6e, 0xe2, 0x25,
+ 0x3c, 0xfa, 0xf6, 0x01, 0x0d, 0x8a, 0x82, 0xdd, 0xa8, 0xed, 0x0f, 0x61, 0x9b, 0x18, 0x31, 0xa5, 0x64, 0x52,
+ 0x81, 0xf6, 0xce, 0xc6, 0x7b, 0xf2, 0xb6, 0x49, 0x4f, 0x59, 0x12, 0x86, 0x72, 0xe7, 0xd8, 0x6a, 0xab, 0x54,
+ 0x67, 0x47, 0xbf, 0x29, 0xa0, 0x0e, 0x93, 0x52, 0x9d, 0x76, 0x12, 0x26, 0x1a, 0xb7, 0x36, 0x62, 0xd4, 0xc8,
+ 0x4f, 0x27, 0x62, 0x2f, 0x6e, 0x4e, 0xf8, 0xf6, 0x44, 0x7c, 0x19, 0x36, 0xb0, 0x62, 0x18, 0x04, 0x30, 0xd4,
+ 0x6e, 0x3f, 0xa9, 0x4b, 0xcd, 0xaa, 0x71, 0x23, 0xef, 0xcb, 0x2a, 0x8c, 0x56, 0x6a, 0x5e, 0x18, 0x1e, 0x0a,
+ 0xb1, 0xed, 0x1c, 0x5a, 0xeb, 0x52, 0x83, 0xd6, 0xb2, 0x8c, 0x48, 0xeb, 0x5f, 0x3f, 0xfb, 0xdf, 0x37, 0x80,
+ 0xf5, 0xb0, 0xd4, 0x5b, 0x50, 0x2d, 0x68, 0x8d, 0x84, 0x25, 0xf8, 0x93, 0xa3, 0x52, 0xec, 0x3a, 0x6d, 0x36,
+ 0x2d, 0xa4, 0xb0, 0x25, 0xf2, 0x08, 0xb3, 0x23, 0x79, 0x36, 0x52, 0x04, 0x1b, 0x1d, 0x95, 0x90, 0xb0, 0x6c,
+ 0xdc, 0x5b, 0xe5, 0xb4, 0xd4, 0x42, 0x69, 0x6b, 0xda, 0xad, 0x1f, 0xca, 0xe5, 0xa0, 0xee, 0x90, 0xdb, 0xdf,
+ 0x26, 0xd6, 0x94, 0xcc, 0x13, 0xe5, 0x07, 0xfc, 0x94, 0x34, 0x7e, 0x38, 0x52, 0x67, 0xe6, 0x2a, 0x39, 0xc0,
+ 0xd3, 0x72, 0xc5, 0x2b, 0x0c, 0x6f, 0xcf, 0x57, 0x7a, 0xd3, 0x84, 0xa2, 0x17, 0xf8, 0xea, 0xf0, 0x96, 0xce,
+ 0xa4, 0xdf, 0xa9, 0xe8, 0xa9, 0x2f, 0xea, 0x20, 0xa7, 0xc0, 0xba, 0xee, 0xb0, 0x2b, 0x42, 0xf8, 0x15, 0x76,
+ 0x55, 0x4f, 0x99, 0xb7, 0x01, 0x78, 0xc8, 0xaf, 0x69, 0xa3, 0xad, 0x13, 0xf7, 0x6e, 0x1c, 0xa7, 0xe8, 0x13,
+ 0x3c, 0x3d, 0x1e, 0xd8, 0x8b, 0x8c, 0xc5, 0x34, 0x7c, 0x11, 0x33, 0xae, 0x67, 0x14, 0x64, 0x68, 0x1f, 0xf8,
+ 0x95, 0x66, 0x4a, 0x47, 0xde, 0x58, 0x3a, 0x48, 0x09, 0xad, 0x43, 0xe1, 0x59, 0x71, 0xf6, 0xf1, 0x87, 0xc4,
+ 0x45, 0xd2, 0xf7, 0x62, 0x0c, 0x33, 0xda, 0xa2, 0x77, 0x20, 0x15, 0x45, 0x58, 0x0a, 0xb0, 0x4c, 0x33, 0xe4,
+ 0x33, 0x89, 0xb7, 0x00, 0xa7, 0x94, 0x82, 0xd2, 0x47, 0xae, 0x9b, 0x60, 0xbd, 0x4f, 0xe3, 0xca, 0x7e, 0xc0,
+ 0xc4, 0xcb, 0x8a, 0x9d, 0x8c, 0x15, 0x81, 0x87, 0xd7, 0x4e, 0xec, 0x00, 0x72, 0xe4, 0x1c, 0xd0, 0xb3, 0x41,
+ 0xd2, 0x40, 0x33, 0xca, 0xbc, 0xbc, 0x80, 0x4f, 0x64, 0x3d, 0x32, 0x0f, 0x86, 0x4b, 0x3f, 0x74, 0x17, 0x4b,
+ 0x35, 0xe1, 0x8a, 0x23, 0xc6, 0xcf, 0xca, 0x51, 0x0a, 0xed, 0xdf, 0x4b, 0x3b, 0x5b, 0xa3, 0xfb, 0x98, 0x0e,
+ 0xe4, 0x27, 0x69, 0xfa, 0x14, 0xb7, 0x06, 0x62, 0x10, 0x93, 0x17, 0x0d, 0x85, 0xeb, 0xf0, 0xd7, 0x8e, 0x33,
+ 0xfb, 0x26, 0x1b, 0x57, 0x94, 0xe4, 0x15, 0x9b, 0x47, 0xae, 0xd1, 0x32, 0x66, 0x92, 0x0b, 0x7d, 0x90, 0xc2,
+ 0x7d, 0xde, 0x5a, 0x12, 0x71, 0x25, 0xa8, 0x77, 0x8f, 0x71, 0xf2, 0x14, 0x4f, 0xf0, 0xaf, 0x5d, 0x6d, 0x71,
+ 0xd8, 0xa4, 0x94, 0xc7, 0x1f, 0x5e, 0x21, 0x3a, 0x59, 0x44, 0x03, 0x92, 0xb0, 0xdc, 0xef, 0x06, 0x00, 0x45,
+ 0x78, 0x0e, 0xc6, 0x87, 0xb0, 0x7b, 0xf3, 0xd4, 0xcb, 0x36, 0xa1, 0xe4, 0xda, 0x24, 0x6c, 0x6b, 0x73, 0xb1,
+ 0xfe, 0x72, 0xf4, 0x9b, 0x86, 0x66, 0xf2, 0x2f, 0x37, 0x0e, 0xd3, 0x35, 0x2a, 0xcd, 0xe1, 0xa5, 0x28, 0xba,
+ 0xcc, 0xb7, 0xd8, 0x13, 0x84, 0x4b, 0xa9, 0xa7, 0x29, 0x46, 0x2e, 0x5c, 0x58, 0x1e, 0x4f, 0x29, 0xda, 0x64,
+ 0x7d, 0xd7, 0x5f, 0x7c, 0x1d, 0xc2, 0x34, 0x53, 0xb8, 0xb8, 0xd9, 0x14, 0xb8, 0x0b, 0x65, 0xa1, 0x2c, 0x89,
+ 0x72, 0x46, 0x29, 0x7a, 0x07, 0xba, 0x7d, 0x53, 0xf3, 0x88, 0x41, 0x15, 0xa2, 0xa4, 0x85, 0xa2, 0x94, 0x5a,
+ 0xd3, 0x94, 0xef, 0xf2, 0x27, 0x9e, 0x04, 0xc8, 0x96, 0x4c, 0x46, 0xfe, 0xf3, 0x8b, 0x55, 0xb6, 0xce, 0xbc,
+ 0xc0, 0x71, 0xba, 0xd8, 0x3c, 0xd9, 0x6c, 0x7c, 0xe2, 0xf3, 0x40, 0x6f, 0xec, 0x09, 0x55, 0x5e, 0x9a, 0xb9,
+ 0xdf, 0x9b, 0x05, 0x21, 0xd0, 0x64, 0x9c, 0x22, 0x2d, 0x10, 0x5d, 0xdc, 0x20, 0x63, 0x1b, 0x2d, 0x9a, 0x89,
+ 0x46, 0xf2, 0x3e, 0xb2, 0xb5, 0x49, 0x96, 0x24, 0x79, 0x89, 0x92, 0xf4, 0xd6, 0xee, 0xf1, 0x8d, 0xb6, 0xb2,
+ 0x60, 0x22, 0xda, 0x15, 0xb7, 0xa4, 0xfc, 0x09, 0xce, 0x3f, 0xe9, 0x47, 0x54, 0xad, 0xfe, 0x0a, 0x5c, 0xe2,
+ 0x77, 0x37, 0xab, 0x94, 0x01, 0x3d, 0x43, 0xac, 0xb6, 0x49, 0x39, 0x7d, 0xa0, 0x9f, 0x6e, 0xde, 0x54, 0x79,
+ 0x6f, 0xdd, 0x25, 0xcc, 0x5e, 0xc9, 0x68, 0xbe, 0x08, 0x73, 0x81, 0xe8, 0x42, 0x61, 0x7d, 0xe7, 0x07, 0xbd,
+ 0x05, 0x2c, 0x36, 0x54, 0xb1, 0x17, 0xd4, 0xe0, 0xe2, 0x8c, 0x3d, 0xe1, 0x58, 0xb1, 0xd4, 0x0f, 0x80, 0x7d,
+ 0x1f, 0x97, 0x00, 0xf6, 0x02, 0xca, 0x1b, 0xbf, 0x83, 0x5d, 0xa0, 0x50, 0x44, 0x88, 0xc8, 0x45, 0x36, 0x89,
+ 0xc0, 0x73, 0x80, 0x9b, 0x62, 0x36, 0x4a, 0xdc, 0xfa, 0x94, 0x13, 0x86, 0x86, 0x64, 0x90, 0xbc, 0xa4, 0xae,
+ 0xa9, 0xbe, 0xd5, 0x73, 0xb5, 0x11, 0x76, 0x46, 0x97, 0x48, 0x2f, 0x3f, 0x3f, 0xc5, 0x6c, 0xba, 0x5b, 0xfa,
+ 0xda, 0x89, 0xa2, 0x94, 0xac, 0xf9, 0x8a, 0x71, 0x0c, 0xbc, 0x5a, 0x0c, 0x05, 0x70, 0x1b, 0xd4, 0xbb, 0x38,
+ 0xc8, 0xf8, 0xa0, 0x72, 0xd7, 0x92, 0xfa, 0x2d, 0x2c, 0x4d, 0x24, 0xf9, 0x96, 0x71, 0x5d, 0x48, 0x20, 0xc2,
+ 0xb8, 0x06, 0x6d, 0x01, 0x3a, 0x2d, 0xc3, 0x92, 0x3a, 0x44, 0x13, 0xdb, 0xc9, 0x42, 0x40, 0x71, 0xa1, 0x43,
+ 0x99, 0x75, 0x86, 0x30, 0xc3, 0x90, 0xfb, 0x95, 0x73, 0x1f, 0x8c, 0xc6, 0x43, 0x83, 0x8d, 0xc4, 0xdf, 0x18,
+ 0x9c, 0xdf, 0x1a, 0xf2, 0x98, 0xd8, 0x6c, 0x4c, 0x5c, 0x27, 0xb5, 0x7c, 0x2a, 0xab, 0xf2, 0xfe, 0x86, 0x1c,
+ 0xbc, 0x23, 0x37, 0x4d, 0xc8, 0x63, 0x10, 0xa5, 0x0f, 0xc9
+};
+
+// context = simple_context_fa
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x66, 0x61, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x60, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x20, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x61, 0x6b, 0x65, 0x5f, 0x63, 0x6f, 0x66, 0x66, 0x65,
+ 0x65, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd9, 0x82, 0xd9, 0x87, 0xd9, 0x88,
+ 0xd9, 0x87, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa8, 0xd8, 0xb1, 0xd9, 0x88,
+ 0x20, 0xd8, 0xa8, 0xd9, 0x87, 0x20, 0x24, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa2, 0xd8, 0xb4, 0xd9, 0xbe, 0xd8, 0xb2, 0xd8, 0xae, 0xd8, 0xa7, 0xd9, 0x86,
+ 0xd9, 0x87, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xda, 0xa9, 0xd9, 0x84, 0xd8,
+ 0xa7, 0xd8, 0xb3, 0x20, 0xd8, 0xaf, 0xd8, 0xb1, 0xd8, 0xb3, 0x22, 0x0a, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x26, 0x00,
+ 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0xd8, 0xa2, 0xd8, 0xb4, 0xd9, 0xbe, 0xd8, 0xb2, 0xd8, 0xae, 0xd8, 0xa7,
+ 0xd9, 0x86, 0xd9, 0x87, 0x00, 0xd8, 0xa8, 0xd8, 0xb1, 0xd9, 0x88, 0x00, 0xd8, 0xa8, 0xd9, 0x87, 0x00, 0xd9,
+ 0x82, 0xd9, 0x87, 0xd9, 0x88, 0xd9, 0x87, 0x00, 0xda, 0xa9, 0xd9, 0x84, 0xd8, 0xa7, 0xd8, 0xb3, 0x20, 0xd8,
+ 0xaf, 0xd8, 0xb1, 0xd8, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1d, 0x00,
+ 0x00, 0x00, 0x1d, 0x1f, 0x12, 0x01, 0x1c, 0x1b, 0x1d, 0x10, 0x06, 0x03, 0x11, 0x14, 0x11, 0x03, 0x07, 0x13,
+ 0x01, 0x09, 0x1a, 0x07, 0x0d, 0x06, 0x0e, 0x1d, 0x15, 0x04, 0x01, 0x14, 0x15, 0x00, 0x00, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00,
+ 0x0b, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
+ 0x0c, 0x00, 0x00, 0x00, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x6d, 0x61, 0x6b, 0x65,
+ 0x5f, 0x63, 0x6f, 0x66, 0x66, 0x65, 0x65, 0x00, 0x6e, 0x61, 0x76, 0x69, 0x67, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_FARSI__
+
#if defined(__PV_LANGUAGE_FRENCH__)
// wake-word = bonjour ordinateur
static const uint8_t KEYWORD_ARRAY[] = {
- 0xef, 0x2e, 0x44, 0x7a, 0x25, 0x80, 0x58, 0x42, 0xb3, 0xf2, 0xde, 0xca, 0x89, 0xbc, 0x54, 0x67, 0xe9, 0xdf,
- 0x14, 0x87, 0x1e, 0xf4, 0x1e, 0xae, 0x47, 0xcc, 0x96, 0x3f, 0x74, 0x9b, 0x8b, 0x27, 0x49, 0x6d, 0x1e, 0x78,
- 0x66, 0x07, 0x83, 0x1f, 0xc3, 0x87, 0x5f, 0xf3, 0x0f, 0x4f, 0x6f, 0x00, 0xf5, 0x3e, 0x65, 0x9b, 0xe7, 0xcb,
- 0xe7, 0x55, 0xfa, 0xc1, 0x50, 0xdb, 0xdf, 0x7d, 0x9e, 0xb0, 0xf0, 0xf4, 0x2a, 0x54, 0x4b, 0xea, 0x37, 0xd2,
- 0xc7, 0x9e, 0x19, 0xd0, 0x14, 0xf0, 0x42, 0x80, 0xfd, 0x56, 0x5d, 0x23, 0x14, 0x3a, 0x43, 0x9a, 0xcf, 0xbb,
- 0x67, 0xc9, 0x2d, 0x2b, 0x58, 0x15, 0xb5, 0x31, 0x9a, 0xd7, 0xff, 0xd6, 0x7e, 0x27, 0x4b, 0x6d, 0x11, 0x57,
- 0x45, 0xaf, 0x54, 0x86, 0x5d, 0x97, 0xf9, 0x9f, 0xc0, 0x26, 0x53, 0xce, 0xed, 0x03, 0x69, 0x04, 0x9a, 0x34,
- 0x95, 0x58, 0x64, 0x84, 0x2d, 0x55, 0x49, 0xee, 0x05, 0xf4, 0xb2, 0x1e, 0x97, 0x08, 0x75, 0xe4, 0xd7, 0xd1,
- 0x81, 0x61, 0x4f, 0x7c, 0x1c, 0x40, 0x94, 0x60, 0x18, 0xfb, 0xf4, 0x2d, 0x68, 0xd0, 0xea, 0x1f, 0x0b, 0x38,
- 0xca, 0xcc, 0x91, 0x86, 0x5f, 0xef, 0xcb, 0x0e, 0x33, 0xd8, 0x3f, 0x1c, 0x13, 0x4f, 0x82, 0x74, 0xb7, 0x4c,
- 0xd6, 0x35, 0x07, 0x7c, 0x8f, 0x0f, 0x6d, 0xb9, 0x05, 0xe4, 0xea, 0xce, 0x91, 0x14, 0xc5, 0xf8, 0xee, 0xee,
- 0x36, 0x65, 0x58, 0xae, 0xdb, 0xd3, 0x05, 0xda, 0x52, 0x86, 0xa8, 0xe4, 0x90, 0xca, 0x99, 0xf8, 0x03, 0x94,
- 0xaa, 0x97, 0x02, 0xcc, 0x12, 0xe2, 0x70, 0x43, 0x06, 0x19, 0x23, 0xd7, 0xc7, 0x2b, 0x5f, 0x46, 0x01, 0x05,
- 0xea, 0x61, 0xf9, 0xc8, 0x9b, 0x1e, 0x18, 0x86, 0x8d, 0x8e, 0xb8, 0xab, 0x1b, 0x5b, 0x16, 0x4e, 0x4d, 0xc1,
- 0x16, 0x8b, 0xad, 0xd5, 0xf9, 0x18, 0x18, 0x7c, 0x77, 0x76, 0x43, 0x17, 0xd0, 0x10, 0x1e, 0x6a, 0xb3, 0x18,
- 0x18, 0xbe, 0x81, 0x5b, 0x31, 0x49, 0xef, 0xb6, 0xec, 0xfb, 0x04, 0xab, 0xa9, 0xb5, 0xb3, 0x66, 0xe2, 0xb4,
- 0x84, 0xc4, 0x64, 0xbd, 0x30, 0x89, 0x02, 0x42, 0x85, 0x25, 0xf7, 0x39, 0xdc, 0x10, 0x71, 0x1b, 0x2e, 0xdc,
- 0xd6, 0x2c, 0xc2, 0x68, 0x8e, 0x2c, 0xd0, 0x57, 0xc1, 0xdd, 0xc2, 0xb6, 0x3c, 0x71, 0xac, 0x64, 0x71, 0x62,
- 0x53, 0x51, 0x72, 0xb6, 0x04, 0x5a, 0x75, 0xe8, 0xb0, 0x15, 0x86, 0x17, 0x10, 0xaf, 0x95, 0x92, 0x43, 0xd4,
- 0xf3, 0x31, 0x4d, 0x8d, 0x8c, 0x13, 0xc8, 0xee, 0xac, 0xc2, 0x80, 0x7e, 0x05, 0xb2, 0x7a, 0x97, 0xd5, 0xe1,
- 0xf2, 0x52, 0x42, 0x3a, 0x80, 0x0d, 0x6c, 0x5b, 0x45, 0xb4, 0x8b, 0x4d, 0x53, 0x8d, 0xc1, 0x28, 0x85, 0xcb,
- 0xac, 0x71, 0xf4, 0x8d, 0x13, 0x34, 0x80, 0x6d, 0x1a, 0x81, 0x42, 0xe5, 0x30, 0x99, 0x55, 0x8d, 0x37, 0x37,
- 0xe7, 0x40, 0xc7, 0x14, 0x6a, 0x3d, 0xd6, 0x67, 0x3f, 0x9e, 0x51, 0xf3, 0xa1, 0x71, 0x12, 0x68, 0xba, 0xd7,
- 0x52, 0x3e, 0x41, 0x63, 0xee, 0x67, 0x85, 0xf5, 0xdf, 0x00, 0xe5, 0xa5, 0xe8, 0xe7, 0x58, 0x25, 0x65, 0x3d,
- 0xe3, 0x2e, 0xea, 0x9f, 0x19, 0x63, 0x8e, 0xd1, 0x71, 0x6c, 0x2f, 0x10, 0xe4, 0x8c, 0x5d, 0x4a, 0x3b, 0x92,
- 0x40, 0x3a, 0x9b, 0x55, 0x12, 0x2a, 0xc4, 0xff, 0x64, 0x52, 0x42, 0xab, 0xc5, 0x66, 0x8d, 0x5c, 0x71, 0x1b,
- 0x50, 0x1d, 0x8f, 0x8f, 0x8b, 0xa4, 0x31, 0x91, 0x9d, 0x23, 0xaf, 0x22, 0xa6, 0x50, 0x86, 0x0c, 0xab, 0x4c,
- 0x66, 0x3e, 0x65, 0x2b, 0xf7, 0xe3, 0xd2, 0x63, 0x72, 0x99, 0x60, 0x31, 0x31, 0xa5, 0x3c, 0x13, 0x4c, 0xa4,
- 0x8b, 0xc6, 0x10, 0x22, 0xef, 0x59, 0x8d, 0xb6, 0x34, 0x61, 0x1a, 0x06, 0x85, 0x52, 0xd2, 0xe5, 0x13, 0x23,
- 0x7a, 0x29, 0x26, 0x49, 0xfe, 0x62, 0xde, 0x06, 0xab, 0x53, 0x7b, 0xaf, 0xaf, 0x4a, 0x8d, 0x97, 0xd6, 0x57,
- 0x81, 0xbb, 0xd0, 0x8b, 0x43, 0x6e, 0xc3, 0x20, 0x4b, 0xe7, 0xec, 0x01, 0x1c, 0x47, 0x09, 0x7c, 0x01, 0xa7,
- 0x75, 0x8c, 0xc3, 0x91, 0x01, 0x10, 0xd9, 0x33, 0x61, 0xc7, 0x48, 0xad, 0xff, 0xf8, 0x82, 0x6a, 0xba, 0x34,
- 0xc6, 0x50, 0xf6, 0x3a, 0xa9, 0xc8, 0x6a, 0x82, 0x9a, 0xe0, 0x7f, 0xfb, 0xad, 0xc1, 0x84, 0x1f, 0x69, 0x1f,
- 0x96, 0xb2, 0xdc, 0x4b, 0xc8, 0xb3, 0x67, 0xb1, 0x42, 0x00, 0x71, 0xf4, 0xd6, 0x79, 0xfa, 0xce, 0x7f, 0xc2,
- 0xab, 0x90, 0x24, 0x89, 0x12, 0x13, 0x1d, 0x54, 0x7e, 0x4a, 0x4b, 0x09, 0xaa, 0xe0, 0x25, 0x9a, 0x98, 0x8f,
- 0x07, 0xc3, 0x4d, 0xaa, 0x08, 0x60, 0x59, 0x2d, 0xda, 0xed, 0x99, 0x3b, 0x45, 0xa1, 0x90, 0xe3, 0xd7, 0x6a,
- 0x05, 0xda, 0x92, 0x9b, 0xc3, 0x54, 0xed, 0x04, 0xbb, 0x36, 0xb1, 0x7f
+ 0xbb, 0x5c, 0xb1, 0xe7, 0xbd, 0xc8, 0x3c, 0xc7, 0xa4, 0xbe, 0x37, 0x23, 0xf5, 0xcc, 0xa2, 0x7a, 0x6f, 0x00,
+ 0x62, 0x72, 0x34, 0x7b, 0x73, 0xa2, 0xeb, 0xe8, 0x6c, 0x9d, 0x82, 0xfb, 0x48, 0x63, 0x03, 0xec, 0x3f, 0x7d,
+ 0xf0, 0xae, 0xe5, 0xb1, 0x47, 0x58, 0x8e, 0xf3, 0xbf, 0x7b, 0xd0, 0x77, 0x12, 0xd1, 0xc6, 0x54, 0xda, 0xc3,
+ 0x20, 0xca, 0x7b, 0x20, 0x30, 0xf1, 0x47, 0xe1, 0xdb, 0xca, 0x70, 0x0c, 0x86, 0x79, 0xe5, 0x02, 0x63, 0x7b,
+ 0x5f, 0x48, 0x2e, 0xb1, 0x44, 0x1d, 0xb6, 0xd3, 0x58, 0x2b, 0x7b, 0x50, 0xc8, 0x8a, 0xd4, 0xa0, 0x20, 0x7b,
+ 0x01, 0x0a, 0x84, 0x18, 0xb4, 0x3a, 0xe7, 0x49, 0x86, 0x70, 0xf3, 0xfc, 0x21, 0xc6, 0xc2, 0xeb, 0x65, 0x26,
+ 0x70, 0xa1, 0x7d, 0x7a, 0xeb, 0x26, 0xc2, 0x72, 0x20, 0xdd, 0x32, 0x6d, 0x5b, 0x1e, 0x9f, 0x97, 0x87, 0x7e,
+ 0x0b, 0xf3, 0x2c, 0x50, 0x2b, 0x95, 0x28, 0x62, 0xcd, 0x0f, 0xb5, 0xb5, 0x40, 0x26, 0x22, 0x48, 0xf7, 0x23,
+ 0x8f, 0x95, 0x86, 0xcc, 0xac, 0xcb, 0x80, 0xbb, 0xd8, 0xe2, 0xb4, 0xb7, 0x3c, 0x78, 0xe7, 0x87, 0xac, 0x04,
+ 0xca, 0x48, 0x54, 0xdb, 0xdd, 0x79, 0x23, 0xa3, 0x8a, 0xff, 0x87, 0x26, 0x88, 0x7a, 0x74, 0x64, 0xfa, 0xeb,
+ 0xa0, 0x0b, 0x28, 0x73, 0x43, 0xbe, 0xa7, 0x34, 0xbe, 0xab, 0x35, 0x86, 0x72, 0xac, 0xdb, 0xe9, 0x01, 0x10,
+ 0xb0, 0x6e, 0x7e, 0x75, 0x90, 0x5b, 0x6b, 0xaa, 0xfb, 0x16, 0x31, 0x22, 0x25, 0x1b, 0xa3, 0x48, 0x4d, 0x6a,
+ 0x63, 0xa9, 0x5e, 0x57, 0x33, 0xf2, 0x09, 0x26, 0x29, 0xa7, 0x70, 0xed, 0xd5, 0x15, 0x3f, 0x5e, 0x52, 0x07,
+ 0x03, 0x4b, 0x88, 0x30, 0xea, 0x95, 0x9e, 0xc9, 0xfd, 0x16, 0x94, 0xce, 0x6d, 0xb3, 0x3c, 0xb6, 0x9f, 0x92,
+ 0x21, 0x90, 0xc0, 0xdc, 0xcd, 0xb2, 0x48, 0x6b, 0x27, 0xc0, 0x0f, 0x52, 0xfc, 0x81, 0x99, 0xbd, 0x56, 0x82,
+ 0x67, 0xd4, 0x41, 0x14, 0x0e, 0x06, 0x51, 0xa4, 0x67, 0xba, 0xd0, 0x8f, 0x40, 0xd2, 0x6e, 0x7b, 0xb8, 0xb2,
+ 0x70, 0xd8, 0xb0, 0xf3, 0xf6, 0x16, 0x1a, 0xcd, 0x48, 0xa7, 0x6a, 0xec, 0x3b, 0xe2, 0x2d, 0x13, 0x61, 0xc0,
+ 0xaf, 0x16, 0x92, 0xae, 0xea, 0xea, 0x66, 0xb7, 0xa8, 0x60, 0xd1, 0x16, 0x0e, 0xdd, 0xcf, 0x5f, 0x86, 0xeb,
+ 0xcc, 0xff, 0xeb, 0x74, 0x18, 0x52, 0xbe, 0xc5, 0x58, 0x87, 0x01, 0xda, 0x06, 0x01, 0x91, 0x3c, 0x42, 0xc2,
+ 0xd7, 0x67, 0x5e, 0xe0, 0x74, 0xad, 0x06, 0x59, 0x6a, 0x48, 0x11, 0xb9, 0x61, 0xdc, 0xe2, 0xc8, 0x5c, 0x2b,
+ 0x24, 0x54, 0x95, 0xe7, 0x9f, 0x1b, 0x8b, 0x10, 0x44, 0x0a, 0x1d, 0x26, 0x07, 0xf0, 0x5c, 0xa6, 0x9d, 0x63,
+ 0x51, 0x51, 0x29, 0x09, 0xbd, 0x4a, 0xa1, 0xa2, 0x44, 0x8c, 0x9a, 0x90, 0xd6, 0x1b, 0x74, 0x63, 0x3f, 0xc4,
+ 0xb2, 0x4b, 0x88, 0x67, 0x70, 0xd9, 0x73, 0x3e, 0x29, 0x9b, 0x85, 0xd5, 0x9b, 0x1b, 0x58, 0xf8, 0xee, 0x40,
+ 0x03, 0x83, 0x35, 0xa2, 0xd5, 0x0f, 0x28, 0x40, 0x06, 0xbb, 0xfa, 0xf1, 0x20, 0xa9, 0xc5, 0x33, 0xe6, 0x6a,
+ 0x9d, 0x90, 0xc6, 0xf6, 0x78, 0xaf, 0x8f, 0xc6, 0x00, 0x56, 0xab, 0x64, 0x95, 0x8a, 0xe6, 0xf9, 0x65, 0xfe,
+ 0x7b, 0xa7, 0x75, 0x6b, 0x63, 0x39, 0x03, 0x86, 0xf9, 0xf7, 0x59, 0xf1, 0x56, 0x3a, 0xdb, 0xbd, 0xa3, 0x96,
+ 0xd8, 0xba, 0x8a, 0x46, 0x52, 0xbc, 0xd2, 0x98, 0x87, 0xda, 0xaa, 0xf3, 0x07, 0xcc, 0x10, 0x6c, 0xd5, 0xa7,
+ 0x63, 0xab, 0xc2, 0x2a, 0x2f, 0x62, 0x6b, 0x36, 0xcc, 0x38, 0x0d, 0xc6, 0xd8, 0xac, 0xb1, 0x65, 0x5b, 0x5a,
+ 0x10, 0xc5, 0x8e, 0xe9, 0xfb, 0x46, 0xea, 0xe5, 0xf5, 0xf8, 0xd5, 0x04, 0x9f, 0x0b, 0x4d, 0x98, 0x54, 0xdd,
+ 0xed, 0xb1, 0x35, 0x87, 0x1c, 0xd8, 0x99, 0xe4, 0x5e, 0xd2, 0x0d, 0xb3, 0x4c, 0x0f, 0x44, 0xd0, 0x10, 0x07,
+ 0x87, 0x17, 0xb6, 0x22, 0xe9, 0x2a, 0x70, 0x56, 0x07, 0x33, 0x3c, 0x93, 0xdb, 0x13, 0x4c, 0x2f, 0x17, 0xc0,
+ 0xf5, 0xe4, 0xaf, 0x60, 0x36, 0xd7, 0x61, 0xeb, 0x37, 0x64, 0x4d, 0xb3, 0x96, 0xc8, 0x7d, 0x76, 0x64, 0x98,
+ 0xc6, 0xc5, 0x64, 0x73, 0xeb, 0x11, 0x49, 0x57, 0xc9, 0x4e, 0x60, 0xe8, 0x28, 0x1b, 0x5f, 0x01, 0x5e, 0xff,
+ 0xbb, 0x2a, 0xf9, 0x1d, 0xa8, 0x15, 0x84, 0x5b, 0xb2, 0xd9, 0x68, 0x4f, 0x29, 0x95, 0xa5, 0x33, 0x2e, 0x84,
+ 0x43, 0x87, 0x35, 0x9e, 0x09, 0x2f, 0x07, 0x15, 0x4e, 0xcb, 0x5b, 0x0e, 0x1a, 0x4a, 0x5b, 0xcc, 0xe2, 0x98,
+ 0x63, 0x99, 0xa9, 0xe3, 0x42, 0xe4, 0xa6, 0x8e, 0xbf, 0xd4, 0xb9, 0x54, 0xd6, 0x27, 0xed, 0x0a, 0x73, 0xa7,
+ 0x8e, 0x39, 0xc6, 0x87, 0x8c, 0xc8, 0x5e, 0xda, 0xcd, 0xf1, 0x63, 0xaa
};
// context = éclairage_intelligent
@@ -1206,44 +1589,148 @@ static const uint8_t CONTEXT_ARRAY[] = {
#endif // __PV_LANGUAGE_FRENCH__
+#if defined(__PV_LANGUAGE_HINDI__)
+
+// wake-word = नमस्ते कंप्यूटर
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0xdc, 0xad, 0x59, 0xc4, 0xf5, 0xbf, 0xc7, 0x7a, 0xf7, 0xfa, 0x59, 0xd5, 0x41, 0x65, 0x7f, 0x25, 0x80, 0x0a,
+ 0x66, 0x99, 0x32, 0xb5, 0x28, 0xc3, 0x94, 0xa3, 0xcd, 0xdb, 0xd2, 0x80, 0x61, 0xd5, 0x90, 0x12, 0x09, 0x7e,
+ 0x4f, 0xc1, 0x43, 0xbc, 0x8e, 0x9c, 0x6c, 0x14, 0xbb, 0xe3, 0x48, 0x00, 0xfb, 0xc4, 0x98, 0x96, 0xd0, 0x56,
+ 0x0c, 0xc2, 0x4a, 0x64, 0xf5, 0x04, 0x81, 0xd2, 0x28, 0xda, 0x79, 0xba, 0x20, 0x67, 0xf0, 0xf5, 0x40, 0x1f,
+ 0x63, 0xf3, 0x5d, 0x1b, 0x4a, 0xc8, 0x75, 0xbc, 0x37, 0x00, 0xf1, 0x60, 0x6b, 0x58, 0xa8, 0x37, 0x90, 0x2f,
+ 0x37, 0x29, 0xe1, 0x15, 0xb2, 0xa9, 0x1a, 0x99, 0xa1, 0x5d, 0xbb, 0xf9, 0x0a, 0x9d, 0x9c, 0xa9, 0x69, 0x55,
+ 0xd6, 0xc2, 0x16, 0x46, 0xd6, 0x3d, 0x2a, 0xc6, 0xc4, 0xda, 0x0b, 0x7d, 0x1d, 0x3d, 0x4c, 0x70, 0x26, 0x8d,
+ 0xd9, 0x7a, 0xca, 0x94, 0x46, 0x3b, 0x92, 0xd5, 0x78, 0xee, 0xa6, 0xe3, 0x7b, 0xcb, 0x60, 0xe2, 0xd1, 0x89,
+ 0x32, 0x3f, 0x03, 0x89, 0x35, 0x97, 0x62, 0x64, 0xf1, 0xcb, 0xfe, 0x19, 0x6b, 0xf6, 0xba, 0xe4, 0xdf, 0x44,
+ 0xd4, 0xdc, 0x76, 0xd3, 0x72, 0x49, 0x84, 0xea, 0x54, 0x1d, 0x7b, 0x0f, 0xe3, 0x90, 0x75, 0x47, 0xaa, 0xb9,
+ 0xcf, 0xd0, 0xe4, 0xaf, 0xeb, 0xd2, 0xf9, 0xac, 0xef, 0xe6, 0x76, 0x25, 0x5c, 0x55, 0xc2, 0xbe, 0x13, 0xb9,
+ 0xb1, 0x68, 0x69, 0x3f, 0xd3, 0xb3, 0x25, 0xaa, 0x4a, 0xa1, 0xfd, 0xb8, 0x99, 0x08, 0x3a, 0x13, 0x4b, 0x7d,
+ 0xc8, 0x7a, 0xca, 0xee, 0x5d, 0xd5, 0xd9, 0xd1, 0xc0, 0xaf, 0x2c, 0x6c, 0xeb, 0x18, 0xac, 0x95, 0x69, 0x2a,
+ 0xe7, 0x92, 0x8b, 0x8a, 0xcf, 0xf6, 0x16, 0xd1, 0x44, 0x20, 0xc3, 0x76, 0xe2, 0x38, 0x8b, 0x18, 0xae, 0x85,
+ 0xd9, 0xc6, 0x73, 0x7b, 0xe2, 0xfa, 0xf0, 0x36, 0x2a, 0x9c, 0x9c, 0xb2, 0x0f, 0xc0, 0x8f, 0x7b, 0xaf, 0x3b,
+ 0xda, 0x7b, 0x02, 0x3b, 0x62, 0x1a, 0x9c, 0x16, 0xce, 0x2b, 0x36, 0x9c, 0x5e, 0x04, 0x7f, 0xa9, 0xd0, 0x53,
+ 0xc6, 0x7e, 0xd6, 0x9a, 0x17, 0xac, 0xdd, 0x2e, 0x25, 0x93, 0xc1, 0x72, 0x33, 0x80, 0xdf, 0x7d, 0x22, 0x08,
+ 0x90, 0xd3, 0xda, 0x6c, 0x19, 0x30, 0x9d, 0x3e, 0x90, 0xb4, 0x22, 0x0e, 0xbd, 0x91, 0xc6, 0xf4, 0xb1, 0x8d,
+ 0x0f, 0xf5, 0xa4, 0x93, 0x40, 0xfa, 0xbe, 0xbb, 0x11, 0x76, 0xe2, 0x45, 0x8a, 0x69, 0xd2, 0x65, 0xcb, 0x36,
+ 0xca, 0xa9, 0xc3, 0x06, 0x7d, 0xcb, 0x8f, 0x7b, 0x14, 0xf0, 0xef, 0x63, 0xba, 0xe3, 0x60, 0x24, 0x0d, 0x40,
+ 0xcf, 0x13, 0x47, 0x87, 0x6b, 0x7d, 0x66, 0x7a, 0xae, 0xe6, 0xf9, 0xd7, 0x56, 0x91, 0xad, 0xb1, 0x41, 0xb5,
+ 0x3a, 0x8c, 0x97, 0x04, 0x83, 0xe0, 0x30, 0x00, 0xe8, 0xf7, 0xfe, 0x76, 0xef, 0xff, 0x9c, 0x18, 0x50, 0xee,
+ 0xa8, 0x81, 0x9b, 0x7e, 0x68, 0x6c, 0x9a, 0x21, 0xda, 0x1b, 0xc0, 0xc9, 0xad, 0x07, 0x6c, 0x1b, 0x26, 0x38,
+ 0x78, 0xab, 0x19, 0x1f, 0xa6, 0x80, 0x98, 0x4c, 0x26, 0x4f, 0x51, 0xeb, 0xf2, 0xca, 0x29, 0x0d, 0x54, 0x16,
+ 0x4d, 0xb1, 0xf3, 0x43, 0x62, 0x2c, 0xa3, 0xc8, 0x27, 0xd8, 0xc4, 0x22, 0xc7, 0x42, 0xc5, 0x65, 0x17, 0x4d,
+ 0x8f, 0xbd, 0x98, 0x19, 0x77, 0xa0, 0x3f, 0x15, 0x77, 0x36, 0x7b, 0x9a, 0x79, 0xe7, 0x59, 0x7e, 0xe5, 0xa3,
+ 0x59, 0x66, 0x96, 0xf9, 0x7e, 0xf9, 0x4f, 0x8c, 0x02, 0xfe, 0x4b, 0x69, 0x01, 0x5d, 0xa8, 0x05, 0xe0, 0xeb,
+ 0xb4, 0x14, 0xdb, 0x50, 0x17, 0xb4, 0x94, 0xe5, 0xd3, 0x51, 0x79, 0xa6, 0xfd, 0xe5, 0x14, 0xea, 0xa5, 0x7d,
+ 0x10, 0x11, 0xa5, 0x09, 0xec, 0xec, 0x0c, 0xf8, 0x7e, 0x74, 0xd6, 0xe5, 0x58, 0x91, 0xd1, 0x36, 0x26, 0x44,
+ 0xe6, 0x09, 0xf9, 0xce, 0x41, 0x11, 0xb5, 0x0b, 0xee, 0xe0, 0xf6, 0xe9, 0xa7, 0x87, 0x35, 0x19, 0x11, 0x92,
+ 0x57, 0xc0, 0xa5, 0xfb, 0xb2, 0xd1, 0x44, 0x32, 0x22, 0x59, 0x6a, 0x70, 0x1c, 0xa2, 0xf4, 0x2b, 0x6d, 0x98,
+ 0x9f, 0x57, 0xfe, 0xfc, 0x4c, 0x50, 0x97, 0x82, 0xfe, 0xa1, 0xab, 0x16, 0x62, 0x33, 0xe9, 0x38, 0x29, 0x98,
+ 0xa3, 0x46, 0x75, 0xab, 0xd1, 0xda, 0x73, 0x95, 0x93, 0x87, 0xd8, 0x85, 0x3c, 0x7b, 0x9e, 0x76, 0x1c, 0x35,
+ 0xbb, 0x68, 0x92, 0x4d, 0xa6, 0x78, 0x90, 0x92, 0xcd, 0x82, 0xf7, 0x85, 0x30, 0x96, 0x0e, 0xa0, 0xce, 0x1e,
+ 0x8c, 0xf0, 0x0d, 0x34, 0xef, 0x60, 0xc6, 0xe1, 0x50, 0x48, 0x8a, 0x9b, 0xa1, 0xef, 0xc3, 0xb9, 0xc6, 0x2a,
+ 0x8f, 0xb7, 0xa6, 0xc4, 0x31, 0xa0, 0x55, 0xc1, 0xa8, 0x36, 0x7a, 0xe7, 0x4c, 0x2d, 0x56, 0x5d, 0x3e, 0xa3,
+ 0xda, 0x98, 0xb2, 0x40, 0x1f, 0x51, 0x8f, 0xf6, 0xdc, 0xf4, 0x49, 0x13, 0x4b, 0x05, 0x93, 0x8d, 0x4d, 0x29,
+ 0xa7, 0x5b, 0x27, 0x12, 0xcf, 0x24, 0x00, 0xad, 0x04, 0x18, 0x7c, 0x0f, 0x1f, 0x92, 0xfc, 0xed, 0xcc, 0x26,
+ 0x27, 0x6d, 0x2c, 0xa3, 0xc1, 0xde, 0x52, 0xf6, 0x22, 0x49, 0x85, 0x82, 0xfb, 0x89, 0x86, 0x10, 0xa3, 0x0c,
+ 0xb7, 0xd7, 0x0c, 0x30, 0x86, 0xc0, 0xe4, 0xd3, 0xc7, 0xb2, 0x1e, 0x89, 0x2a, 0x63, 0x53, 0x61, 0xe4, 0x37,
+ 0x1b, 0xfe, 0xd8, 0xf9, 0xcf, 0xdd, 0x9a, 0xcc, 0xef, 0x32, 0x98, 0x1a, 0x85, 0x95, 0x6b, 0x26, 0x50, 0x2b,
+ 0x45, 0xbf, 0x8a, 0x28, 0xfa, 0x7c, 0x59, 0x2c, 0x06, 0xf5, 0x7f, 0x0a, 0x75, 0xc7, 0x52, 0xce, 0x1c, 0x04,
+ 0x13, 0x66, 0x8b, 0x4d, 0x5c, 0x0d, 0x20, 0x8a, 0x75, 0x49, 0xf7, 0x9e, 0x2b, 0x47, 0x40, 0x22, 0x58, 0x32,
+ 0x14, 0x90, 0xc7, 0xa3, 0xc1, 0x0d, 0x68, 0x41, 0x63, 0xce, 0xab, 0x91, 0x60, 0x14, 0x02, 0x33, 0x51, 0x98,
+ 0xef, 0x79, 0xa7, 0x58, 0xa8, 0x91, 0x5c, 0xcd, 0x8d, 0xf1, 0x57, 0x4c, 0xa3, 0x45, 0x9b, 0x3c, 0x95, 0x58,
+ 0x9f, 0x58, 0xb2, 0x43, 0x74, 0xc0, 0x0f, 0x4e, 0x68, 0xa5, 0xd3, 0xbb, 0xa9, 0x47
+};
+
+// context = simple_context_hi
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x68, 0x69, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0,
+ 0xa4, 0xbe, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70,
+ 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4,
+ 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x20, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95, 0x20,
+ 0x24, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x20, 0xe0, 0xa4, 0xa6,
+ 0xe0, 0xa5, 0x8b, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0,
+ 0xa4, 0xb8, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0,
+ 0xa4, 0xac, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5,
+ 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87,
+ 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
+ 0x3b, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95,
+ 0x00, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xa6, 0xe0,
+ 0xa5, 0x8b, 0x00, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0, 0xa4, 0xbe, 0xe0, 0xa4, 0xb8,
+ 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x00, 0xe0,
+ 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0xe0, 0xa4, 0xb8,
+ 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0, 0xa4, 0xac,
+ 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
+ 0x20, 0x00, 0x00, 0x00, 0x0e, 0x17, 0x17, 0x0e, 0x19, 0x05, 0x0a, 0x1d, 0x1e, 0x15, 0x05, 0x24, 0x05, 0x1a,
+ 0x2a, 0x16, 0x0e, 0x21, 0x04, 0x24, 0x07, 0x04, 0x21, 0x14, 0x24, 0x28, 0x21, 0x03, 0x06, 0x0e, 0x21, 0x14,
+ 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
+ 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_HINDI__
+
#if defined(__PV_LANGUAGE_ITALIAN__)
// wake-word = ciao computer
static const uint8_t KEYWORD_ARRAY[] = {
- 0x74, 0x54, 0x95, 0x9b, 0x89, 0x7b, 0x24, 0xe3, 0xb1, 0xa6, 0xf4, 0x2e, 0x56, 0x94, 0xbd, 0xc5, 0x87, 0x3c,
- 0x84, 0x91, 0xf9, 0x1c, 0xe1, 0x99, 0x0e, 0xc1, 0x54, 0x31, 0x3f, 0x78, 0xd1, 0x30, 0x33, 0x56, 0x05, 0xaf,
- 0x85, 0x9e, 0x5a, 0xe7, 0xd0, 0x88, 0x2e, 0xac, 0x78, 0xb3, 0x9f, 0x94, 0x44, 0xe9, 0x2f, 0x0c, 0x6e, 0x61,
- 0xb7, 0x24, 0xcd, 0xdb, 0x4e, 0x68, 0xdd, 0x9e, 0xab, 0x21, 0xdb, 0xb8, 0x17, 0x0f, 0xa0, 0x7d, 0x4a, 0x2b,
- 0xf2, 0x19, 0xac, 0x1a, 0x02, 0x6a, 0x21, 0x2a, 0x09, 0x7d, 0x85, 0x68, 0x54, 0x33, 0x05, 0xca, 0x91, 0x62,
- 0xce, 0x0b, 0x0b, 0x58, 0xa0, 0xac, 0x85, 0x49, 0xa8, 0xf5, 0x1d, 0x7e, 0xce, 0x8c, 0x73, 0xfe, 0xbd, 0x98,
- 0xe8, 0x30, 0x28, 0xbe, 0x9e, 0x07, 0xdf, 0x93, 0x34, 0x63, 0x49, 0x09, 0x40, 0x16, 0xfa, 0x64, 0x62, 0x33,
- 0xf9, 0x42, 0x36, 0xcc, 0x89, 0x2f, 0x44, 0xca, 0xd6, 0x3a, 0x8b, 0xd8, 0x3b, 0x60, 0x89, 0x29, 0x13, 0x76,
- 0x5d, 0x52, 0xdc, 0x84, 0x0c, 0xd8, 0x1f, 0x00, 0x5e, 0xfb, 0x6a, 0xc4, 0x55, 0xb9, 0xb7, 0x76, 0xc5, 0xc6,
- 0x0b, 0xb6, 0xc2, 0xfd, 0x76, 0xdd, 0x3a, 0xf8, 0x47, 0xa6, 0xd2, 0xa4, 0xa3, 0x3d, 0x4a, 0xa8, 0x12, 0x0e,
- 0x92, 0xfb, 0x14, 0xbb, 0xee, 0x61, 0x29, 0xbc, 0x4d, 0x3f, 0xcf, 0x00, 0x6f, 0x59, 0x9a, 0x77, 0x03, 0x1f,
- 0x83, 0xdf, 0x63, 0x68, 0x41, 0x84, 0x4f, 0xe0, 0xbe, 0x8f, 0x2f, 0xec, 0x15, 0x15, 0xd2, 0xce, 0x52, 0x98,
- 0x94, 0x61, 0xb6, 0xa0, 0x43, 0xda, 0x11, 0xa6, 0x2a, 0x57, 0x8a, 0x17, 0x17, 0x36, 0x1a, 0xcc, 0xe0, 0xf2,
- 0x21, 0x4d, 0x77, 0x79, 0x59, 0x4b, 0x18, 0x31, 0x90, 0xe6, 0xbc, 0xe4, 0xa6, 0x68, 0x11, 0x15, 0x85, 0x30,
- 0xd9, 0x8c, 0xf9, 0x79, 0xfe, 0x47, 0x9e, 0xc3, 0x93, 0x14, 0xab, 0xf5, 0xf4, 0xcb, 0xad, 0x68, 0xad, 0x0b,
- 0xb6, 0x49, 0xed, 0x6b, 0xbe, 0x2b, 0x44, 0x26, 0xa5, 0x56, 0xa9, 0xaa, 0x3e, 0x93, 0xf0, 0x22, 0x45, 0x63,
- 0xbd, 0x0b, 0xe4, 0x49, 0x9c, 0x60, 0xab, 0xda, 0xf4, 0xaf, 0x28, 0x19, 0xb3, 0x56, 0xa4, 0x93, 0xf9, 0x8c,
- 0xf7, 0xcc, 0xe6, 0x03, 0x24, 0x1c, 0x5f, 0x74, 0xfd, 0xb5, 0x58, 0xfb, 0x7d, 0x2a, 0xba, 0x2b, 0x33, 0xe7,
- 0x59, 0x8f, 0x0b, 0xca, 0xd1, 0x6d, 0x48, 0xd4, 0x7a, 0xb0, 0x64, 0xf4, 0x77, 0x79, 0x2a, 0x8a, 0x6b, 0x16,
- 0x0b, 0x44, 0x14, 0x8a, 0xfb, 0x25, 0x2b, 0x50, 0xc6, 0x94, 0x36, 0xc7, 0x04, 0xef, 0x52, 0x56, 0x66, 0xad,
- 0x85, 0xc8, 0x2d, 0x86, 0x0d, 0xb3, 0xed, 0x08, 0x4a, 0x89, 0x8f, 0x87, 0x75, 0xfc, 0x13, 0xfe, 0xc1, 0x6a,
- 0x97, 0x09, 0xa6, 0xbb, 0x64, 0x45, 0xfc, 0x12, 0x33, 0x7e, 0x90, 0x00, 0x8c, 0x2e, 0x79, 0x87, 0x63, 0xd1,
- 0x6e, 0x31, 0x99, 0x4d, 0xa6, 0x8f, 0xc3, 0x8d, 0xb8, 0x43, 0x42, 0x1e, 0x99, 0x37, 0x7e, 0x49, 0x9a, 0xe4,
- 0x8b, 0x27, 0xea, 0x57, 0x1d, 0x23, 0xf8, 0xe6, 0xd9, 0x4f, 0xd5, 0x29, 0x19, 0x01, 0x65, 0x73, 0xd7, 0x40,
- 0x5f, 0x95, 0xb5, 0x59, 0x69, 0x24, 0x04, 0x94, 0xf9, 0xa8, 0x02, 0x53, 0x0d, 0x82, 0x3a, 0x95, 0x74, 0xae,
- 0x92, 0x9e, 0x57, 0x1f, 0x85, 0x71, 0xef, 0x48, 0xdd, 0x64, 0xd0, 0xb8, 0x1c, 0x32, 0x29, 0x16, 0x02, 0x10,
- 0xd7, 0xe3, 0x34, 0x66, 0x59, 0xcb, 0xba, 0xef, 0xda, 0xba, 0x0c, 0xe8, 0xe8, 0x05, 0x5b, 0x94, 0x70, 0xef,
- 0x74, 0x12, 0x97, 0x38, 0xc4, 0xc7, 0x2c, 0x18, 0x51, 0x2f, 0x8f, 0xe6, 0x0c, 0x18, 0x62, 0xcb, 0x61, 0x20,
- 0x38, 0x44, 0x19, 0x57, 0x31, 0xa5, 0xff, 0xc0, 0x0f, 0xf8, 0x1b, 0x57, 0x02, 0xd9, 0x06, 0x68, 0x3c, 0x02,
- 0x5b, 0x05, 0xdf, 0x24, 0x3e, 0xcd, 0xbc, 0x05, 0x18, 0x91, 0xf6, 0x92, 0x45, 0x4f, 0x8b, 0x46, 0x94, 0x0d,
- 0x8d, 0xf7, 0x37, 0x73, 0xa5, 0x9e, 0xb8, 0x32, 0x7e, 0x70, 0x89, 0x9d, 0x3d, 0x74, 0x98, 0xaf, 0x16, 0xd6,
- 0xd6, 0x18, 0x90, 0x0a, 0xd6, 0x51, 0xc6, 0x80, 0xf1, 0xe9, 0x6f, 0x2d, 0x6e, 0x60, 0x35, 0x5e, 0x76, 0xcd,
- 0xb9, 0x6e, 0xb0, 0x4f, 0x23, 0x4d, 0xe6, 0x64, 0x96, 0xf2, 0xe6, 0x4e, 0x18, 0xf3, 0xe9, 0x61, 0xe9, 0x02,
- 0xcc, 0x2b
+ 0xdf, 0x32, 0x2e, 0x43, 0xc4, 0x4e, 0x14, 0x3c, 0x1c, 0xd3, 0xd0, 0x53, 0x60, 0x28, 0x78, 0x4f, 0x46, 0xa8,
+ 0xf3, 0x57, 0xcb, 0x0f, 0xda, 0x5b, 0xeb, 0xbe, 0xd8, 0x12, 0x85, 0x90, 0xac, 0x1c, 0x21, 0x4a, 0x54, 0x78,
+ 0x7b, 0x04, 0xce, 0x9b, 0xa0, 0x9f, 0x54, 0xb6, 0xca, 0x8c, 0xb7, 0x36, 0x2e, 0x23, 0xc4, 0x15, 0x29, 0xca,
+ 0xd8, 0x79, 0x97, 0x1f, 0xd8, 0xb8, 0xc4, 0xc8, 0xe2, 0xe0, 0xb3, 0xea, 0xd7, 0x26, 0xf3, 0xcc, 0xf9, 0x98,
+ 0xd6, 0x84, 0x52, 0xf1, 0x1a, 0xc8, 0x08, 0x42, 0x7f, 0xbd, 0xb1, 0x6c, 0x53, 0x3a, 0x18, 0xee, 0xee, 0xae,
+ 0x58, 0x11, 0x8e, 0xf6, 0x95, 0x10, 0x6a, 0x86, 0xe0, 0x26, 0x73, 0xe1, 0x5f, 0xc5, 0xa9, 0x7e, 0xc9, 0x67,
+ 0xa3, 0xff, 0xcd, 0xbb, 0x38, 0x80, 0x1d, 0x82, 0x9e, 0x1e, 0x14, 0xb2, 0x19, 0x36, 0x5f, 0xef, 0xe4, 0x16,
+ 0x36, 0x2e, 0x32, 0x50, 0xcb, 0xea, 0x16, 0x55, 0xe1, 0xb1, 0xed, 0x34, 0x9b, 0x97, 0x24, 0x9f, 0x74, 0xdf,
+ 0x85, 0xf1, 0x7c, 0xdc, 0x44, 0x4d, 0x92, 0xb8, 0xb8, 0x4a, 0xfd, 0xa4, 0x1b, 0x69, 0xe3, 0x1b, 0xe1, 0x02,
+ 0x8d, 0x43, 0xba, 0x15, 0x1d, 0xfa, 0xca, 0xf5, 0x87, 0x70, 0xfd, 0xc1, 0x26, 0xcc, 0x92, 0x0f, 0x16, 0x84,
+ 0x29, 0xef, 0x77, 0x88, 0x97, 0x14, 0x6e, 0x8e, 0xb9, 0x16, 0x2c, 0xd0, 0xd8, 0xb5, 0x82, 0x92, 0x18, 0x93,
+ 0xe8, 0xee, 0x3e, 0xd3, 0xcd, 0x0e, 0x1e, 0xb4, 0x56, 0xc3, 0x4d, 0xd5, 0xaa, 0x69, 0xc1, 0x8e, 0x1d, 0x60,
+ 0xd8, 0x8c, 0x29, 0x48, 0x20, 0x63, 0xe7, 0x7e, 0x88, 0xb9, 0xd3, 0x05, 0x7b, 0x07, 0x79, 0xc3, 0x2a, 0x30,
+ 0x3b, 0x9d, 0xe6, 0x6d, 0x65, 0x20, 0x15, 0x62, 0x79, 0x9d, 0xd1, 0x22, 0xd4, 0x32, 0x87, 0x6e, 0x56, 0x85,
+ 0x57, 0x6c, 0xed, 0x56, 0x82, 0xa6, 0xed, 0x6f, 0x3a, 0x12, 0x5c, 0x53, 0xc3, 0x52, 0x76, 0xd1, 0x16, 0x90,
+ 0x6b, 0x87, 0x6d, 0xb8, 0xbf, 0xc9, 0x84, 0xf6, 0xbd, 0xaa, 0x80, 0x24, 0xd7, 0x6b, 0x81, 0x2c, 0xa8, 0xcb,
+ 0x21, 0x08, 0xdd, 0x94, 0x5d, 0x86, 0x2b, 0x0a, 0xcb, 0x2c, 0x5d, 0xa5, 0xfb, 0x1b, 0xda, 0x99, 0x42, 0xcb,
+ 0xef, 0xd4, 0x36, 0x2f, 0xb3, 0xba, 0x46, 0x6e, 0xbf, 0x2c, 0x31, 0x09, 0xc4, 0xe0, 0x0c, 0xbd, 0x18, 0x4d,
+ 0xa5, 0x0e, 0xf2, 0xea, 0x65, 0x2b, 0xb5, 0x57, 0x82, 0x47, 0xda, 0x2e, 0xed, 0xc3, 0xcf, 0xbf, 0x4c, 0xda,
+ 0x60, 0x5c, 0x3a, 0xf5, 0xe2, 0xff, 0x6e, 0x45, 0x71, 0x61, 0xa9, 0xd4, 0x7d, 0x75, 0xcd, 0x1d, 0xcf, 0xcf,
+ 0x83, 0xa2, 0x16, 0xce, 0x58, 0xf1, 0xe0, 0xfe, 0xba, 0x1a, 0x82, 0xe3, 0x77, 0x6f, 0x56, 0x62, 0x68, 0xae,
+ 0xd7, 0x66, 0x64, 0x31, 0x36, 0x58, 0xb1, 0x0f, 0xcb, 0x16, 0x78, 0x4d, 0x6c, 0x46, 0x17, 0xb7, 0xd9, 0xf0,
+ 0x15, 0x80, 0xe7, 0x97, 0x09, 0x25, 0xbe, 0x98, 0xd9, 0xe1, 0x48, 0x37, 0x63, 0x11, 0xd0, 0xf1, 0xd5, 0x00,
+ 0x4c, 0xf4, 0x9a, 0x3e, 0x24, 0xdf, 0x33, 0x03, 0x68, 0x6b, 0x79, 0x31, 0x30, 0x1b, 0xfc, 0x17, 0x18, 0xba,
+ 0x2c, 0x5f, 0x18, 0x65, 0xb3, 0xf7, 0x86, 0x3a, 0xdc, 0x6f, 0x7e, 0x42, 0xfb, 0x3f, 0x16, 0x86, 0x7d, 0x46,
+ 0xb0, 0x8e, 0x9a, 0x05, 0x38, 0x52, 0x56, 0x80, 0xef, 0x3c, 0x65, 0x5b, 0xc2, 0x59, 0x64, 0x18, 0xe7, 0x08,
+ 0xe6, 0x9f, 0x6e, 0x81, 0xa6, 0xb0, 0x96, 0xb6, 0x99, 0x88, 0x20, 0x13, 0x8f, 0x72, 0x93, 0xbb, 0xc8, 0x68,
+ 0x3f, 0x3f, 0xf8, 0xe4, 0x55, 0xfa, 0x41, 0x94, 0x1d, 0xba, 0x30, 0x2c, 0xc5, 0x34, 0x1b, 0x27, 0x0b, 0x20,
+ 0x6d, 0xb5, 0x07, 0x07, 0xf5, 0x59, 0x25, 0x35, 0xcc, 0x11, 0x44, 0x31, 0x56, 0x44, 0x93, 0xf3, 0x84, 0x0a,
+ 0x3e, 0xe4, 0x30, 0xe5, 0x39, 0xcf, 0x8e, 0xe3, 0xb9, 0x7d, 0x94, 0xf1, 0xe7, 0x48, 0xf3, 0x9b, 0x52, 0x61,
+ 0x05, 0x39, 0x91, 0xb7, 0xc2, 0x20, 0x77, 0xe7, 0x2f, 0xfe, 0xd7, 0xbf, 0xfd, 0x9c, 0xab, 0x31, 0xb4, 0x64,
+ 0x03, 0xb7, 0x42, 0xeb, 0x99, 0xeb, 0x10, 0x8d, 0x7c, 0xaa, 0xe2, 0x3a, 0x59, 0x2c, 0x5d, 0xb5, 0xcb, 0xf9,
+ 0x0b, 0xe0, 0xe4, 0x6b, 0x3f, 0x80, 0xa7, 0x8f, 0x0a, 0x7e, 0x7a, 0x2a, 0x50, 0x6b, 0xc9, 0x9c, 0x9b, 0x21,
+ 0x77, 0xcb
};
// context = illuminazione
@@ -1535,53 +2022,53 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_JAPANESE__)
-// wake-word = konnichiwa konpyūtā
+// wake-word = こんにちは コンピューター
static const uint8_t KEYWORD_ARRAY[] = {
- 0xf9, 0x5a, 0xc7, 0xf5, 0xa7, 0xe9, 0x06, 0x3f, 0x00, 0x3a, 0x82, 0x94, 0x96, 0xc2, 0xa7, 0x82, 0xc3, 0x85,
- 0xc3, 0xec, 0xd9, 0x43, 0x14, 0x8f, 0x2a, 0xcf, 0x34, 0x77, 0x17, 0xfc, 0x81, 0x08, 0xf2, 0xb0, 0x16, 0x42,
- 0x3b, 0x2d, 0x95, 0xb3, 0xad, 0x00, 0xfc, 0xbb, 0x15, 0x2e, 0xba, 0x7e, 0x8a, 0x28, 0xfc, 0x46, 0x38, 0x6d,
- 0xeb, 0x07, 0xa7, 0xc3, 0x53, 0x2e, 0x3c, 0xd5, 0x3c, 0x69, 0xc5, 0x1d, 0x46, 0x1f, 0x0e, 0x93, 0x81, 0xc9,
- 0x8a, 0xc8, 0x32, 0xbe, 0x8f, 0xb6, 0xb2, 0x8a, 0x67, 0x1b, 0xc6, 0xba, 0x66, 0xf9, 0x2d, 0x48, 0x74, 0x0f,
- 0x31, 0xb2, 0x1d, 0x59, 0xe8, 0x65, 0x90, 0x0a, 0xea, 0x01, 0x03, 0x2e, 0xaf, 0x95, 0x7b, 0x15, 0x2a, 0xdb,
- 0xa4, 0x36, 0x73, 0x15, 0xe5, 0x23, 0xdc, 0xec, 0x93, 0x4e, 0x16, 0x04, 0x1d, 0x4c, 0x5b, 0x16, 0x25, 0x38,
- 0x61, 0xba, 0xc2, 0x48, 0x52, 0x2c, 0xa2, 0xfb, 0x59, 0xb6, 0x7b, 0x11, 0xc6, 0x5e, 0x96, 0x1b, 0xe4, 0x0d,
- 0x01, 0x8d, 0x22, 0xea, 0xbd, 0x1a, 0xb2, 0x31, 0x70, 0xa9, 0x1b, 0x25, 0x07, 0x0a, 0x17, 0xff, 0xf4, 0xfd,
- 0xdf, 0xf4, 0x0f, 0x60, 0xb7, 0x9f, 0xaa, 0x4c, 0xb9, 0xed, 0x97, 0x16, 0xc5, 0x03, 0x28, 0xef, 0xe8, 0x41,
- 0x2a, 0x45, 0x72, 0x48, 0xa1, 0x8f, 0x2c, 0x89, 0x23, 0x78, 0x50, 0xe1, 0xbe, 0xe1, 0x16, 0x63, 0x1b, 0x9f,
- 0x3b, 0x33, 0xf4, 0x7b, 0xf0, 0xfa, 0xd4, 0xfe, 0x6f, 0x54, 0x69, 0x8b, 0x89, 0x7b, 0x2f, 0x4f, 0x3f, 0x4b,
- 0xf7, 0x8c, 0xed, 0x99, 0x52, 0x87, 0x94, 0x26, 0x04, 0x51, 0xd9, 0x57, 0xab, 0xf7, 0xc3, 0x89, 0xc9, 0x46,
- 0x59, 0xb4, 0x0e, 0xef, 0xa1, 0xf3, 0x7a, 0x30, 0xec, 0x43, 0xfe, 0xf8, 0x7d, 0x9c, 0x94, 0x1f, 0xa2, 0xf2,
- 0x5d, 0x69, 0x01, 0xdd, 0x7f, 0xf7, 0x3c, 0x72, 0x7b, 0xa9, 0xa5, 0x99, 0x0d, 0xe9, 0x46, 0xb1, 0x36, 0x76,
- 0x2f, 0x4c, 0xf6, 0x65, 0x33, 0xb1, 0x0f, 0x90, 0x37, 0x62, 0xd2, 0xb7, 0x5b, 0x5b, 0x8b, 0xef, 0x0e, 0x3f,
- 0x97, 0xcd, 0xbf, 0x1e, 0xba, 0x65, 0x69, 0xaf, 0x99, 0xab, 0xa7, 0x20, 0xe3, 0x4f, 0xf3, 0x26, 0xda, 0x3c,
- 0x06, 0xb9, 0x10, 0xcc, 0x4e, 0x7d, 0xb4, 0x23, 0x51, 0xa4, 0x0b, 0x36, 0x40, 0x46, 0xa5, 0x2b, 0xe7, 0xa8,
- 0xd4, 0x30, 0xdb, 0x92, 0x5a, 0x10, 0x26, 0x23, 0x34, 0x07, 0x89, 0x1c, 0x93, 0xda, 0xf9, 0x0d, 0x5d, 0x59,
- 0xa9, 0x19, 0xfc, 0x02, 0x54, 0xfd, 0x68, 0x6d, 0x8e, 0x25, 0xf9, 0xf5, 0x76, 0xe0, 0x3e, 0x0a, 0x15, 0xce,
- 0x89, 0xdc, 0x53, 0xf6, 0xb7, 0xd3, 0xb6, 0xda, 0xc7, 0xdb, 0x36, 0x03, 0x49, 0xe1, 0x66, 0x43, 0x3c, 0xa8,
- 0x62, 0x31, 0xb9, 0x8e, 0x94, 0xc8, 0x74, 0x30, 0x67, 0x37, 0x27, 0x8f, 0x91, 0x83, 0xda, 0xc0, 0x17, 0xeb,
- 0xb6, 0x87, 0x72, 0x38, 0x2e, 0x21, 0xd7, 0x74, 0x28, 0x8f, 0x20, 0xe6, 0x37, 0x74, 0x7e, 0xe9, 0xa9, 0x48,
- 0x33, 0x42, 0x17, 0x12, 0x3d, 0x47, 0xc3, 0x25, 0x63, 0x26, 0xd0, 0x56, 0xbe, 0xaa, 0x79, 0x14, 0x0b, 0x93,
- 0xc6, 0xf1, 0x9a, 0x31, 0x71, 0x99, 0x22, 0x3d, 0xad, 0x93, 0xeb, 0x2f, 0xc2, 0x7b, 0x89, 0xb2, 0x28, 0xae,
- 0xcd, 0x60, 0xbd, 0x26, 0xc5, 0x71, 0x3c, 0x30, 0x55, 0xc0, 0xc8, 0xbd, 0xf9, 0x9b, 0x47, 0x58, 0x86, 0xcf,
- 0x69, 0x9a, 0x3a, 0xb0, 0x66, 0xc9, 0x04, 0x95, 0x84, 0x5c, 0x10, 0xa7, 0xab, 0x35, 0x82, 0x30, 0xfb, 0xfc,
- 0xe8, 0x8b, 0xab, 0xb0, 0xc1, 0x44, 0xff, 0x28, 0x6b, 0x8a, 0x85, 0xa6, 0xfe, 0x2c, 0x66, 0x70, 0x38, 0x6d,
- 0x79, 0xbb, 0xde, 0x03, 0x1e, 0x17, 0x64, 0x09, 0xbd, 0x0c, 0x86, 0x39, 0xbb, 0x30, 0xdb, 0x2f, 0x45, 0x2b,
- 0x5c, 0x5d, 0xb5, 0x48, 0xa6, 0xa0, 0x6e, 0x06, 0xcf, 0x36, 0x9c, 0xed, 0x3f, 0x5e, 0x22, 0x70, 0xc9, 0x9b,
- 0xaf, 0x29, 0x7b, 0x11, 0xa3, 0x16, 0x45, 0x89, 0xd5, 0x3d, 0x0d, 0xff, 0xfd, 0x3b, 0x06, 0x3d, 0xf9, 0x46,
- 0x3e, 0xa4, 0x0a, 0xcf, 0xa3, 0x0a, 0xb5, 0x95, 0x05, 0xdb, 0xad, 0x0e, 0x8e, 0xb6, 0x36, 0xf2, 0xd6, 0xd1,
- 0xa1, 0xee, 0x48, 0x36, 0xa0, 0xa6, 0xba, 0x7a, 0x9c, 0xd6, 0x28, 0x65, 0xe6, 0xfb, 0xe6, 0x43, 0x81, 0x14,
- 0xdc, 0xd5, 0x3b, 0x4b, 0x2d, 0x4b, 0x8a, 0x3a, 0x2d, 0x23, 0x8b, 0xc0, 0x83, 0x61, 0x5c, 0x68, 0xf2, 0xaf,
- 0xbf, 0x5f, 0x21, 0xc5, 0x8a, 0xa7, 0xa5, 0x97, 0x8d, 0xb8, 0xd2, 0x49, 0x0d, 0xcd, 0x5f, 0x9f, 0x36, 0xc4,
- 0x2c, 0x73, 0xa1, 0xe8, 0xa9, 0xb1, 0x7d, 0x6c, 0xaf, 0x3a, 0x67, 0x8c, 0xe9, 0xf8, 0xa9, 0x1c, 0xd1, 0xc7,
- 0x97, 0x1f, 0xee, 0x6c, 0x38, 0x07, 0x9f, 0x83, 0xec, 0x7c, 0xcf, 0xc2, 0x4c, 0xf7, 0x2d, 0x0f, 0x87, 0x23,
- 0x05, 0x56, 0x08, 0x52, 0xa9, 0xad, 0xab, 0x3f, 0x7f, 0x0a, 0xed, 0xd2, 0xca, 0x6b, 0xb5, 0xb2, 0x47, 0x79,
- 0x33, 0x4a, 0x7e, 0x9c, 0x56, 0x74, 0xe2, 0x3e, 0x57, 0x08, 0xb5, 0x49, 0xa4, 0x60, 0x33, 0xea, 0x9b, 0xe4,
- 0x38, 0x6b, 0x6b, 0x80, 0xde, 0x1c, 0xdd, 0x5d, 0x16, 0xb2, 0x66, 0xd2, 0x8c, 0x96, 0x5f, 0x14, 0x92, 0x87,
- 0xa4, 0x18, 0x42, 0xa8, 0xe8, 0x77, 0x1d, 0x1f, 0xf3, 0xd7, 0x89, 0xa4, 0x33, 0xee, 0xdc, 0x45, 0xa1, 0xe5,
- 0x59, 0x58, 0x62, 0xe3, 0xe2, 0x6b, 0x14, 0xec, 0x5d, 0xbd, 0x0e, 0x37, 0xdd, 0x2b, 0x17, 0xc3, 0xee, 0x30,
- 0x97, 0x15, 0x3a, 0xf2, 0xc9, 0xae, 0x93, 0xaf, 0x51, 0x00, 0x14, 0x2a, 0xe0, 0xf7, 0x1a, 0xd0, 0xee, 0xf5,
- 0x25, 0x0f, 0x19, 0x50, 0x1a, 0x53, 0xc3, 0xf8, 0xc5, 0x0c, 0xfd, 0x50, 0x37, 0x9a, 0xcc, 0x3a, 0xea, 0xe0,
- 0xc6, 0x6a, 0x91, 0x9c
+ 0x0c, 0xd2, 0x22, 0x12, 0xb5, 0x59, 0xe6, 0xf1, 0x07, 0x3a, 0x41, 0x98, 0xb9, 0x0b, 0x68, 0x9d, 0xf6, 0x00,
+ 0x8d, 0x85, 0xb2, 0x2e, 0x0d, 0x94, 0xc1, 0x08, 0x9e, 0x13, 0xc7, 0x50, 0xdc, 0xe3, 0x7a, 0x30, 0x22, 0xe1,
+ 0x19, 0xff, 0x5f, 0xe4, 0xa0, 0xd8, 0x18, 0xea, 0xda, 0xf5, 0x40, 0x1a, 0x7d, 0xc9, 0xe9, 0x32, 0xab, 0x56,
+ 0x95, 0x7b, 0xd0, 0x48, 0xb2, 0xef, 0x4f, 0x93, 0x1d, 0x1c, 0x79, 0x45, 0x55, 0x75, 0x5b, 0xa7, 0x05, 0x99,
+ 0xee, 0x35, 0x32, 0xe4, 0x24, 0x57, 0xb6, 0x1f, 0x8c, 0xef, 0x6e, 0xe6, 0x67, 0x38, 0xaa, 0x8e, 0x84, 0x40,
+ 0x7b, 0x2c, 0xb3, 0xba, 0x6c, 0x3e, 0xbe, 0x4c, 0x35, 0xbf, 0x60, 0x76, 0x2d, 0x56, 0x97, 0x73, 0x3f, 0xa0,
+ 0x92, 0x74, 0xf4, 0x80, 0xba, 0x75, 0x4d, 0x24, 0x35, 0x2d, 0xe5, 0x17, 0xd8, 0x89, 0x9c, 0xc9, 0x7a, 0xbd,
+ 0xf6, 0xc2, 0xaf, 0x0d, 0x68, 0x75, 0xb4, 0x0e, 0x7c, 0x83, 0x95, 0xf3, 0xbf, 0x8d, 0x0d, 0x96, 0x8c, 0xfd,
+ 0xf4, 0xd6, 0x61, 0xa6, 0x1d, 0xb3, 0x2b, 0x8a, 0x0a, 0x3f, 0xcb, 0xac, 0x77, 0x6c, 0x8d, 0x01, 0xc8, 0x96,
+ 0x8d, 0x05, 0x84, 0x6c, 0x34, 0x17, 0x17, 0x09, 0x71, 0xc3, 0x68, 0xd9, 0xe7, 0x55, 0x3a, 0x4d, 0x37, 0x14,
+ 0xe7, 0x0a, 0x87, 0xbc, 0xa2, 0x3c, 0xa2, 0xb5, 0xa7, 0xb2, 0xd7, 0x80, 0x5a, 0x92, 0x99, 0x1a, 0xc8, 0x1c,
+ 0x54, 0xc7, 0x47, 0x62, 0x7d, 0xfa, 0xe5, 0xec, 0xcb, 0x47, 0xb1, 0x74, 0xdd, 0xa4, 0x33, 0x8d, 0xad, 0x67,
+ 0x4e, 0x8a, 0x6e, 0x56, 0x94, 0x7b, 0x9b, 0xcc, 0xf1, 0x28, 0xd0, 0x81, 0xd1, 0xd0, 0xe3, 0x8a, 0xcd, 0xcc,
+ 0x1c, 0x9b, 0xde, 0xc7, 0xac, 0xe9, 0xb6, 0x4a, 0xe1, 0xbe, 0x15, 0xb2, 0x02, 0x19, 0x30, 0x0b, 0x7a, 0x94,
+ 0xcf, 0xf6, 0xa1, 0x71, 0x54, 0xfc, 0xe8, 0x3f, 0xd0, 0xba, 0x7f, 0x7e, 0x52, 0xb8, 0x6a, 0x13, 0x48, 0xa3,
+ 0xbb, 0xc3, 0x23, 0xff, 0xd9, 0x03, 0xdc, 0x6d, 0xe5, 0x97, 0x9e, 0xf1, 0x9d, 0x17, 0x23, 0x33, 0x77, 0x1d,
+ 0xff, 0xbd, 0x86, 0x02, 0x93, 0x8e, 0xf1, 0x56, 0xfd, 0x02, 0xb7, 0x3c, 0x13, 0x07, 0xea, 0x32, 0x6f, 0x11,
+ 0x28, 0x17, 0x53, 0x8a, 0xd6, 0xdc, 0x97, 0x83, 0xd9, 0x22, 0x47, 0xa8, 0x4c, 0x3f, 0xa2, 0xd1, 0x0c, 0x56,
+ 0x68, 0xc4, 0xb3, 0x3d, 0xfa, 0x3f, 0xf0, 0x3f, 0x13, 0xd8, 0xfd, 0x5e, 0x8b, 0x25, 0xd3, 0xb5, 0x0f, 0x10,
+ 0xd9, 0xfe, 0x83, 0xc3, 0x4b, 0x7d, 0x26, 0x86, 0x3f, 0x3d, 0xf3, 0x40, 0xc0, 0x0c, 0xb1, 0x44, 0xfa, 0x19,
+ 0x57, 0xfc, 0x1f, 0xeb, 0x1c, 0x85, 0x4f, 0xc4, 0x9d, 0x10, 0x70, 0x99, 0x21, 0x49, 0xc3, 0x52, 0x29, 0x8d,
+ 0xde, 0xee, 0x73, 0xb6, 0xc1, 0x1e, 0x7a, 0x9b, 0x73, 0x09, 0xc9, 0x43, 0x1e, 0xeb, 0x7a, 0x45, 0x94, 0x52,
+ 0xd9, 0x5c, 0xaa, 0x1c, 0x57, 0xa6, 0x1f, 0x7c, 0xdf, 0x47, 0xe4, 0xd7, 0xeb, 0xab, 0x98, 0x44, 0xbd, 0x38,
+ 0x5f, 0xf6, 0xd2, 0xef, 0xfe, 0xc1, 0xe5, 0xee, 0xd7, 0x9a, 0xc1, 0xc6, 0xdb, 0x62, 0x91, 0xc4, 0x17, 0x67,
+ 0x3a, 0x1c, 0xf3, 0x19, 0xff, 0x2f, 0x9b, 0xed, 0x06, 0xcd, 0x95, 0xd0, 0x68, 0x00, 0x41, 0xc6, 0xcd, 0x2f,
+ 0xd8, 0x5b, 0xd0, 0x28, 0xaf, 0x22, 0x20, 0xbd, 0x5b, 0x9e, 0x3e, 0x79, 0x81, 0xd6, 0x7a, 0xea, 0xc3, 0xc2,
+ 0xab, 0x27, 0xa5, 0xdf, 0x1a, 0xa1, 0x96, 0x90, 0xab, 0xbd, 0x1d, 0x0a, 0xb4, 0x8d, 0x8f, 0x2c, 0x39, 0xab,
+ 0x09, 0xde, 0x8c, 0xe6, 0x81, 0x37, 0x0b, 0xac, 0x0d, 0x3d, 0xca, 0x4b, 0xc4, 0x45, 0x79, 0xb7, 0x11, 0x7b,
+ 0xad, 0x4b, 0xf6, 0x89, 0x9b, 0x97, 0x27, 0xa0, 0x7f, 0x46, 0x4b, 0x77, 0xd1, 0x77, 0xf3, 0xf5, 0x99, 0xc0,
+ 0x4a, 0xec, 0x08, 0x16, 0x2d, 0xa6, 0xde, 0xb8, 0x1b, 0x46, 0x4f, 0xe8, 0x56, 0xb5, 0x76, 0x7d, 0xb7, 0x2f,
+ 0x22, 0xc3, 0x52, 0x72, 0xa6, 0x28, 0xb3, 0x2f, 0x41, 0xe3, 0x32, 0x03, 0xbb, 0x17, 0xc8, 0xc7, 0x26, 0xca,
+ 0x07, 0x3b, 0xf4, 0x7f, 0x73, 0x88, 0xab, 0x86, 0xbe, 0x57, 0x63, 0xfe, 0xa7, 0x84, 0xdb, 0xd1, 0xeb, 0xd3,
+ 0x1a, 0xad, 0xe6, 0xbe, 0x2e, 0x08, 0x15, 0xd2, 0x6a, 0x49, 0xc9, 0x8b, 0x95, 0xb5, 0xa0, 0xc8, 0x9f, 0x56,
+ 0x00, 0x0b, 0xec, 0xfb, 0x27, 0x2e, 0xd3, 0x2a, 0x4e, 0xbf, 0xa9, 0xdc, 0xa9, 0x71, 0xfc, 0xb2, 0x68, 0x18,
+ 0x90, 0x5e, 0x33, 0xb7, 0xcc, 0xbd, 0x6d, 0x66, 0x55, 0x7d, 0xdf, 0x04, 0xfa, 0x81, 0x9e, 0xd3, 0x00, 0xf5,
+ 0x3c, 0xa5, 0x5d, 0x36, 0xf9, 0x83, 0x7f, 0x6f, 0xc0, 0x98, 0x0e, 0xac, 0x51, 0x4a, 0xbe, 0xc0, 0x96, 0x2f,
+ 0x40, 0xee, 0x01, 0x8d, 0x07, 0x1c, 0x4d, 0xc4, 0x34, 0xdf, 0xcb, 0x2d, 0x55, 0xbe, 0x2a, 0x39, 0xa6, 0x90,
+ 0x37, 0xec, 0x5b, 0xe3, 0xfd, 0x7d, 0xe0, 0x3b, 0x9f, 0x52, 0xac, 0x60, 0xce, 0xbe, 0x76, 0x63, 0xe5, 0x4f,
+ 0x9f, 0xec, 0x43, 0xcf, 0x5a, 0xb0, 0xee, 0x78, 0x45, 0x3e, 0xd5, 0x81, 0x56, 0x2c, 0x1a, 0xae, 0xda, 0xbb,
+ 0xf5, 0x1a, 0x29, 0x96, 0xd5, 0x1a, 0x81, 0xcc, 0x2c, 0x6f, 0xc1, 0x76, 0x93, 0x97, 0x10, 0x3d, 0x27, 0xce,
+ 0x1b, 0xa5, 0xc0, 0x04, 0xca, 0xc0, 0xa2, 0x3d, 0x54, 0x41, 0xec, 0x7e, 0x82, 0xb7, 0x8c, 0x76, 0x39, 0x33,
+ 0xb1, 0x14, 0xa3, 0x04, 0x16, 0x4d, 0x87, 0xe5, 0x8a, 0x8d, 0x59, 0x99, 0x11, 0x64, 0x06, 0xee, 0xf2, 0x25,
+ 0xb5, 0xd3, 0xa7, 0xf4, 0x4a, 0x30, 0x97, 0x51, 0xf7, 0x53, 0xbd, 0xa6, 0x06, 0x54, 0xb4, 0x58, 0x50, 0x45,
+ 0x7b, 0xae, 0x41, 0x86, 0xa2, 0x78, 0x50, 0x7d, 0xe4, 0x24, 0xe9, 0xb9, 0xcf, 0x73, 0xba, 0x81, 0x98, 0xa7,
+ 0xa2, 0x0d, 0x43, 0x40
};
// context = sumāto_shōmei
@@ -2002,42 +2489,42 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_KOREAN__)
-// wake-word = annyeong keompyuteo
+// wake-word = 안녕 컴퓨터
static const uint8_t KEYWORD_ARRAY[] = {
- 0xca, 0x3d, 0xa9, 0x17, 0x6d, 0xd1, 0x76, 0x57, 0x8a, 0xdb, 0xe5, 0x85, 0x47, 0x26, 0xfe, 0xad, 0x92, 0x53,
- 0xa4, 0x2f, 0x81, 0xf0, 0x00, 0x14, 0xae, 0xa3, 0xa9, 0x97, 0xb1, 0x61, 0xea, 0x79, 0x9e, 0xc8, 0x76, 0xdd,
- 0xe1, 0x5a, 0x0f, 0x3b, 0x66, 0x8e, 0xd0, 0x24, 0xc9, 0xed, 0x76, 0xcc, 0x68, 0x8e, 0x0d, 0xcb, 0x8e, 0x6a,
- 0xe8, 0xa9, 0x64, 0xc2, 0x19, 0x35, 0x83, 0xb7, 0xd0, 0x62, 0xc3, 0x1d, 0x1b, 0x4f, 0x11, 0x31, 0x9c, 0xbf,
- 0x81, 0x61, 0x87, 0xe2, 0xf1, 0xb5, 0xc4, 0x2f, 0xe8, 0x63, 0x00, 0xc3, 0x1d, 0x26, 0x3a, 0xf6, 0x01, 0x47,
- 0x63, 0x65, 0xf6, 0xe3, 0x51, 0xaa, 0x8a, 0x5f, 0x12, 0xbb, 0xe6, 0xf7, 0x81, 0xb3, 0x4e, 0xb7, 0xa0, 0xb4,
- 0x4e, 0xe5, 0x86, 0xae, 0x18, 0xbb, 0x54, 0x45, 0xc9, 0x52, 0xe4, 0x2e, 0xce, 0x84, 0xcf, 0x49, 0x21, 0xff,
- 0x81, 0xb7, 0xbe, 0x4d, 0x75, 0x8d, 0xa5, 0x74, 0xdb, 0xc6, 0xb9, 0x30, 0xc2, 0xb6, 0x1c, 0xd2, 0x69, 0x67,
- 0xe8, 0x80, 0xab, 0xcd, 0xcd, 0xd3, 0x3e, 0xb4, 0x23, 0xc8, 0xae, 0xd1, 0xba, 0x17, 0xba, 0x95, 0x1c, 0x68,
- 0xba, 0x96, 0xa6, 0x53, 0x14, 0x95, 0x41, 0xf6, 0xd6, 0xc4, 0x78, 0x7d, 0x69, 0xb0, 0xd9, 0xb6, 0x21, 0xe7,
- 0x86, 0xc5, 0xab, 0xc6, 0xeb, 0xf5, 0xf6, 0xd4, 0x98, 0xb6, 0xa7, 0x1a, 0x84, 0x02, 0xfc, 0xcf, 0xc0, 0x15,
- 0x1a, 0x66, 0x6f, 0x25, 0xea, 0x03, 0x79, 0xad, 0x14, 0x15, 0x74, 0x62, 0x8b, 0x7e, 0x53, 0x2f, 0x94, 0xea,
- 0xf8, 0xd6, 0x1f, 0x4d, 0xe6, 0xfd, 0xe3, 0xa0, 0xf7, 0x9a, 0x3f, 0x37, 0x63, 0x6f, 0x48, 0x27, 0xea, 0x86,
- 0xa2, 0x0e, 0x41, 0x8b, 0xe5, 0xd9, 0xcb, 0x1b, 0x9b, 0x50, 0x0f, 0x71, 0xd5, 0xa8, 0x90, 0x0f, 0xac, 0x57,
- 0x7b, 0xc2, 0x81, 0x77, 0x11, 0x8c, 0x31, 0x29, 0x45, 0xc8, 0x51, 0x2d, 0xa8, 0x77, 0x4b, 0xed, 0x0b, 0x31,
- 0x0e, 0x14, 0x3f, 0xd6, 0xa3, 0xb1, 0xb6, 0xc1, 0x54, 0xe1, 0xbf, 0x72, 0xf6, 0xdc, 0xcc, 0x27, 0xeb, 0x47,
- 0x0d, 0x04, 0x8d, 0xe0, 0xf3, 0xe3, 0xb4, 0xaf, 0x73, 0x09, 0x7a, 0x82, 0x58, 0xaa, 0xca, 0x97, 0xc2, 0x82,
- 0x46, 0xbf, 0xad, 0x4b, 0x2d, 0x20, 0x2d, 0xef, 0xf7, 0x21, 0x29, 0x36, 0x3b, 0xa9, 0x87, 0x61, 0x9a, 0x66,
- 0x53, 0xfb, 0xa7, 0x5f, 0x02, 0xc7, 0x60, 0x4c, 0x44, 0x87, 0x54, 0x3f, 0x60, 0xa4, 0x0d, 0xc0, 0x4a, 0x1c,
- 0xa8, 0x50, 0xe0, 0xbd, 0x37, 0x16, 0x95, 0x58, 0xea, 0x10, 0xa5, 0x76, 0xa4, 0x1f, 0x58, 0xbe, 0x1f, 0x01,
- 0xc5, 0x2b, 0x1d, 0x3b, 0x3b, 0xc9, 0xca, 0xbb, 0x52, 0xf3, 0xe8, 0x9c, 0xbf, 0x68, 0xe9, 0xa5, 0x58, 0x42,
- 0x1f, 0x01, 0xfd, 0xe8, 0xc0, 0x7c, 0xff, 0x23, 0xf8, 0xbb, 0x46, 0xcd, 0xf2, 0xc4, 0x92, 0x86, 0x3f, 0xf7,
- 0x43, 0xba, 0x23, 0x53, 0x20, 0x1b, 0x93, 0x11, 0x93, 0xe8, 0x89, 0x5b, 0xfb, 0x95, 0x23, 0xd2, 0x74, 0xab,
- 0xed, 0xed, 0xe9, 0xc9, 0x5e, 0x3e, 0xfd, 0xe2, 0x21, 0xfe, 0x01, 0xf7, 0x11, 0xd6, 0xd2, 0x5a, 0x12, 0x59,
- 0xfa, 0xa1, 0x91, 0x3f, 0x99, 0x15, 0x24, 0x14, 0x53, 0xd5, 0xc2, 0xaa, 0xf3, 0xdc, 0xb5, 0xb3, 0xca, 0x57,
- 0x05, 0x8b, 0x48, 0x3e, 0xbc, 0x94, 0x7d, 0xe7, 0x2f, 0xae, 0x18, 0x54, 0xa8, 0x37, 0x07, 0x83, 0x89, 0x5a,
- 0x06, 0x0c, 0xdf, 0xd6, 0xaa, 0x14, 0x74, 0x4d, 0xdd, 0x25, 0x2b, 0xad, 0x7c, 0xfc, 0x2a, 0xb1, 0x7b, 0x12,
- 0x4d, 0x88, 0xa9, 0x94, 0x50, 0xd8, 0x47, 0x00, 0x35, 0x22, 0x32, 0x9b, 0xf2, 0xf2, 0x1d, 0x9c, 0x28, 0x2d,
- 0x5b, 0xc2, 0x4e, 0x79, 0x7a, 0x9d, 0x76, 0x76, 0xa6, 0xb5, 0x18, 0x54, 0x00, 0xd8, 0x3c, 0x7d, 0x37, 0x82,
- 0x38, 0x20, 0xab, 0x19, 0xce, 0x85, 0xda, 0x1f, 0x49, 0x82, 0x0e, 0x5a, 0x56, 0xfc, 0x12, 0x5a, 0x1c, 0x86,
- 0x9a, 0x00, 0x7d, 0xf3, 0xae, 0xee, 0xa8, 0xe6, 0xe0, 0x82, 0xc6, 0x46, 0x0b, 0x67, 0x2d, 0x2d, 0xc9, 0x00,
- 0x8a, 0x1f, 0xe4, 0x34, 0xdf, 0x3e, 0x7d, 0xdb, 0x15, 0xb4, 0xad, 0x80, 0xc6, 0x21, 0x9e, 0x80, 0xdf, 0xd0,
- 0x77, 0x98, 0xaf, 0xa0, 0xe7, 0xb0, 0xee, 0x8f, 0x38, 0x92, 0x36, 0x8b, 0x24, 0xd9, 0xeb, 0x37, 0xc7, 0xfb,
- 0x20, 0x74, 0x61, 0x63, 0x6c, 0x53, 0xf9, 0x7a, 0x65, 0x26, 0x5c, 0xa0, 0xb0, 0x5b, 0x22, 0x0d, 0x8e, 0x68
+ 0x6f, 0x77, 0x54, 0x89, 0xec, 0xb1, 0x5b, 0x25, 0xad, 0xd5, 0xb5, 0xc1, 0x15, 0x17, 0x09, 0x6e, 0x82, 0xe5,
+ 0x50, 0xb1, 0xde, 0xa4, 0x9f, 0x12, 0x5f, 0x18, 0xb7, 0x19, 0x24, 0xb3, 0x3b, 0xe3, 0xeb, 0x83, 0x09, 0xc2,
+ 0x90, 0x12, 0x93, 0x88, 0xa7, 0x24, 0x40, 0xaf, 0x3f, 0xee, 0xbd, 0x56, 0x6d, 0x13, 0x8f, 0xbb, 0x97, 0xef,
+ 0xae, 0x31, 0x17, 0xd2, 0x14, 0x97, 0xd5, 0x19, 0x7c, 0xf8, 0xa2, 0xd5, 0xc9, 0xda, 0xc7, 0x9f, 0xdc, 0x3f,
+ 0x45, 0x16, 0xbf, 0xf2, 0x14, 0xf3, 0xe6, 0x80, 0xee, 0xd7, 0xc7, 0xdc, 0x4e, 0xc7, 0xcb, 0x8c, 0xf6, 0x21,
+ 0xd8, 0x8a, 0xe2, 0x05, 0x80, 0x73, 0xd9, 0x21, 0x06, 0x84, 0x9b, 0x66, 0x36, 0xd6, 0x3e, 0x00, 0x00, 0x09,
+ 0xbb, 0x51, 0x91, 0x06, 0x4b, 0x93, 0x22, 0xbe, 0xb8, 0x8a, 0x91, 0xa0, 0x4a, 0x43, 0x1b, 0xa8, 0xdd, 0x67,
+ 0xb6, 0xaf, 0x4a, 0xe1, 0xfd, 0x72, 0x16, 0x46, 0xfa, 0x02, 0xf5, 0xcb, 0x93, 0xbd, 0xa4, 0x00, 0xf8, 0x76,
+ 0xf6, 0x4d, 0x3f, 0xab, 0x9d, 0x0a, 0xcf, 0x2f, 0xb6, 0x46, 0x25, 0xa7, 0x50, 0xfe, 0xe5, 0xd6, 0x03, 0xb1,
+ 0x9d, 0x46, 0x67, 0x6b, 0xc1, 0x41, 0xe6, 0x2e, 0x76, 0x0d, 0x9b, 0xc6, 0xb1, 0xe2, 0x43, 0x18, 0x7f, 0x86,
+ 0x99, 0xec, 0x38, 0x5c, 0x1d, 0x87, 0x6f, 0x68, 0x5c, 0xfd, 0x2f, 0xe9, 0x73, 0x62, 0x0b, 0x7e, 0xc2, 0x81,
+ 0xfa, 0xc8, 0x04, 0x8c, 0x2a, 0x86, 0x7f, 0xb2, 0xe6, 0x07, 0xa3, 0xc5, 0xf8, 0x4c, 0xd8, 0xda, 0x44, 0x90,
+ 0x9d, 0x3e, 0x82, 0x27, 0xd6, 0x1d, 0x7a, 0x98, 0x52, 0xeb, 0x0f, 0xf8, 0x0a, 0xb8, 0x9c, 0xd0, 0x49, 0x72,
+ 0xf1, 0x2f, 0x17, 0x9f, 0x85, 0x4c, 0x22, 0xbc, 0x48, 0x36, 0x76, 0x25, 0x39, 0x87, 0x29, 0x1f, 0xfe, 0x27,
+ 0x76, 0x27, 0xe1, 0xf8, 0x36, 0x66, 0x7f, 0x24, 0xca, 0x46, 0x20, 0x83, 0x69, 0xd9, 0x24, 0xb5, 0xd2, 0xcb,
+ 0x1c, 0xcd, 0x3e, 0x68, 0xc4, 0xd9, 0xbd, 0xae, 0x84, 0x31, 0x1f, 0x7e, 0xb1, 0xe1, 0x84, 0xc0, 0x80, 0x59,
+ 0x61, 0xa2, 0x01, 0xa1, 0x97, 0xaf, 0x4a, 0xf8, 0x2a, 0x74, 0x29, 0xdd, 0x75, 0x8d, 0xec, 0xab, 0x89, 0xc9,
+ 0x7f, 0x14, 0x5b, 0xf6, 0xd5, 0x64, 0x5a, 0x02, 0xa1, 0x05, 0x9f, 0x76, 0x89, 0xd4, 0x6c, 0x6b, 0xff, 0x98,
+ 0x16, 0xd7, 0xcb, 0x01, 0xa2, 0x69, 0x12, 0xd2, 0x33, 0x95, 0x94, 0x4e, 0x99, 0x64, 0xec, 0xab, 0x71, 0x59,
+ 0x62, 0x4c, 0x5b, 0x19, 0x5e, 0x1b, 0x4e, 0x64, 0xd6, 0xcc, 0x5f, 0x94, 0xe2, 0x55, 0x6d, 0xd2, 0xd6, 0xec,
+ 0x7b, 0xbd, 0x67, 0xcf, 0x59, 0xc7, 0x71, 0x2d, 0x71, 0x6d, 0x14, 0x02, 0xd1, 0x2c, 0x85, 0x26, 0x2c, 0x60,
+ 0x4c, 0xcc, 0xcc, 0xf8, 0xbf, 0x2f, 0xa8, 0xad, 0x63, 0x2e, 0x37, 0xaa, 0x3d, 0x12, 0xa1, 0xc0, 0xa4, 0x76,
+ 0xb7, 0x15, 0x0b, 0x1a, 0xf3, 0xb9, 0x81, 0x9f, 0x13, 0x9a, 0x7c, 0xc3, 0x66, 0x0a, 0x6b, 0xe6, 0x17, 0x55,
+ 0x47, 0x5e, 0x11, 0x06, 0x2c, 0x22, 0xb9, 0xb9, 0xf4, 0xab, 0x85, 0xa6, 0xae, 0xcd, 0xff, 0x96, 0x56, 0x37,
+ 0x9d, 0xde, 0xfc, 0x64, 0x59, 0xfe, 0xcd, 0xaf, 0x6c, 0x65, 0x37, 0x5c, 0x4e, 0x1e, 0x56, 0xd3, 0xc4, 0x5b,
+ 0x3a, 0x39, 0xe7, 0xdf, 0x03, 0xee, 0x19, 0x3f, 0x13, 0x65, 0x23, 0x14, 0xec, 0x1f, 0xe8, 0x3b, 0x7c, 0x10,
+ 0x30, 0xf0, 0xf5, 0x1c, 0xd7, 0x02, 0x3b, 0x65, 0x50, 0x8f, 0xc6, 0x38, 0x24, 0x5a, 0x46, 0xef, 0x92, 0xa3,
+ 0x29, 0x19, 0xdb, 0x91, 0x1c, 0x1d, 0x28, 0xb0, 0x07, 0xbe, 0xb0, 0x33, 0x67, 0x22, 0xb6, 0x29, 0xba, 0x0e,
+ 0xce, 0x97, 0x66, 0x18, 0x36, 0xd3, 0xb6, 0x9d, 0xa7, 0x74, 0x7f, 0x8f, 0xf0, 0xad, 0x1f, 0x45, 0x42, 0xda,
+ 0x32, 0x6a, 0xbc, 0x89, 0xe7, 0xf1, 0x2b, 0x37, 0x68, 0x96, 0x74, 0x2e, 0x59, 0x22, 0x1a, 0x95, 0x7c, 0x93,
+ 0x88, 0xba, 0x00, 0xea, 0xfc, 0xb3, 0x05, 0x08, 0xba, 0x64, 0xc1, 0x6f, 0xf2, 0xe9, 0x01, 0xd3, 0xa2, 0x79,
+ 0x63, 0x5b, 0x80, 0xac, 0x62, 0x88, 0xb2, 0xe0, 0x6b, 0x0f, 0xda, 0xb9, 0x39, 0x43, 0x3e, 0x56, 0x9e, 0xfc,
+ 0xd4, 0xb7, 0x4f, 0x8e, 0x3c, 0x16, 0x9d, 0x41, 0xbc, 0x57, 0x41, 0x57, 0x9c, 0x92, 0x73, 0xb9, 0x78, 0x09,
+ 0xbf, 0x9d, 0x34, 0x76, 0xba, 0x0c, 0x5a, 0xe0, 0xc8, 0x63, 0x8a, 0x60, 0x3e, 0x76, 0x34, 0x78, 0xdc, 0x01
};
// context = seumateu_jomyeong
@@ -2348,46 +2835,215 @@ static const uint8_t CONTEXT_ARRAY[] = {
0x00, 0x00
};
-#endif // __PV_LANGUAGE_KOREAN__
+#endif // __PV_LANGUAGE_KOREAN__
+
+#if defined(__PV_LANGUAGE_DUTCH__)
+
+// wake-word = hallo computer
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0xf9, 0x03, 0x31, 0xe5, 0x3e, 0x12, 0xd3, 0xc6, 0xb8, 0xa1, 0xe3, 0x5a, 0x5b, 0x3c, 0x24, 0x38, 0xc9, 0x1c,
+ 0xb9, 0xb0, 0xea, 0x3d, 0xb7, 0x25, 0xaa, 0x8f, 0x54, 0x8f, 0xf0, 0xa3, 0x5d, 0xaf, 0xf1, 0x8d, 0x8c, 0x28,
+ 0xa0, 0xba, 0xa9, 0x35, 0x76, 0x7a, 0x5e, 0xe3, 0xb8, 0xb0, 0xc2, 0x5f, 0x1b, 0x0b, 0x33, 0xa1, 0x7e, 0x08,
+ 0x39, 0x89, 0x91, 0xe2, 0xef, 0xfb, 0xce, 0x58, 0xfc, 0xa3, 0xf1, 0x1d, 0x1d, 0x3b, 0x20, 0x02, 0xd3, 0x12,
+ 0x5d, 0xf5, 0xa6, 0x13, 0x0d, 0x3d, 0x26, 0x3b, 0xbb, 0xab, 0x8c, 0x21, 0x53, 0xad, 0x41, 0xc2, 0x81, 0xfd,
+ 0xe4, 0x04, 0x66, 0xa0, 0xe5, 0x21, 0x1f, 0x85, 0x16, 0x25, 0x61, 0x0a, 0xff, 0xe0, 0x57, 0x5e, 0x5f, 0xfd,
+ 0x71, 0x40, 0xa6, 0x26, 0xe2, 0x86, 0x2e, 0xa4, 0xf6, 0x80, 0x55, 0xc7, 0xa7, 0x6f, 0x62, 0x13, 0x74, 0x1b,
+ 0x81, 0x41, 0xb3, 0xc6, 0x0a, 0xdc, 0xc2, 0x6c, 0xc6, 0x6a, 0x63, 0xb4, 0xb0, 0xaf, 0x17, 0x38, 0x6c, 0xf1,
+ 0xd5, 0xac, 0xb2, 0xf5, 0xbc, 0x01, 0x98, 0xa1, 0x43, 0x02, 0xf8, 0x68, 0x7e, 0x41, 0x8b, 0xfc, 0xa3, 0x01,
+ 0x0b, 0x93, 0x55, 0xac, 0x52, 0x7c, 0x9b, 0x77, 0x06, 0x69, 0x76, 0xb5, 0x5a, 0x24, 0x93, 0xdf, 0x67, 0x8a,
+ 0xa2, 0x2e, 0x76, 0xef, 0x50, 0x99, 0x67, 0x96, 0x44, 0x9d, 0xbc, 0x9f, 0x84, 0x83, 0x7f, 0x4a, 0xf0, 0xe0,
+ 0xc4, 0x00, 0x7b, 0xcf, 0x17, 0x0e, 0x87, 0xf8, 0xac, 0xb5, 0x11, 0xdb, 0xfc, 0x9f, 0xb5, 0x5f, 0x65, 0x47,
+ 0x50, 0x0c, 0x6e, 0x74, 0x4b, 0xf8, 0x03, 0xec, 0x7e, 0x2a, 0x82, 0xd6, 0x92, 0xbc, 0x86, 0x62, 0xd9, 0xf5,
+ 0xc6, 0x2b, 0xab, 0x9f, 0xd2, 0xe2, 0x32, 0x74, 0x1d, 0xb6, 0xed, 0x40, 0x3d, 0xa0, 0xd5, 0x70, 0xc4, 0x58,
+ 0xcd, 0x78, 0xbd, 0xc5, 0x55, 0x56, 0x08, 0x44, 0x20, 0x88, 0xd9, 0x4d, 0x24, 0xbc, 0x60, 0x7a, 0xf2, 0x67,
+ 0xaa, 0xa9, 0x3b, 0xe3, 0x49, 0xbd, 0x3a, 0xed, 0xcf, 0xdd, 0xf6, 0x23, 0x87, 0x11, 0x0d, 0xc4, 0xc1, 0x19,
+ 0x41, 0x9d, 0xd5, 0xb0, 0xc9, 0xa7, 0xd5, 0x0f, 0x56, 0x6e, 0xb7, 0x66, 0x16, 0x0a, 0x1d, 0x38, 0xd0, 0x36,
+ 0xbb, 0xbc, 0xcb, 0xfd, 0x7b, 0xab, 0x8e, 0x71, 0x9e, 0xac, 0x7f, 0x3b, 0x08, 0x26, 0xa2, 0xce, 0xf9, 0x90,
+ 0x61, 0xef, 0x6a, 0x93, 0x15, 0x4e, 0x34, 0xb6, 0x8d, 0x92, 0x79, 0x7d, 0xa8, 0xfa, 0x51, 0x6b, 0x8d, 0xbe,
+ 0xd5, 0x8d, 0x33, 0x3c, 0xe0, 0x17, 0xb6, 0x46, 0xbf, 0x31, 0x8c, 0x9b, 0x39, 0x05, 0x19, 0xc7, 0xf6, 0x7f,
+ 0xd6, 0xf8, 0x0b, 0x89, 0x66, 0xf7, 0x28, 0x2c, 0x3a, 0x0c, 0x06, 0x02, 0x45, 0x91, 0x5a, 0x56, 0xd4, 0x98,
+ 0x81, 0x73, 0x14, 0xa3, 0x39, 0x9b, 0xdb, 0xba, 0xc4, 0x96, 0x68, 0xc3, 0x50, 0x00, 0xbf, 0x37, 0x94, 0x46,
+ 0xd6, 0x07, 0x20, 0x3e, 0xa8, 0x85, 0xac, 0xd9, 0x41, 0x5a, 0x96, 0xee, 0x6d, 0x56, 0xe1, 0xac, 0x87, 0x97,
+ 0x82, 0xc5, 0xf4, 0xee, 0x9e, 0x25, 0x31, 0x92, 0xa5, 0x93, 0x21, 0x64, 0x8f, 0xe9, 0x58, 0x12, 0xfc, 0xe8,
+ 0xdb, 0x15, 0xd6, 0x2b, 0x9a, 0xc7, 0x59, 0xb7, 0xd8, 0x36, 0x99, 0x79, 0x99, 0xd7, 0x72, 0x8c, 0x74, 0x25,
+ 0xcf, 0xce, 0xd4, 0xee, 0x5e, 0xf0, 0x5c, 0x2f, 0x5a, 0x9b, 0x70, 0xd7, 0xac, 0x5d, 0x71, 0xb7, 0xb5, 0x7f,
+ 0xf5, 0x7b, 0x45, 0x94, 0x49, 0x86, 0xcc, 0xb7, 0xa7, 0x66, 0xf2, 0x4b, 0x6f, 0x93, 0xbf, 0x7e, 0xfd, 0x71,
+ 0x47, 0xc9, 0x46, 0x00, 0x97, 0x45, 0x2f, 0x9d, 0x87, 0x71, 0xfb, 0xcd, 0x45, 0x53, 0x57, 0x46, 0xcc, 0xb8,
+ 0x1e, 0xfc, 0x9c, 0xe6, 0x18, 0x93, 0xea, 0x2e, 0x55, 0x0a, 0x0d, 0x7b, 0xe3, 0x21, 0x3e, 0x04, 0x15, 0x6e,
+ 0x0f, 0xe0, 0xab, 0xe5, 0x0d, 0x07, 0xb8, 0x19, 0x12, 0xd1, 0x46, 0x4d, 0x6c, 0x0d, 0xb3, 0x46, 0x28, 0xbf,
+ 0xf1, 0x9c, 0x6a, 0x2b, 0xa0, 0x2a, 0xc0, 0xad, 0x5f, 0x8a, 0x0a, 0xfd, 0x55, 0x48, 0xda, 0x69, 0xae, 0xb0,
+ 0x38, 0x8f, 0x4f, 0xfb, 0x74, 0xfe, 0x74, 0xf7, 0xb3, 0x57, 0xaa, 0x48, 0x62, 0x53, 0x2b, 0x28, 0xb5, 0x1b,
+ 0xa1, 0xe2, 0x07, 0x26, 0xf1, 0x9f, 0x75, 0xe3, 0x04, 0xe3, 0xef, 0x9f, 0x40, 0x7b, 0x18, 0xe2, 0xb4, 0x2e,
+ 0x08, 0x20, 0x6f, 0x10, 0x97, 0xb5, 0x34, 0x95, 0xdd, 0x53, 0xbf, 0xbe, 0x0a, 0x1b, 0xd3, 0x52, 0x20, 0x5a,
+ 0x85, 0x6a, 0xbd, 0x72, 0xb9, 0x53, 0xd3, 0x08
+};
+
+// context = simple_context_nl
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x6c, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x84, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x20, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
+ 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x65, 0x65, 0x66, 0x20, 0x6d, 0x65, 0x20, 0x65, 0x65, 0x6e, 0x20, 0x24,
+ 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73,
+ 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f, 0x73, 0x22,
+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x22, 0x00,
+ 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00,
+ 0x17, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2c, 0x00,
+ 0x00, 0x00, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x00, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x00, 0x64,
+ 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x00, 0x65, 0x65, 0x6e, 0x00, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f,
+ 0x73, 0x00, 0x67, 0x65, 0x65, 0x66, 0x00, 0x6d, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00,
+ 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
+ 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x20, 0x00,
+ 0x00, 0x00, 0x03, 0x14, 0x05, 0x04, 0x27, 0x04, 0x23, 0x1d, 0x04, 0x26, 0x15, 0x05, 0x23, 0x14, 0x15, 0x16,
+ 0x25, 0x1b, 0x08, 0x10, 0x09, 0x14, 0x21, 0x0f, 0x04, 0x12, 0x15, 0x29, 0x08, 0x09, 0x0f, 0x25, 0x05, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
+ 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,
+ 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
+ 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
+ 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68,
+ 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
+ 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
+ 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_DUTCH__
+
+#if defined(__PV_LANGUAGE_POLISH__)
+
+// wake-word = cześć komputer
+static const uint8_t KEYWORD_ARRAY[] = {
+ 0x70, 0x6a, 0x9e, 0x88, 0xb8, 0x82, 0x7c, 0x87, 0xa7, 0x6e, 0x67, 0x28, 0x38, 0x37, 0x8e, 0xbb, 0x21, 0x69,
+ 0x6e, 0xb1, 0xef, 0xde, 0xf3, 0xbd, 0x1b, 0xd1, 0x9f, 0xbf, 0x9d, 0x8a, 0x8f, 0x8a, 0x16, 0x95, 0x35, 0x33,
+ 0xc6, 0xc4, 0x2a, 0x4a, 0x27, 0x2e, 0xd0, 0x53, 0x0a, 0x8c, 0xf3, 0x91, 0x16, 0x64, 0xb6, 0xff, 0x73, 0x57,
+ 0x3d, 0x4d, 0x82, 0x84, 0x6d, 0x28, 0x6f, 0x9e, 0x51, 0x9b, 0xb3, 0x73, 0x26, 0xea, 0x43, 0x5c, 0xbd, 0xc5,
+ 0xa5, 0xbb, 0x47, 0xe8, 0x6f, 0xcb, 0xb1, 0x9e, 0x92, 0x7c, 0x8b, 0x9b, 0x76, 0x0d, 0xd9, 0x12, 0x25, 0x66,
+ 0xd7, 0xdd, 0x20, 0x6b, 0xcf, 0x4a, 0x62, 0x9b, 0xc1, 0xcc, 0x24, 0xf7, 0x70, 0x61, 0xa8, 0xce, 0xdc, 0x77,
+ 0x14, 0x71, 0xbc, 0xd4, 0x1b, 0x52, 0xf6, 0x04, 0x73, 0xd6, 0x71, 0x1c, 0xed, 0x11, 0x6e, 0x98, 0xf2, 0x3b,
+ 0xa1, 0x5e, 0x00, 0x92, 0x99, 0x27, 0xed, 0xe9, 0xd8, 0xf0, 0xe4, 0x89, 0x65, 0x27, 0x1b, 0x31, 0x66, 0xca,
+ 0x2e, 0x39, 0x36, 0xc6, 0xe8, 0x89, 0x06, 0x0f, 0xac, 0xb6, 0x5c, 0x9a, 0xdc, 0x70, 0x1e, 0x06, 0x6c, 0x06,
+ 0x51, 0x35, 0xcd, 0x76, 0x7e, 0x3d, 0xc5, 0x5b, 0x03, 0x49, 0xa8, 0xf6, 0xd5, 0x39, 0xcf, 0x01, 0x19, 0xde,
+ 0x86, 0x05, 0x42, 0x9e, 0x85, 0xa6, 0x6a, 0xa6, 0x08, 0x12, 0x30, 0xa5, 0x6c, 0xb9, 0x99, 0xa9, 0x18, 0xdb,
+ 0xc6, 0xb1, 0x51, 0x65, 0xc1, 0xaf, 0xe8, 0xaf, 0x1e, 0x45, 0x4f, 0x39, 0x60, 0x13, 0xc5, 0xea, 0x79, 0x39,
+ 0x4f, 0x2d, 0xa3, 0xfd, 0x63, 0x3a, 0x64, 0xe0, 0xa0, 0xb7, 0xc3, 0xa1, 0xc4, 0x98, 0xed, 0x43, 0xc4, 0xc8,
+ 0x2b, 0x2d, 0x0d, 0x6d, 0xd1, 0xd3, 0xbe, 0x91, 0x86, 0x53, 0xdf, 0x1a, 0x75, 0x04, 0xeb, 0x79, 0xb7, 0x0a,
+ 0x06, 0x05, 0x6e, 0x81, 0xd4, 0xac, 0xa5, 0x43, 0xcb, 0x11, 0x26, 0x3f, 0x90, 0x9f, 0x6a, 0x49, 0x17, 0x41,
+ 0xef, 0x35, 0x3a, 0x35, 0xf1, 0xaa, 0xe3, 0xc1, 0x82, 0xb6, 0xdb, 0xab, 0xd9, 0x1e, 0xc4, 0xbb, 0xbf, 0xd2,
+ 0xb6, 0x28, 0xb6, 0xcf, 0x35, 0x03, 0x20, 0xfd, 0xca, 0x5c, 0xe3, 0xa0, 0x28, 0xce, 0xa4, 0x8e, 0xcc, 0xb8,
+ 0x1a, 0x91, 0x87, 0x4e, 0x0e, 0xf8, 0x2f, 0x5b, 0x30, 0x8b, 0x79, 0x05, 0x9f, 0x4a, 0x9a, 0xc9, 0xfe, 0xa0,
+ 0x2e, 0xac, 0xa3, 0x52, 0xa3, 0x2c, 0x5f, 0xe6, 0xf5, 0xe4, 0x12, 0xcc, 0xed, 0x35, 0x2e, 0x28, 0x01, 0x56,
+ 0x84, 0x25, 0x96, 0x11, 0x68, 0x8c, 0x75, 0x5c, 0xb4, 0x83, 0x24, 0x23, 0x5f, 0x79, 0x69, 0xd7, 0x3b, 0x80,
+ 0x4c, 0xa5, 0x8b, 0x0b, 0x07, 0x26, 0x38, 0x73, 0x76, 0x17, 0x35, 0x5c, 0x0b, 0x67, 0x64, 0xcc, 0xec, 0xb1,
+ 0x8a, 0x63, 0x64, 0x9e, 0x66, 0xca, 0x3a, 0x17, 0x02, 0xae, 0xb4, 0x57, 0x24, 0x05, 0x83, 0xc7, 0xe2, 0x88,
+ 0xda, 0x36, 0x06, 0x13, 0xe6, 0xc1, 0x29, 0x53, 0xf3, 0xdc, 0x3d, 0x23, 0xa5, 0xc1, 0x41, 0x74, 0x57, 0xe2,
+ 0x4f, 0x9d, 0x01, 0x6d, 0x7d, 0x8c, 0x2d, 0x88, 0x09, 0x5e, 0x7d, 0x3e, 0x5d, 0x38, 0x17, 0xaf, 0x4e, 0x01,
+ 0x6c, 0x2d, 0x7b, 0x50, 0x17, 0x9a, 0x5e, 0xa8, 0x4a, 0x96, 0xa7, 0x84, 0x2a, 0x1c, 0x68, 0xa3, 0x3f, 0x83,
+ 0x1b, 0xb9, 0x2a, 0x02, 0x9f, 0x00, 0x5d, 0x1a, 0x0b, 0x14, 0x72, 0xcf, 0xe0, 0xf3, 0xe2, 0xdc, 0x98, 0xd3,
+ 0x44, 0x3a, 0x54, 0x07, 0xc1, 0x6e, 0x13, 0xdc, 0xad, 0x36, 0x03, 0x9a, 0x97, 0x28, 0x9c, 0x76, 0x55, 0xf0,
+ 0xc4, 0x41, 0xea, 0x6e, 0x05, 0x1b, 0xf5, 0x14, 0x92, 0xde, 0x31, 0x80, 0xec, 0x46, 0x44, 0x58, 0x5a, 0x9b,
+ 0x2f, 0x75, 0xcf, 0x32, 0xd7, 0x59, 0x62, 0x5b, 0x5a, 0x72, 0x1b, 0xa2, 0x5b, 0x5a, 0x6c, 0x3a, 0xe3, 0xe0,
+ 0x85, 0x58, 0x75, 0xb1, 0x3f, 0xb4, 0xde, 0xf9, 0xd7, 0x12, 0x69, 0xed, 0x4f, 0xcb, 0x31, 0x86, 0xa3, 0x5a,
+ 0x4d, 0xfe, 0x89, 0xd2, 0x93, 0x38, 0x68, 0x8c, 0x39, 0x33, 0x7d, 0x34, 0xe5, 0xb8, 0x2e, 0x08, 0x3a, 0x46,
+ 0xd9, 0x97, 0x66, 0xbc, 0x68, 0x49, 0x58, 0x03, 0xda, 0xaf, 0xf0, 0x38, 0x57, 0xe7, 0x8f, 0xc0, 0x9b, 0x6c,
+ 0x7b, 0xc3, 0x34, 0x48, 0x4d, 0x30, 0xdf, 0x53, 0x42, 0x74, 0xe1, 0x2c, 0xca, 0xe7, 0xc2, 0xb0, 0x57, 0xb6,
+ 0xd7, 0x76, 0x4c, 0x24, 0x7d, 0x28, 0xfc, 0xae, 0xd4, 0x1b, 0xff, 0xf1, 0x1a, 0xed, 0x9f, 0x6b, 0x04, 0xbf
+};
+
+// context = simple_context_pl
+static const uint8_t CONTEXT_ARRAY[] = {
+ 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x70, 0x6c, 0x00, 0x09,
+ 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
+ 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79,
+ 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x61, 0x6a, 0x20, 0x6d, 0x69, 0x20, 0x24, 0x76, 0x72,
+ 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
+ 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x74, 0x72, 0x75, 0x73, 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x22, 0x0a,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x22, 0x0a, 0x20,
+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x61, 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x22, 0x00,
+ 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00,
+ 0x14, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x62, 0x61,
+ 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x00, 0x64, 0x61, 0x6a, 0x00, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x00,
+ 0x6d, 0x69, 0x00, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79, 0x00, 0x74, 0x72, 0x75, 0x73,
+ 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
+ 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00,
+ 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02, 0x01, 0x0d, 0x01, 0x0d, 0x1c, 0x16, 0x20, 0x03, 0x01,
+ 0x09, 0x0c, 0x01, 0x0b, 0x08, 0x0d, 0x01, 0x0c, 0x08, 0x10, 0x0e, 0x0f, 0x01, 0x1f, 0x21, 0x1c, 0x0d, 0x20,
+ 0x11, 0x0f, 0x15, 0x10, 0x0a, 0x01, 0x07, 0x0a, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00,
+ 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
+ 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+ 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70,
+ 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
+ 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
+ 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,
+ 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
+};
+
+#endif // __PV_LANGUAGE_POLISH__
#if defined(__PV_LANGUAGE_PORTUGUESE__)
// wake-word = olá computador
static const uint8_t KEYWORD_ARRAY[] = {
- 0xe5, 0x2b, 0xd9, 0x42, 0x17, 0x72, 0xbb, 0xf0, 0x38, 0x86, 0x9a, 0xd2, 0xfd, 0x6d, 0x37, 0x35, 0x21, 0xe8,
- 0x38, 0xcd, 0xf2, 0xd4, 0x95, 0x62, 0x4f, 0x44, 0x0e, 0xcc, 0x42, 0x95, 0xd5, 0x89, 0x04, 0x32, 0x59, 0x25,
- 0x09, 0x42, 0x87, 0x11, 0x6e, 0x45, 0xbf, 0x05, 0xf3, 0x41, 0x49, 0x24, 0xf6, 0xb5, 0x1f, 0x23, 0xd2, 0x4b,
- 0xad, 0x3f, 0xb3, 0x4a, 0xd7, 0x02, 0xb5, 0x35, 0x08, 0xb2, 0x64, 0x80, 0x0f, 0x6a, 0x8f, 0xa0, 0xa4, 0x99,
- 0x75, 0xcf, 0xcd, 0xcd, 0xda, 0x2d, 0x44, 0x40, 0x59, 0x36, 0x7b, 0x31, 0xc2, 0xee, 0xab, 0x61, 0x34, 0x1a,
- 0x5b, 0xbb, 0x12, 0xa1, 0x30, 0xcd, 0x8f, 0xb5, 0xb9, 0x8f, 0x16, 0x71, 0xa7, 0x24, 0x15, 0x70, 0x7e, 0xb5,
- 0x76, 0x55, 0xfd, 0x63, 0xf0, 0x48, 0x16, 0xe7, 0x9c, 0x73, 0xcd, 0xe6, 0xab, 0xf2, 0x6f, 0x06, 0xc5, 0x9c,
- 0x4a, 0x68, 0x75, 0x7b, 0xe5, 0x45, 0x47, 0xd2, 0x1a, 0x0a, 0x41, 0x09, 0xd7, 0x37, 0x3a, 0xd4, 0x17, 0x02,
- 0xe6, 0xe2, 0xa5, 0x0f, 0x3c, 0x57, 0x7d, 0xa8, 0xb7, 0x8d, 0xd0, 0x0e, 0x29, 0xda, 0x90, 0xda, 0x56, 0x1f,
- 0x7d, 0xb3, 0xa4, 0x7d, 0x72, 0x88, 0xe0, 0x54, 0xad, 0x58, 0xf8, 0xc0, 0xbd, 0xef, 0xb4, 0xc9, 0x9b, 0x38,
- 0x57, 0x2c, 0xdf, 0x4e, 0x09, 0x25, 0xb6, 0x5f, 0x00, 0x93, 0x8a, 0x58, 0xc3, 0xcf, 0x82, 0x7c, 0x18, 0xf1,
- 0x47, 0x68, 0xc9, 0xc4, 0xcd, 0x7a, 0xed, 0x7d, 0x4f, 0x32, 0x7c, 0x59, 0x37, 0xac, 0x54, 0x18, 0x72, 0x57,
- 0x4d, 0x1b, 0x8f, 0xdb, 0x5a, 0xfa, 0xda, 0xa1, 0x04, 0x3e, 0xea, 0x59, 0x95, 0xc1, 0x65, 0xee, 0xc3, 0xf3,
- 0x96, 0x80, 0x68, 0x0f, 0x6b, 0x94, 0x51, 0x2e, 0xfe, 0x55, 0x94, 0x1f, 0x1f, 0x5b, 0x71, 0x21, 0xba, 0xa1,
- 0x41, 0x21, 0xdb, 0x32, 0x26, 0xb6, 0x43, 0xe6, 0x96, 0x2c, 0xd7, 0x00, 0x35, 0x37, 0xfc, 0x44, 0x02, 0xb2,
- 0xa9, 0x5d, 0x82, 0x0b, 0xb4, 0xcd, 0xc1, 0x3f, 0x9d, 0x95, 0x25, 0x5c, 0x04, 0x3f, 0x6f, 0x47, 0x21, 0x21,
- 0xe8, 0xf8, 0x29, 0x34, 0x3d, 0x91, 0xbc, 0x20, 0x18, 0x21, 0x6d, 0x93, 0xac, 0x20, 0xe3, 0xc4, 0x25, 0xeb,
- 0x09, 0x97, 0xa9, 0x71, 0xa3, 0x89, 0xc7, 0xfc, 0x38, 0x30, 0x15, 0x47, 0x18, 0x30, 0x5f, 0xd2, 0x87, 0x89,
- 0x0a, 0x61, 0x84, 0x04, 0x23, 0x38, 0x26, 0xb0, 0x93, 0xa8, 0x74, 0x1e, 0x73, 0x38, 0xcb, 0x31, 0x88, 0xe4,
- 0x6d, 0x67, 0x46, 0x5e, 0x17, 0x04, 0x74, 0x8f, 0xa8, 0xf9, 0x8a, 0x5b, 0x9b, 0x36, 0x64, 0x80, 0xc5, 0xb2,
- 0x7f, 0xb3, 0xfa, 0xc9, 0xdb, 0x67, 0xc9, 0xa5, 0xdc, 0xf2, 0xc6, 0x86, 0xb9, 0x83, 0xb3, 0xb0, 0x18, 0x6e,
- 0xb9, 0xe8, 0x95, 0x49, 0x8c, 0x1f, 0x67, 0xc7, 0xb4, 0x95, 0x44, 0x65, 0xd7, 0xde, 0xf0, 0x4f, 0xce, 0xe2,
- 0x76, 0xf2, 0xc6, 0x7c, 0xc9, 0x3b, 0x29, 0x04, 0x73, 0x70, 0x4b, 0x91, 0x8e, 0x12, 0x61, 0x54, 0xf8, 0xe8,
- 0x29, 0x2f, 0xd1, 0xac, 0xc1, 0xe4, 0xa1, 0x17, 0x34, 0x8d, 0x48, 0xdf, 0xa3, 0xb6, 0xfb, 0xf5, 0x98, 0xba,
- 0xa1, 0x17, 0x74, 0xbe, 0x29, 0x50, 0xc2, 0xe3, 0xc9, 0x6f, 0xfe, 0xf0, 0xc1, 0x7d, 0x4d, 0x10, 0x66, 0x6c,
- 0x4d, 0x83, 0x99, 0x5c, 0x8d, 0xa9, 0x8c, 0xeb, 0xbd, 0xf4, 0x19, 0x33, 0xc9, 0xfb, 0xb1, 0x74, 0xc2, 0xa9,
- 0x75, 0x8f, 0x45, 0x0a, 0x4a, 0x39, 0xed, 0xaa, 0xac, 0x39, 0xc9, 0xef, 0x57, 0xe1, 0x8e, 0xf4, 0xe0, 0x01,
- 0xde, 0x84, 0x7d, 0x54, 0x39, 0x43, 0x8e, 0x27, 0x5e, 0x56, 0x4a, 0xab, 0x46, 0xc9, 0xbc, 0x3a, 0x06, 0xf7,
- 0x65, 0x74, 0x29, 0x2c, 0x4c, 0xac, 0xc7, 0xad, 0x66, 0x56, 0xbb, 0xa8, 0xcc, 0x2b, 0xaa, 0x87, 0x48, 0x93,
- 0x7f, 0x3d, 0xdd, 0x9b, 0x38, 0xe4, 0xb0, 0x22, 0x43, 0xa8, 0x59, 0x31, 0x63, 0xb0, 0xb1, 0x01, 0xe0, 0xa4,
- 0x20, 0x14, 0xe9, 0x1f, 0x59, 0x5f, 0x4a, 0x87, 0xfa, 0x81, 0x8f, 0x82, 0xd5, 0x5d, 0x96, 0xf5, 0xe7, 0x9d,
- 0x38, 0x49, 0x80, 0x65, 0x51, 0x09, 0x59, 0x0e, 0x71, 0x5e, 0x77, 0xce, 0xd7, 0xa7, 0x8a, 0x19, 0x94, 0x5f,
- 0xdc, 0x73, 0x9f, 0x31, 0xed, 0xf2, 0x29, 0x7c, 0xc6, 0xf2, 0xb4, 0x59, 0xf5, 0x16, 0x80, 0xef, 0x3d, 0x14,
- 0xd6, 0xa9, 0x03, 0x62, 0xee, 0x91, 0x4b, 0x84, 0x0d, 0xe0
+ 0x4b, 0x18, 0x62, 0x21, 0xfb, 0xc5, 0x95, 0x04, 0xad, 0xd7, 0xc2, 0x2b, 0x76, 0x8e, 0x69, 0x6f, 0x15, 0x34,
+ 0x46, 0x41, 0xbf, 0x7f, 0x94, 0xf9, 0x26, 0xf3, 0x23, 0xf4, 0xb5, 0x93, 0x53, 0xe6, 0x22, 0x1d, 0x8c, 0x40,
+ 0x07, 0xb2, 0x1f, 0xcd, 0xad, 0xe3, 0xa9, 0xc1, 0x09, 0x8d, 0x4e, 0x65, 0xd0, 0x21, 0x6f, 0x30, 0x7b, 0xd8,
+ 0xaa, 0xe8, 0xce, 0xdf, 0xcc, 0x11, 0xe5, 0x62, 0xf0, 0xb1, 0x01, 0x94, 0xd7, 0x78, 0xe5, 0x5f, 0x31, 0x62,
+ 0xe2, 0x89, 0xbf, 0x1d, 0x41, 0x82, 0xdb, 0xc5, 0x9c, 0x3c, 0x0a, 0x15, 0x90, 0x64, 0xb4, 0x3c, 0x0b, 0xa4,
+ 0x42, 0xc4, 0x43, 0x66, 0x06, 0x8f, 0x9d, 0xc7, 0xb3, 0x4f, 0xb2, 0x2b, 0x1e, 0x64, 0xe0, 0xd7, 0xc6, 0x00,
+ 0x94, 0x96, 0xa4, 0x3b, 0xdf, 0x52, 0xfe, 0x3b, 0xb1, 0x87, 0x38, 0x29, 0x96, 0x20, 0x0d, 0xd9, 0x29, 0x8f,
+ 0xe2, 0x15, 0x0d, 0x78, 0xbf, 0xbe, 0x5c, 0x00, 0x44, 0x92, 0x03, 0xcf, 0x02, 0x67, 0xb1, 0xe5, 0x49, 0x81,
+ 0x26, 0x04, 0x47, 0x43, 0xc2, 0xd2, 0x5d, 0xd7, 0xd2, 0x48, 0x9e, 0xcb, 0x26, 0x11, 0xfc, 0x5c, 0x2b, 0x26,
+ 0x57, 0x4a, 0x9a, 0xa4, 0xe9, 0x8c, 0xa2, 0x93, 0x02, 0x2a, 0x5b, 0x07, 0x0b, 0x10, 0xce, 0x5e, 0x6d, 0x07,
+ 0xb1, 0xc3, 0x4e, 0x2f, 0xad, 0xc4, 0x34, 0x2b, 0xb0, 0xe3, 0x50, 0x14, 0xb6, 0x0e, 0x08, 0x79, 0x00, 0x06,
+ 0xed, 0xa7, 0x98, 0x2c, 0xc4, 0x85, 0x08, 0x99, 0x21, 0x10, 0x7c, 0xe6, 0x0a, 0x92, 0xe4, 0x35, 0xa7, 0x45,
+ 0xb5, 0x56, 0x55, 0x67, 0x58, 0x68, 0xb1, 0xc9, 0x9f, 0xb1, 0x72, 0x5d, 0xcb, 0xcc, 0x76, 0x26, 0xf8, 0x52,
+ 0xc9, 0x16, 0xa8, 0x45, 0x69, 0xfb, 0xe6, 0xef, 0xbb, 0x34, 0x01, 0x59, 0x08, 0xbf, 0xf5, 0xcf, 0xf7, 0x83,
+ 0x3f, 0x1e, 0x13, 0x4f, 0x20, 0x2f, 0x40, 0x89, 0x65, 0x81, 0x5c, 0x87, 0x39, 0xb4, 0x10, 0x07, 0xb0, 0x87,
+ 0xc8, 0x55, 0x85, 0x8c, 0xbc, 0x41, 0xdd, 0x18, 0x76, 0xec, 0x70, 0x4e, 0x61, 0xaf, 0x0e, 0x28, 0x55, 0x66,
+ 0x18, 0x4e, 0x8c, 0x4d, 0x00, 0x82, 0x62, 0xb8, 0x22, 0x66, 0x69, 0xa8, 0x4b, 0xfa, 0x4e, 0x92, 0x9c, 0x76,
+ 0xfc, 0x83, 0x48, 0x0d, 0x26, 0x0d, 0xf7, 0xf3, 0xde, 0x49, 0x4e, 0xb4, 0xf9, 0x9d, 0xfb, 0xab, 0x62, 0xe2,
+ 0x2b, 0xa1, 0x25, 0xeb, 0x1e, 0x24, 0x24, 0x5c, 0xec, 0x64, 0x6d, 0xe5, 0xe6, 0xc6, 0xa1, 0xbe, 0x64, 0x71,
+ 0x7b, 0xa8, 0x5d, 0x01, 0xb1, 0x30, 0x22, 0x86, 0x34, 0xc5, 0x12, 0x37, 0xa3, 0x7c, 0x1d, 0x0a, 0x7c, 0xb8,
+ 0xea, 0x23, 0xe8, 0xfc, 0x4b, 0xa2, 0xed, 0x70, 0x3b, 0x14, 0xfb, 0x95, 0xb2, 0xec, 0x57, 0x12, 0x9d, 0xb9,
+ 0x34, 0x41, 0xa0, 0x48, 0x01, 0x38, 0xc7, 0x74, 0xd9, 0x42, 0x69, 0x25, 0xe9, 0xb6, 0x35, 0x49, 0x9c, 0xf5,
+ 0x89, 0x96, 0xd2, 0x94, 0x27, 0xbd, 0x36, 0x32, 0x57, 0x03, 0x12, 0x67, 0x22, 0x8e, 0xe3, 0xc7, 0x89, 0x07,
+ 0x5e, 0xfd, 0x19, 0xe9, 0x07, 0x28, 0x7b, 0xbd, 0x09, 0x7d, 0x32, 0xbc, 0x22, 0xce, 0x50, 0x96, 0x9d, 0x0f,
+ 0x4f, 0xd2, 0x5a, 0xe9, 0x92, 0x77, 0xbb, 0xc8, 0xd0, 0x04, 0x22, 0x3e, 0x8b, 0x95, 0x95, 0x40, 0xc8, 0x7e,
+ 0xc2, 0x2b, 0x91, 0x50, 0x47, 0x21, 0x49, 0xe9, 0x78, 0xcb, 0xef, 0xc7, 0xdd, 0x34, 0x10, 0xcb, 0x27, 0xac,
+ 0x66, 0xdb, 0x80, 0x44, 0xfa, 0xc2, 0x45, 0xd0, 0x1f, 0x7b, 0xc3, 0xe8, 0x2c, 0x97, 0x71, 0xac, 0x52, 0x1c,
+ 0x78, 0x73, 0x2f, 0xa7, 0x99, 0xc5, 0xd4, 0xa0, 0x42, 0xb5, 0x71, 0x1a, 0x50, 0x2f, 0x1d, 0xbe, 0x6e, 0xc0,
+ 0x5e, 0x8e, 0x5d, 0xc8, 0xd1, 0x92, 0x87, 0xa6, 0xe5, 0x4f, 0xdf, 0x06, 0xf8, 0xc3, 0x1d, 0x42, 0xd6, 0xd8,
+ 0x71, 0x54, 0x9d, 0x48, 0xb7, 0x76, 0x81, 0x35, 0x67, 0x4b, 0x13, 0x76, 0xcb, 0x62, 0x34, 0xe7, 0x30, 0x8a,
+ 0xe9, 0x40, 0x5a, 0x0f, 0xf7, 0xf8, 0xb5, 0x13, 0x8e, 0x85, 0x87, 0x54, 0xf5, 0xdd, 0x87, 0x87, 0x07, 0xd8,
+ 0xc4, 0xa5, 0xa2, 0x29, 0xb5, 0x0d, 0xb4, 0x5c, 0xd3, 0x43, 0xd6, 0xbb, 0x0b, 0x1c, 0xb5, 0xa2, 0x57, 0x65,
+ 0xa4, 0xe6, 0x30, 0x43, 0xb2, 0x31, 0x4c, 0x5c, 0xdf, 0xb4, 0x4e, 0x24, 0xe3, 0x19, 0x83, 0x03, 0x1b, 0xca,
+ 0x0b, 0xa8, 0x56, 0xc1, 0xc5, 0xc7, 0xde, 0xc2, 0x34, 0x3d
};
// context = luz_inteligente
@@ -2663,49 +3319,49 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_RUSSIAN__)
-// wake-word = privet kompyuter
+// wake-word = привет компьютер
static const uint8_t KEYWORD_ARRAY[] = {
- 0x37, 0x85, 0x26, 0x81, 0xea, 0x15, 0xb1, 0x70, 0x5e, 0x97, 0xbb, 0x61, 0x4d, 0xdd, 0x40, 0x32, 0xab, 0x59,
- 0x49, 0xc5, 0xe9, 0x0c, 0xef, 0xf1, 0xe5, 0x2a, 0x52, 0x27, 0x17, 0xcb, 0xb7, 0x1d, 0x56, 0x0c, 0xe2, 0x68,
- 0xf0, 0x6c, 0x5d, 0x52, 0x8e, 0x0e, 0xc6, 0x13, 0xa3, 0xab, 0xc2, 0xf9, 0x80, 0x8b, 0xb3, 0x32, 0xd2, 0x81,
- 0x93, 0xf2, 0x4f, 0xa7, 0x4f, 0x5d, 0x17, 0xd1, 0xcc, 0xf2, 0xa9, 0x1e, 0xdf, 0x98, 0x6e, 0xaf, 0x4c, 0xf3,
- 0x18, 0x10, 0xc6, 0x86, 0xc8, 0x28, 0xd2, 0x95, 0x12, 0xb6, 0x16, 0xf1, 0xe0, 0x9c, 0xff, 0xaf, 0x6c, 0xdf,
- 0x6d, 0x90, 0xd9, 0xc4, 0xec, 0xab, 0xa8, 0x68, 0x1b, 0x18, 0xa1, 0x0e, 0x58, 0x81, 0x3f, 0x8e, 0x8d, 0x71,
- 0xca, 0x2d, 0x8e, 0xef, 0x66, 0x75, 0xde, 0xb4, 0x34, 0x6d, 0x16, 0x90, 0x7b, 0xfb, 0x4d, 0x10, 0xa6, 0x89,
- 0xe8, 0x99, 0x99, 0x12, 0x10, 0xa8, 0x42, 0xb7, 0x23, 0xad, 0x3e, 0xa6, 0x5f, 0xb3, 0x6d, 0xc7, 0x0a, 0xf1,
- 0x8d, 0x2b, 0x59, 0x5b, 0xcb, 0xaf, 0x19, 0xbf, 0x7e, 0x7c, 0xd8, 0x4f, 0xad, 0x36, 0x95, 0xb2, 0x07, 0x4c,
- 0x87, 0xb5, 0x53, 0x64, 0x95, 0x11, 0x3d, 0xad, 0x22, 0x33, 0xf3, 0x89, 0x71, 0xb6, 0x9f, 0x9c, 0x68, 0xe8,
- 0xf4, 0x1a, 0x9f, 0xfe, 0x4e, 0x46, 0xf7, 0xc7, 0x39, 0x32, 0x6c, 0x94, 0x6e, 0xfd, 0x18, 0x92, 0x93, 0xcf,
- 0xdb, 0xdf, 0xbf, 0xcc, 0x55, 0x18, 0x64, 0x0a, 0x12, 0xf8, 0x35, 0x38, 0xbf, 0xa7, 0xd2, 0x08, 0x6c, 0x98,
- 0xc6, 0x51, 0x0f, 0xd5, 0xbc, 0x14, 0xf6, 0xac, 0x27, 0xd2, 0xef, 0xc8, 0xfa, 0x7c, 0x09, 0x4d, 0x61, 0xfa,
- 0xd2, 0xc0, 0xaa, 0x7d, 0xa4, 0x07, 0x4a, 0xa0, 0x9f, 0xe4, 0xfa, 0x5a, 0x15, 0x0d, 0x17, 0xd6, 0x72, 0x1d,
- 0x7a, 0x4b, 0x47, 0x1e, 0x8a, 0xaa, 0xfc, 0x81, 0x71, 0x4f, 0xdf, 0x84, 0x39, 0x0d, 0x22, 0x46, 0x67, 0x4f,
- 0x49, 0x68, 0x92, 0xfe, 0x39, 0x8d, 0xb2, 0x00, 0xf1, 0x7b, 0xae, 0x17, 0x41, 0x5f, 0x4f, 0x24, 0xba, 0x66,
- 0x74, 0x94, 0x40, 0x61, 0xa3, 0x94, 0x1c, 0x5a, 0xa5, 0xb9, 0x27, 0xa9, 0x8e, 0x3f, 0xc0, 0x25, 0xc6, 0xb3,
- 0x06, 0x60, 0x07, 0x16, 0x32, 0xb6, 0xe2, 0x1a, 0x83, 0x6a, 0x76, 0xd4, 0x03, 0xd9, 0x91, 0x1c, 0x89, 0x6e,
- 0xa5, 0xa4, 0x51, 0xf2, 0x0f, 0xfd, 0x0d, 0x69, 0xb9, 0x42, 0x92, 0x80, 0x97, 0x1f, 0x78, 0xfe, 0x18, 0xb0,
- 0x50, 0xbf, 0xd6, 0xdc, 0x1f, 0xc0, 0x62, 0x08, 0x3c, 0x30, 0x5d, 0xf7, 0x77, 0x53, 0x4f, 0xb7, 0xc3, 0xb5,
- 0xac, 0xa0, 0x6d, 0x2f, 0xf3, 0x2b, 0xc9, 0x30, 0xcc, 0x0e, 0xbd, 0xfe, 0xd1, 0x00, 0xb7, 0x80, 0x22, 0x11,
- 0x5b, 0x1e, 0x69, 0x05, 0xa1, 0xba, 0xc3, 0xd5, 0x03, 0xc6, 0x02, 0xd6, 0xd4, 0xee, 0x92, 0x1a, 0xfb, 0x3c,
- 0xfa, 0xd1, 0x85, 0xc5, 0x51, 0x8f, 0x4e, 0xc2, 0x19, 0x78, 0xbc, 0x99, 0x63, 0xee, 0x54, 0xee, 0x97, 0x09,
- 0x2b, 0x40, 0x12, 0x60, 0x8a, 0x32, 0x73, 0xa2, 0xf9, 0x2a, 0x5c, 0xb9, 0x7f, 0x4a, 0x37, 0x8c, 0x4e, 0x8b,
- 0xeb, 0x7a, 0x62, 0x12, 0x36, 0x4c, 0x4f, 0xba, 0xbb, 0xd8, 0x80, 0x01, 0x97, 0x18, 0x36, 0x98, 0x2b, 0xcf,
- 0xc3, 0xae, 0xb7, 0x61, 0x01, 0x07, 0x1a, 0x62, 0xe4, 0x80, 0x54, 0xf3, 0x10, 0x55, 0x7c, 0x76, 0x16, 0x47,
- 0x9f, 0xd1, 0x79, 0xe0, 0x6e, 0x85, 0xaa, 0x47, 0xab, 0xe6, 0x5c, 0xaf, 0x35, 0xb7, 0xf1, 0xe9, 0x0c, 0xb0,
- 0xea, 0xd7, 0x4c, 0x7f, 0x59, 0x64, 0x3f, 0xe5, 0xc4, 0x60, 0x65, 0xbd, 0xf9, 0x7a, 0xd5, 0x60, 0x00, 0x91,
- 0xab, 0x4e, 0x88, 0x9b, 0x83, 0xc5, 0x53, 0x66, 0xcc, 0x46, 0x49, 0xf2, 0xca, 0xf0, 0x85, 0x84, 0x4c, 0xcf,
- 0xbe, 0x08, 0xc0, 0xfc, 0xf4, 0x16, 0x94, 0x5c, 0x89, 0x55, 0xc7, 0x50, 0x31, 0x16, 0x43, 0x64, 0xcf, 0x59,
- 0x7d, 0x8b, 0x3d, 0x0d, 0x28, 0x89, 0x6b, 0x2c, 0xf2, 0x46, 0x76, 0x47, 0x0c, 0xbb, 0xfe, 0xfb, 0x88, 0x6e,
- 0xf6, 0x6a, 0x1a, 0x09, 0x42, 0x01, 0xa1, 0x3c, 0x65, 0xe0, 0xad, 0xe3, 0xbd, 0x9e, 0xa8, 0x06, 0x7b, 0x96,
- 0x98, 0xed, 0xc9, 0x91, 0xa4, 0x76, 0x9a, 0x02, 0x60, 0x5b, 0x9c, 0xc6, 0xd8, 0xab, 0xd9, 0x30, 0xc0, 0xcc,
- 0x4e, 0x76, 0xc7, 0x6c, 0x43, 0x11, 0x44, 0x94, 0xe4, 0xa3, 0x07, 0x46, 0x72, 0xe2, 0x37, 0xf9, 0x72, 0x70,
- 0x9b, 0x0a, 0x2b, 0xe2, 0xa6, 0x7e, 0xe4, 0x13, 0x07, 0x16, 0x4e, 0x8e, 0x1a, 0x94, 0xd6, 0x13, 0x9d, 0x53,
- 0xb6, 0xca, 0x50, 0x25, 0x20, 0xbc, 0x4f, 0x60, 0xa7, 0x38, 0x08, 0x8a, 0x40, 0xa6, 0xb8, 0x57, 0xa9, 0x68,
- 0x21, 0xb6, 0x48, 0xbe, 0x07, 0xab, 0x4f, 0xb9, 0xde, 0xc6, 0x4c, 0x8b, 0x71, 0xa7, 0xc1, 0xd1, 0x06, 0x3c,
- 0x3a, 0xe2, 0xa9, 0x68, 0x7f, 0x4f, 0x25, 0xa4, 0x2a, 0x07, 0xfa, 0x0c, 0xbf, 0x2e, 0xbe, 0x2f, 0xb2, 0x74,
- 0x57, 0xa6, 0x75, 0x34, 0x81, 0x91, 0xd1, 0x7a, 0x1c, 0x23, 0xe0, 0x55, 0xc1, 0xbf, 0x14, 0x1f, 0x57, 0x17,
- 0x44, 0x2a, 0x46, 0x3e, 0x44, 0xbc, 0xca, 0x95, 0x63, 0xfb, 0x6e, 0x87, 0xcb, 0xee, 0x24, 0x4c, 0x3a, 0xbc,
- 0x82, 0xd8, 0xc2, 0x4c
+ 0x9f, 0xc5, 0x7c, 0x5d, 0x85, 0x85, 0x5a, 0xb1, 0x37, 0x3c, 0xa4, 0xaa, 0x68, 0x10, 0x92, 0x2f, 0x72, 0x1a,
+ 0xab, 0x1f, 0x48, 0xd0, 0x5d, 0x0c, 0x8d, 0x4d, 0xf7, 0x6d, 0x33, 0xb7, 0x01, 0x33, 0x1a, 0x91, 0xa0, 0x8b,
+ 0x26, 0x38, 0x1c, 0x0b, 0x35, 0xa3, 0xcf, 0xe1, 0x46, 0x18, 0xf1, 0xce, 0xbf, 0x18, 0x08, 0xb5, 0x08, 0x28,
+ 0x24, 0xc7, 0x9d, 0xe3, 0xec, 0x2c, 0xdf, 0xae, 0x20, 0xd8, 0xaf, 0x2a, 0x44, 0x5c, 0x8a, 0x64, 0x10, 0x1d,
+ 0x4b, 0xd7, 0x03, 0x00, 0x8b, 0x6c, 0x1d, 0x54, 0xa1, 0xbc, 0xec, 0xba, 0xb7, 0x6a, 0x78, 0x11, 0xf6, 0xe5,
+ 0xb4, 0xb7, 0xcd, 0x36, 0xee, 0x85, 0x6d, 0x11, 0x37, 0x9f, 0xea, 0x73, 0xa0, 0xcd, 0x35, 0x31, 0xb8, 0x98,
+ 0xe7, 0x8e, 0xa5, 0x0e, 0x53, 0x4f, 0x6b, 0x98, 0xfd, 0x06, 0x1a, 0xf2, 0x3b, 0x1a, 0x22, 0x5c, 0x9f, 0xcd,
+ 0xa9, 0x96, 0x8f, 0x45, 0x87, 0x3b, 0x20, 0x1d, 0x70, 0x2d, 0xa3, 0x4c, 0x56, 0xad, 0x99, 0x41, 0xa5, 0x97,
+ 0xf4, 0x8f, 0xe8, 0x61, 0xa2, 0xe2, 0xb9, 0xa0, 0xd0, 0x00, 0xfd, 0xe8, 0xe8, 0x37, 0x38, 0x69, 0x82, 0x2f,
+ 0xee, 0x56, 0x07, 0x93, 0x4e, 0xfa, 0x7f, 0xf4, 0x2e, 0x02, 0xe1, 0x75, 0xf4, 0x4c, 0x3b, 0x68, 0xce, 0xb1,
+ 0x8c, 0x5a, 0xf1, 0x41, 0xca, 0x12, 0x50, 0xad, 0x6e, 0x49, 0x0f, 0x80, 0xb6, 0xf4, 0xe1, 0x4f, 0x00, 0x42,
+ 0x00, 0x46, 0x96, 0x82, 0x39, 0x4a, 0x9d, 0xa0, 0x14, 0x02, 0xac, 0x03, 0x7e, 0xb8, 0xd8, 0x31, 0xd4, 0x7e,
+ 0xfd, 0x84, 0x34, 0x8c, 0x69, 0x72, 0x78, 0x9b, 0x14, 0xae, 0xe0, 0xa0, 0x41, 0x43, 0xbc, 0x1c, 0xeb, 0x15,
+ 0xaf, 0xf3, 0x32, 0x37, 0xe1, 0x8b, 0x87, 0xdb, 0x08, 0xb7, 0x7c, 0xa1, 0xf5, 0x63, 0x1e, 0x05, 0x94, 0x1e,
+ 0xf2, 0xb8, 0x7b, 0x84, 0x44, 0x76, 0x19, 0x35, 0xdc, 0x3d, 0x97, 0x39, 0x20, 0x51, 0x45, 0x3a, 0x95, 0x91,
+ 0x2f, 0x02, 0x74, 0x57, 0x12, 0xef, 0xca, 0x11, 0xe4, 0xe2, 0x15, 0xbb, 0xb2, 0xd4, 0x4a, 0x4f, 0x2d, 0xa6,
+ 0x10, 0x50, 0x81, 0xa1, 0x1c, 0xd9, 0x07, 0x08, 0x38, 0xb4, 0xe5, 0xf4, 0xd1, 0x29, 0x75, 0xb1, 0x50, 0x94,
+ 0xe7, 0x15, 0x6d, 0x71, 0xff, 0x7c, 0xe5, 0xc6, 0xd5, 0xeb, 0xb1, 0x43, 0x44, 0xb9, 0x34, 0xb7, 0x21, 0x9f,
+ 0x9a, 0xc1, 0xbc, 0x1d, 0x1e, 0xb0, 0x12, 0x25, 0x0e, 0x22, 0x5c, 0x7a, 0xe1, 0x5c, 0x9f, 0x07, 0x2d, 0xaf,
+ 0x93, 0x07, 0x37, 0x53, 0x83, 0xf6, 0xb6, 0xb3, 0x9a, 0xce, 0xca, 0x1c, 0x40, 0x47, 0xf9, 0x29, 0x11, 0x07,
+ 0xaa, 0xd0, 0x91, 0x08, 0xd5, 0x31, 0xa1, 0x53, 0x71, 0x75, 0x74, 0x54, 0xa6, 0xfc, 0xe9, 0xc1, 0xca, 0x84,
+ 0x7c, 0x28, 0xb9, 0xb9, 0xa2, 0x4d, 0x34, 0xfb, 0xb1, 0x0b, 0xdd, 0x36, 0x71, 0xc5, 0x51, 0xaa, 0xa9, 0x8c,
+ 0xd8, 0xbf, 0x98, 0xe2, 0xea, 0x95, 0x79, 0x27, 0xcc, 0x91, 0xf8, 0x24, 0xb9, 0x04, 0x56, 0x05, 0x76, 0x78,
+ 0xf6, 0x9a, 0x31, 0x20, 0xed, 0x31, 0xc2, 0x58, 0x30, 0xc5, 0x6d, 0xec, 0x79, 0xe5, 0x6b, 0xc2, 0xd2, 0x16,
+ 0x1a, 0x47, 0x92, 0xdb, 0xe7, 0x74, 0x6a, 0xf0, 0x7c, 0x53, 0x73, 0x5f, 0x9b, 0x54, 0x62, 0x31, 0x6a, 0x25,
+ 0x1e, 0x4d, 0x5d, 0x97, 0xf5, 0xbc, 0xbd, 0x50, 0x9d, 0x5e, 0x81, 0x2a, 0xc4, 0xfd, 0x31, 0xd9, 0x23, 0x87,
+ 0x18, 0xc0, 0xa1, 0xa2, 0x0a, 0xe5, 0x1b, 0xf9, 0xce, 0xb5, 0x1a, 0x3d, 0xcd, 0xe8, 0xc6, 0xde, 0x23, 0x1d,
+ 0x7a, 0x08, 0x6e, 0x87, 0xaa, 0x1d, 0x3b, 0x25, 0x5d, 0x83, 0xbe, 0x2b, 0x59, 0x57, 0x89, 0xcd, 0xac, 0xa4,
+ 0x4c, 0xf4, 0x67, 0x3e, 0x0a, 0xf7, 0x1b, 0x28, 0x4f, 0x06, 0x3e, 0xe5, 0xb3, 0x48, 0x5a, 0xd7, 0x4f, 0x9f,
+ 0x90, 0x5b, 0x53, 0x1e, 0x75, 0xe3, 0x78, 0x0d, 0x25, 0xb8, 0xfe, 0x54, 0x15, 0xc5, 0xad, 0x72, 0xca, 0xb7,
+ 0x54, 0x39, 0xe5, 0x1b, 0x43, 0x9c, 0x72, 0x60, 0x96, 0xff, 0x8d, 0x7c, 0xb8, 0xdf, 0xe9, 0x34, 0x54, 0x3f,
+ 0x92, 0x68, 0x0e, 0xe1, 0xea, 0x1c, 0x4f, 0x11, 0x4b, 0xc0, 0x2b, 0xc7, 0x62, 0x75, 0xe4, 0xc2, 0xc5, 0x65,
+ 0xf2, 0xd2, 0xa4, 0x41, 0x93, 0xfb, 0x92, 0x14, 0x26, 0x9d, 0x0a, 0x71, 0xbe, 0x16, 0x19, 0x71, 0xd5, 0xda,
+ 0xf9, 0x27, 0x83, 0x06, 0x12, 0xeb, 0xeb, 0x9a, 0x18, 0x22, 0xc8, 0x88, 0x49, 0x9a, 0x3e, 0x51, 0xca, 0x1d,
+ 0xa2, 0x52, 0x85, 0xb9, 0xdc, 0x92, 0x8c, 0xf2, 0xbe, 0x53, 0x5f, 0x3b, 0x31, 0x39, 0x84, 0x71, 0x9a, 0x72,
+ 0xb6, 0xcf, 0xbf, 0x77, 0x04, 0xaa, 0x10, 0xc4, 0xa0, 0x31, 0xb9, 0x92, 0xd6, 0x97, 0x7c, 0xb8, 0x09, 0x5d,
+ 0xd5, 0x03, 0xad, 0x8a, 0x1b, 0x58, 0x61, 0x04, 0xbc, 0xdf, 0x6f, 0x70, 0x8f, 0xf0, 0xac, 0xe5, 0x7e, 0x22,
+ 0xb9, 0xf2, 0x21, 0x06, 0xd0, 0x48, 0x26, 0xcd, 0x01, 0x2b, 0x5b, 0xa7, 0x2c, 0x3a, 0xc9, 0x7f, 0x6c, 0xdd,
+ 0x05, 0x1a, 0x91, 0x5e, 0xa7, 0x3e, 0x53, 0x3d, 0x31, 0x86, 0xad, 0xaf, 0x4e, 0xd6, 0xfc, 0x22, 0x1d, 0xb1,
+ 0x05, 0x7a, 0x58, 0x05, 0x33, 0xdc, 0x3a, 0x58, 0x78, 0xcc, 0x4a, 0xbb, 0x9c, 0xb8, 0x35, 0x3d, 0xbf, 0x27,
+ 0x75, 0xfe, 0x3f, 0x5b
};
// context = simple_context_ru
@@ -2752,461 +3408,38 @@ static const uint8_t CONTEXT_ARRAY[] = {
#endif // __PV_LANGUAGE_RUSSIAN__
-#if defined(__PV_LANGUAGE_DUTCH__)
-
-// wake-word = hallo computer
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xbc, 0xb9, 0x24, 0xa6, 0xc0, 0x74, 0x10, 0x7f, 0xe4, 0x49, 0x9f, 0xe0, 0x69, 0x77, 0x3d, 0xd3, 0x7e, 0x20,
- 0x32, 0x30, 0x04, 0xa0, 0xe2, 0xdd, 0x5f, 0x2d, 0x08, 0x39, 0x70, 0x6e, 0xb4, 0xac, 0x48, 0xc2, 0x84, 0x95,
- 0xc2, 0xee, 0xab, 0x0b, 0xa4, 0x5c, 0x2d, 0x96, 0x53, 0x03, 0x00, 0xf3, 0x37, 0xb2, 0xd5, 0x8a, 0x2e, 0x47,
- 0xb4, 0x0b, 0x73, 0x8c, 0x80, 0x06, 0x95, 0xf6, 0xa3, 0xf2, 0x16, 0xde, 0x92, 0xcc, 0x45, 0x69, 0xd6, 0x8f,
- 0xc1, 0xd6, 0x4a, 0xa8, 0xaa, 0xb8, 0x80, 0x8f, 0xc2, 0xc5, 0x8a, 0x50, 0xfb, 0xa3, 0x70, 0xf2, 0x3e, 0xcf,
- 0x7a, 0xb4, 0x19, 0x20, 0xbd, 0xf7, 0xb6, 0xc6, 0x7c, 0xe1, 0xbb, 0xcd, 0x25, 0x63, 0x3b, 0x73, 0x65, 0x31,
- 0x92, 0x75, 0xf6, 0x30, 0xd2, 0x14, 0x9d, 0xc7, 0x58, 0x29, 0x4c, 0xdf, 0x71, 0x5b, 0x63, 0x3e, 0x22, 0x4e,
- 0x6b, 0x53, 0x18, 0x71, 0x9f, 0x79, 0xb5, 0x20, 0xa9, 0xba, 0x45, 0x00, 0xd0, 0xa0, 0xfd, 0x2a, 0x31, 0xa6,
- 0x84, 0x20, 0x18, 0xe9, 0x3d, 0x6b, 0x2e, 0x5c, 0xcd, 0xf8, 0x06, 0xed, 0x19, 0x86, 0x8f, 0x30, 0xd4, 0xf8,
- 0x78, 0xd4, 0x71, 0x6a, 0x05, 0x4b, 0xf2, 0x7c, 0xf5, 0x01, 0x12, 0x06, 0x71, 0x9f, 0xda, 0x25, 0x03, 0xb9,
- 0x7f, 0x23, 0xfb, 0x9c, 0x43, 0x31, 0x6f, 0x79, 0xac, 0xc2, 0xdf, 0xf5, 0x0e, 0xc0, 0xed, 0x1c, 0xa7, 0x49,
- 0xbc, 0x62, 0x0f, 0x55, 0x26, 0x5e, 0x83, 0x86, 0xc8, 0xd6, 0xf7, 0xde, 0x22, 0x81, 0xe4, 0x9d, 0xd5, 0xde,
- 0x57, 0xbb, 0x02, 0x3f, 0x4c, 0x6e, 0xe4, 0x3f, 0x19, 0x5f, 0x3a, 0x00, 0x56, 0x85, 0x4f, 0x43, 0xa6, 0x28,
- 0x16, 0x9d, 0x06, 0xeb, 0xb3, 0x44, 0x99, 0xa0, 0x85, 0x31, 0xd8, 0x9d, 0x04, 0x6a, 0x54, 0x13, 0x07, 0x78,
- 0x60, 0x96, 0x49, 0x45, 0x27, 0xc7, 0x39, 0x86, 0x81, 0x12, 0xf2, 0xa6, 0x9a, 0x85, 0x5a, 0x32, 0xf5, 0x2e,
- 0xe8, 0xdd, 0x48, 0x89, 0x0b, 0x33, 0xf6, 0x07, 0xb3, 0xa8, 0x01, 0xf0, 0xbd, 0x8c, 0x1a, 0x8c, 0x91, 0x80,
- 0xeb, 0x46, 0xc1, 0xcd, 0x07, 0x64, 0x74, 0xc6, 0x88, 0xa4, 0xcb, 0xe5, 0xe2, 0x7c, 0x94, 0xa2, 0x9f, 0xfe,
- 0xe4, 0x22, 0xef, 0x2f, 0x0f, 0x40, 0xd8, 0x54, 0xca, 0xe7, 0xdb, 0xcf, 0xcd, 0x1d, 0x65, 0xbf, 0xd4, 0x69,
- 0xcf, 0x49, 0x12, 0x41, 0x29, 0x4e, 0x2e, 0xce, 0x44, 0xeb, 0xb8, 0x65, 0x4d, 0x6f, 0xdc, 0x4b, 0xd8, 0x22,
- 0x01, 0xb3, 0x52, 0xbe, 0xe8, 0xef, 0xa0, 0x8b, 0xf2, 0x49, 0x74, 0x17, 0x00, 0x63, 0x15, 0x23, 0xdb, 0xf5,
- 0xd4, 0xc0, 0x6f, 0x9f, 0x12, 0xeb, 0x8e, 0xf2, 0x64, 0x69, 0x2b, 0xe4, 0xe7, 0x0d, 0x08, 0xad, 0xc9, 0x3b,
- 0x0d, 0xbb, 0x1e, 0x4b, 0x52, 0xb6, 0x5c, 0xa0, 0x9b, 0x4b, 0x2e, 0x69, 0x3d, 0xab, 0x42, 0x87, 0x23, 0xfe,
- 0x3b, 0x8a, 0x9a, 0xf5, 0x17, 0x82, 0xb4, 0x23, 0x24, 0x00, 0x00, 0x44, 0xba, 0xd2, 0xb9, 0x53, 0x79, 0x36,
- 0xf0, 0x72, 0xb5, 0x05, 0x74, 0x1d, 0xfa, 0x37, 0x14, 0x00, 0xd9, 0x29, 0x7b, 0x51, 0x72, 0x44, 0xd9, 0xcc,
- 0x58, 0xde, 0xaa, 0x81, 0x92, 0x9c, 0x50, 0xd4, 0x13, 0x39, 0x7b, 0x2d, 0x0a, 0xbb, 0xc0, 0x21, 0x5a, 0xce,
- 0x0b, 0xe9, 0x67, 0x3e, 0xf4, 0x41, 0xd0, 0x0f, 0x46, 0x99, 0x22, 0x62, 0x37, 0xc3, 0xa1, 0xbf, 0x8c, 0x28,
- 0xa6, 0xc5, 0x86, 0xc3, 0x1d, 0x2f, 0xd2, 0xaf, 0x60, 0x94, 0x28, 0x5e, 0xc3, 0x6f, 0xf0, 0xe0, 0x1a, 0x55,
- 0xb4, 0x04, 0x82, 0xa3, 0xf8, 0xbd, 0x20, 0x58, 0xdb, 0x91, 0x6b, 0x09, 0xc5, 0x28, 0x39, 0xe3, 0x83, 0x2e,
- 0xcf, 0xe7, 0x74, 0xc8, 0x1d, 0x55, 0x69, 0x5e, 0x81, 0x43, 0xe8, 0x69, 0xc3, 0x22, 0xe4, 0x8c, 0x7a, 0xd7,
- 0x92, 0x22, 0xf4, 0x9a, 0x4d, 0x99, 0xbd, 0x21, 0x70, 0xda, 0xec, 0x70, 0x4d, 0x3b, 0xca, 0x13, 0x92, 0xe1,
- 0xfd, 0xf3, 0xdb, 0x1d, 0x43, 0x7f, 0x30, 0xc7, 0xe7, 0x92, 0x7d, 0xbd, 0xa9, 0x19, 0x57, 0x43, 0xe3, 0x79,
- 0xcd, 0xb5, 0xe0, 0xc3, 0x27, 0x44, 0xff, 0xff, 0x91, 0x44, 0xef, 0x77, 0x0a, 0x89, 0x4f, 0xd2, 0xad, 0xfc,
- 0x5e, 0xeb, 0xb3, 0xe6, 0x12, 0x57, 0xdd, 0xd6, 0xe6, 0x51, 0xd2, 0x60, 0x8a, 0x44, 0x89, 0xdf, 0x64, 0xda,
- 0x11, 0x88, 0x95, 0x7c, 0x9d, 0x0d, 0x4f, 0x25, 0x77, 0x2e, 0xae, 0x8e, 0xa8, 0xf0, 0xa1, 0x54, 0xe4, 0x88,
- 0x86, 0x74, 0x75, 0x1f, 0x90, 0xd6, 0x0b, 0xfd
-};
-
-// context = simple_context_nl
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x6c, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x84, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x2c, 0x20, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x2d, 0x20, 0x22, 0x67, 0x65, 0x65, 0x66, 0x20, 0x6d, 0x65, 0x20, 0x65, 0x65, 0x6e, 0x20, 0x24,
- 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73,
- 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f, 0x73, 0x22,
- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x22, 0x00,
- 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00,
- 0x17, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2c, 0x00,
- 0x00, 0x00, 0x61, 0x61, 0x72, 0x64, 0x62, 0x65, 0x69, 0x00, 0x62, 0x6f, 0x73, 0x62, 0x65, 0x73, 0x00, 0x64,
- 0x6f, 0x72, 0x73, 0x74, 0x69, 0x67, 0x00, 0x65, 0x65, 0x6e, 0x00, 0x66, 0x72, 0x61, 0x6d, 0x62, 0x6f, 0x6f,
- 0x73, 0x00, 0x67, 0x65, 0x65, 0x66, 0x00, 0x6d, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00,
- 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00,
- 0x12, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x20, 0x00,
- 0x00, 0x00, 0x03, 0x14, 0x05, 0x04, 0x27, 0x04, 0x23, 0x1d, 0x04, 0x26, 0x15, 0x05, 0x23, 0x14, 0x15, 0x16,
- 0x25, 0x1b, 0x08, 0x10, 0x09, 0x14, 0x21, 0x0f, 0x04, 0x12, 0x15, 0x29, 0x08, 0x09, 0x0f, 0x25, 0x05, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
- 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00,
- 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68,
- 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00,
- 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_DUTCH__
-
-#if defined(__PV_LANGUAGE_HINDI__)
-
-// wake-word = namaste putra
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xfc, 0x11, 0xf1, 0xd0, 0x6c, 0x2a, 0xd0, 0x4f, 0xf5, 0x04, 0xa7, 0xe2, 0x01, 0x65, 0xe4, 0xdd, 0x03, 0x86,
- 0x54, 0xb1, 0x7b, 0x49, 0x3a, 0x79, 0x4d, 0xe7, 0x1c, 0x64, 0x0e, 0x0b, 0xa7, 0xb7, 0xe4, 0x8b, 0x7f, 0x04,
- 0x97, 0xa7, 0x63, 0x79, 0xaa, 0x85, 0x1a, 0x08, 0x71, 0x80, 0x58, 0x43, 0x57, 0x25, 0xe6, 0x7c, 0x96, 0x59,
- 0xb7, 0x66, 0xd6, 0x11, 0x77, 0x90, 0x90, 0xd9, 0xf8, 0x24, 0xfa, 0x78, 0xeb, 0xdb, 0xba, 0xdc, 0xe5, 0x99,
- 0xd5, 0xca, 0x95, 0x07, 0xfa, 0xd3, 0xe0, 0xe8, 0x83, 0x82, 0x62, 0xb0, 0x6c, 0x62, 0x35, 0xec, 0x9a, 0x3b,
- 0x62, 0x04, 0x30, 0xc0, 0x02, 0x72, 0x54, 0xb8, 0xed, 0x14, 0x1a, 0x58, 0xd0, 0xf9, 0x5a, 0x57, 0x07, 0x31,
- 0x15, 0xe6, 0xc1, 0x7c, 0x62, 0xa2, 0xa8, 0x7d, 0xcc, 0x1b, 0xf0, 0x25, 0xd8, 0x39, 0x38, 0x54, 0xbc, 0xfd,
- 0x2a, 0x68, 0xac, 0x7e, 0x46, 0x57, 0xc5, 0x7f, 0x7f, 0x29, 0x2c, 0x4b, 0x99, 0x7a, 0x6d, 0xa7, 0x07, 0xdc,
- 0xeb, 0x6b, 0x87, 0x90, 0x7f, 0x17, 0xab, 0x2a, 0x9e, 0x5c, 0x73, 0x07, 0xfe, 0xc8, 0x48, 0xa8, 0xc0, 0x07,
- 0x58, 0x10, 0xd8, 0x60, 0xcc, 0xa4, 0x4a, 0x2a, 0x5d, 0x0d, 0x6a, 0xcd, 0xe1, 0xc9, 0x65, 0x48, 0xce, 0x13,
- 0x27, 0x7d, 0xed, 0x4f, 0x8f, 0x1a, 0x9e, 0x21, 0x83, 0xb7, 0x39, 0x0c, 0x5f, 0xcf, 0xb5, 0x75, 0xc6, 0x1d,
- 0x61, 0x18, 0x4a, 0xe2, 0x3e, 0x6d, 0xa0, 0x56, 0xe8, 0x19, 0xe2, 0xad, 0xcf, 0x4b, 0x80, 0x25, 0x71, 0x76,
- 0xd1, 0x58, 0x62, 0x0b, 0x35, 0x6f, 0x6b, 0xaf, 0xfd, 0x26, 0x62, 0xde, 0xfd, 0x5e, 0x3a, 0xac, 0x08, 0x9d,
- 0xde, 0x24, 0x83, 0x89, 0xef, 0x79, 0xb8, 0xdb, 0x5d, 0x72, 0x4f, 0x50, 0x0b, 0x34, 0xe3, 0xe2, 0x8e, 0x34,
- 0xe3, 0x5e, 0x11, 0xbd, 0x09, 0x04, 0x21, 0x89, 0xf6, 0xc9, 0x0c, 0x38, 0xae, 0xee, 0xa7, 0x00, 0x5e, 0xf3,
- 0x89, 0x57, 0x5b, 0xe6, 0x08, 0x5d, 0x15, 0x0b, 0x4d, 0x00, 0x6d, 0x82, 0x04, 0xa6, 0xd4, 0x9a, 0x82, 0x35,
- 0xff, 0xc4, 0x68, 0xff, 0xcf, 0x28, 0x8a, 0xb0, 0x0e, 0x92, 0x05, 0xad, 0x06, 0x36, 0x95, 0x50, 0xd0, 0xdc,
- 0x94, 0x8c, 0xc6, 0xc2, 0x88, 0x96, 0x96, 0x8a, 0x46, 0x58, 0x72, 0xb0, 0x91, 0x51, 0x9b, 0x3d, 0x04, 0x5c,
- 0x96, 0x73, 0x6f, 0x01, 0x2f, 0xcd, 0x50, 0xa2, 0x64, 0x48, 0xa5, 0xd9, 0x48, 0x58, 0x06, 0x94, 0xf3, 0xf7,
- 0xc0, 0xb7, 0x5e, 0x53, 0xe7, 0x7c, 0x00, 0x1d, 0x24, 0x1f, 0x03, 0x93, 0xbf, 0x1d, 0xc1, 0xf0, 0x18, 0xd9,
- 0x8c, 0x6e, 0xb4, 0x93, 0xa2, 0x4f, 0x31, 0xfa, 0x58, 0x2d, 0xe9, 0x0b, 0xf7, 0x61, 0xa8, 0x10, 0x99, 0xea,
- 0x85, 0x0b, 0x9d, 0xb1, 0xce, 0xd0, 0x7f, 0x78, 0x22, 0xdf, 0xb5, 0x03, 0x9b, 0xd8, 0xa1, 0x6c, 0xad, 0xdd,
- 0xf6, 0x06, 0x75, 0x2d, 0x20, 0x9a, 0x92, 0x6a, 0xc6, 0x57, 0x17, 0x78, 0x43, 0x26, 0xea, 0x19, 0xfd, 0x16,
- 0xdf, 0xb4, 0x4e, 0xf6, 0x86, 0x0a, 0x9f, 0xf8, 0x78, 0x3d, 0x49, 0x43, 0xc8, 0xdf, 0xd7, 0xd1, 0x42, 0xb6,
- 0x49, 0x5c, 0x6a, 0x07, 0x05, 0xf5, 0x7b, 0x18, 0xb9, 0x5e, 0xda, 0xe9, 0xcf, 0x45, 0x02, 0xfa, 0x2b, 0x68,
- 0x49, 0x21, 0x10, 0xd3, 0x70, 0x11, 0x64, 0xd4, 0xda, 0xcc, 0x83, 0xdc, 0xa3, 0x71, 0xbb, 0xf2, 0x48, 0x91,
- 0xac, 0xd4, 0x50, 0xf2, 0x63, 0x88, 0x66, 0x04, 0xc8, 0xcf, 0x13, 0xf4, 0x39, 0x80, 0x0b, 0xa6, 0xf5, 0xd9,
- 0x0a, 0x8c, 0xb7, 0x9c, 0xcc, 0xc8, 0x13, 0xb4, 0x9a, 0x74, 0x93, 0xeb, 0x2b, 0x94, 0xad, 0x94, 0xc9, 0xcf,
- 0xab, 0xad, 0x78, 0xad, 0x44, 0xf1, 0x85, 0x6f, 0xe7, 0x5b, 0x7e, 0x83, 0x74, 0xb6, 0xdb, 0xaf, 0x79, 0xe5,
- 0xb3, 0xab, 0x4c, 0x78, 0xbd, 0xb6, 0x1c, 0x7c, 0xfe, 0x3e, 0x8b, 0x31, 0xe4, 0x28, 0x3f, 0x16, 0xbb, 0xf3,
- 0xe2, 0x90, 0x15, 0xfe, 0x79, 0x2d, 0x56, 0xc5, 0xc0, 0xbf, 0x43, 0x33, 0x05, 0xe3, 0x94, 0x31, 0x9f, 0x2e,
- 0x1a, 0x40, 0xa7, 0x80, 0xb1, 0xbe, 0x69, 0x60, 0xea, 0xc3, 0x59, 0xc3, 0x52, 0x46, 0x8c, 0xc7, 0x9e, 0xa6,
- 0x59, 0x3d, 0x13, 0x33, 0x6f, 0xda, 0xbf, 0x30, 0xf9, 0xb5, 0x3c, 0xb5, 0xb9, 0x9a, 0x59, 0x53, 0xe6, 0x7e,
- 0x6d, 0x7f, 0xd5, 0xb4, 0xeb, 0xe3, 0x47, 0x5c, 0x4d, 0xfe, 0x04, 0xac, 0xc2, 0xa3, 0x4d, 0xd7, 0x75, 0xb9,
- 0x95, 0x79, 0x90, 0xf1, 0x55, 0xb0, 0xc3, 0x4d, 0xed, 0x44, 0x22, 0x33, 0x0f, 0x5c, 0x75, 0xf8, 0x91, 0x29,
- 0x83, 0x46, 0x68, 0x84, 0x82, 0x87, 0x59, 0x3e, 0x86, 0x27, 0xf3, 0x7d, 0xe5, 0x4c, 0x9e, 0x43, 0xc4, 0x9d,
- 0xc0, 0x9e, 0xc5, 0x20, 0xc4, 0x7c, 0x33, 0x4b, 0x1c, 0x53, 0xbc, 0x68, 0x83, 0xea, 0x33, 0xac, 0xb9, 0x78,
- 0x32, 0xb3, 0x45, 0x41, 0x63, 0x5e, 0x7e, 0x16, 0x75, 0x0b, 0xb2, 0x22, 0x4d, 0x92
-};
-
-// context = simple_context_hi
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x68, 0x69, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0,
- 0xa4, 0xbe, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70,
- 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4,
- 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x20, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95, 0x20,
- 0x24, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x20, 0xe0, 0xa4, 0xa6,
- 0xe0, 0xa5, 0x8b, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f, 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20,
- 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0,
- 0xa4, 0xb8, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0,
- 0xa4, 0xac, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5,
- 0x80, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87,
- 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00,
- 0x3b, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0xe0, 0xa4, 0x8f, 0xe0, 0xa4, 0x95,
- 0x00, 0xe0, 0xa4, 0x95, 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb2, 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xa6, 0xe0,
- 0xa5, 0x8b, 0x00, 0xe0, 0xa4, 0xaa, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xaf, 0xe0, 0xa4, 0xbe, 0xe0, 0xa4, 0xb8,
- 0xe0, 0xa4, 0xbe, 0x00, 0xe0, 0xa4, 0xae, 0xe0, 0xa5, 0x81, 0xe0, 0xa4, 0x9d, 0xe0, 0xa5, 0x87, 0x00, 0xe0,
- 0xa4, 0xb0, 0xe0, 0xa4, 0xb8, 0xe0, 0xa4, 0xad, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0xe0, 0xa4, 0xb8,
- 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0x9f, 0xe0, 0xa5, 0x8d, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x89, 0xe0, 0xa4, 0xac,
- 0xe0, 0xa5, 0x87, 0xe0, 0xa4, 0xb0, 0xe0, 0xa5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00,
- 0x20, 0x00, 0x00, 0x00, 0x0e, 0x17, 0x17, 0x0e, 0x19, 0x05, 0x0a, 0x1d, 0x1e, 0x15, 0x05, 0x24, 0x05, 0x1a,
- 0x2a, 0x16, 0x0e, 0x21, 0x04, 0x24, 0x07, 0x04, 0x21, 0x14, 0x24, 0x28, 0x21, 0x03, 0x06, 0x0e, 0x21, 0x14,
- 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
- 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
- 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0x02, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x50, 0x00,
- 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_HINDI__
-
-#if defined(__PV_LANGUAGE_ARABIC__)
-
-// wake-word = coffee
-static const uint8_t KEYWORD_ARRAY[] = {
- 0xd5, 0x50, 0x75, 0xd2, 0x3e, 0x9a, 0x61, 0xe9, 0xf5, 0xd8, 0xba, 0xd9, 0x44, 0x1b, 0xf9, 0x81, 0xc8, 0xe3,
- 0x17, 0x2a, 0x3f, 0xdc, 0xd2, 0x0c, 0x3c, 0x13, 0x4d, 0x91, 0xbd, 0xc3, 0x7d, 0x86, 0x88, 0xa4, 0x80, 0xab,
- 0x44, 0x0f, 0x3e, 0xa6, 0xc5, 0x06, 0x1e, 0xd8, 0x10, 0x3a, 0xc1, 0x30, 0x86, 0xba, 0xaf, 0xa7, 0xb9, 0x01,
- 0xfa, 0x8b, 0x69, 0x3a, 0xe4, 0xa8, 0xc7, 0x9a, 0xc8, 0xf4, 0x54, 0xf9, 0x4b, 0x5b, 0xed, 0x6e, 0xdf, 0xda,
- 0xfc, 0x48, 0x92, 0xda, 0xb6, 0x8d, 0x4b, 0xfd, 0x19, 0x18, 0x22, 0x0c, 0x20, 0xa5, 0x59, 0xaf, 0x12, 0x9c,
- 0x1a, 0x96, 0xb2, 0xf6, 0x2a, 0x62, 0x81, 0x53, 0x46, 0x6c, 0x73, 0x85, 0x37, 0x9e, 0xf4, 0xce, 0x35, 0xcb,
- 0xec, 0x39, 0x54, 0x4d, 0x04, 0x5f, 0xed, 0x83, 0xd1, 0xba, 0xf7, 0x3a, 0x74, 0x21, 0xb9, 0x21, 0xdc, 0xc1,
- 0x24, 0x7c, 0x90, 0xf7, 0x00, 0x4f, 0x0b, 0x68, 0x7f, 0x23, 0xea, 0x14, 0x75, 0xb1, 0x32, 0xb7, 0xcc, 0xfb,
- 0x10, 0xc1, 0xd1, 0xf2, 0x33, 0x8e, 0xd3, 0x58, 0x38, 0xad, 0x77, 0xe7, 0xc4, 0x4f, 0x68, 0x9c, 0x58, 0x82,
- 0x01, 0x8b, 0x96, 0x4c, 0xfd, 0x54, 0xbc, 0xae, 0xe4, 0x24, 0xa9, 0x50, 0xe9, 0xc3, 0xb4, 0x40, 0x53, 0x0f,
- 0x4d, 0xa5, 0x67, 0x3e, 0xfa, 0x13, 0xf2, 0x82, 0xa4, 0x01, 0x11, 0xa9, 0x8d, 0xa0, 0xa6, 0x05, 0x47, 0x46,
- 0x56, 0x40, 0x0b, 0x96, 0x08, 0x6c, 0x57, 0xf0, 0xd5, 0x0e, 0xdc, 0x13, 0x67, 0xae, 0xfb, 0xbf, 0xea, 0x01,
- 0x36, 0x61, 0x74, 0x0b, 0x75, 0x80, 0x3f, 0x48, 0xbe, 0x96, 0x62, 0x9a, 0xc6, 0xde, 0x36, 0x3a, 0xe4, 0x13,
- 0x41, 0xb2, 0xbf, 0xdd, 0x87, 0x13, 0x2d, 0x8d, 0x7f, 0xad, 0x9a, 0x2e, 0xef, 0x18, 0x33, 0x06, 0xca, 0xdf,
- 0x23, 0x30, 0x43, 0x4f, 0x89, 0x53, 0x19, 0x55, 0xce, 0x32, 0x0a, 0xef, 0x0c, 0x50, 0xab, 0xa8, 0x9a, 0x8c,
- 0x8f, 0xee, 0x72, 0x92, 0x9d, 0x37, 0xca, 0xdb, 0x23, 0x8f, 0x6e, 0x67, 0x74, 0xba, 0x2c, 0x67, 0x98, 0xe2,
- 0x26, 0x55, 0xf9, 0xb9, 0xf2, 0x77, 0xf2, 0xfb, 0x4d, 0xbd, 0x5b, 0xf1, 0x97, 0xe3, 0x79, 0x0d, 0xbc, 0x88,
- 0xbf, 0xca, 0xfd, 0xdf, 0x08, 0xe4, 0xa1, 0x12, 0x3c, 0xa4, 0xc0, 0x84, 0x55, 0xb2, 0xcc, 0x0a, 0xb5, 0xfb,
- 0xde, 0x9d, 0xd5, 0x44, 0x80, 0x6a, 0x8c, 0x4e, 0xc9, 0x38, 0x2c, 0x88, 0x2f, 0x4f, 0xa0, 0xab, 0x24, 0x5b,
- 0xa1, 0x1c, 0x0a, 0x41, 0x59, 0xc9, 0x17, 0x45, 0xa4, 0x54, 0x77, 0xcd, 0xef, 0x39, 0x29, 0x55, 0xb1, 0x23,
- 0x05, 0xda, 0x1b, 0x0d, 0xcd, 0x3e, 0x2a, 0xbf, 0x2f, 0xb6, 0x44, 0x8a, 0x50, 0x08, 0xd6, 0x76, 0x67, 0x49,
- 0xbf, 0xfc, 0xff, 0xdd, 0x8c, 0xc8, 0x20, 0x1c, 0x87, 0x2b, 0x06, 0x9e, 0x62, 0x56, 0xf5, 0x01, 0x43, 0x4e,
- 0x46, 0x53, 0x2c, 0x31, 0x2a, 0x63, 0x57, 0xc6, 0x7f, 0x3b, 0xf5, 0x12, 0x59, 0x1b, 0xe7, 0x4b, 0x1e, 0x18,
- 0xe5, 0xb5, 0x0f, 0xcc, 0x47, 0x79, 0x85, 0x50, 0xb6, 0x0e, 0xab, 0xd7, 0xc0, 0x3d, 0xb1, 0x83, 0x8f, 0xed,
- 0x7f, 0xe5, 0xd9, 0x56, 0xc0, 0x3a, 0xd2, 0x4b, 0x34, 0x6e, 0x0f, 0x5a, 0x69, 0xab, 0x8b, 0x8a, 0xcd, 0xa8,
- 0x4d, 0x75, 0x4d, 0x04, 0x56, 0x01, 0x89, 0x74, 0xe6, 0x9e, 0x30, 0xbc, 0xa1, 0x65, 0x10, 0x34, 0x8e, 0x88,
- 0x16, 0x89, 0xd4, 0x54, 0xf9, 0x16, 0x8b, 0xb5, 0x45, 0xea, 0xc1, 0x2f, 0xd7, 0x1b, 0x0f, 0xe9, 0x98, 0x3b,
- 0xc3, 0xf5, 0x37, 0xb8, 0x7f, 0x2e, 0x1b, 0x25, 0x5e, 0x24, 0x35, 0xab, 0x02, 0x72, 0x7c, 0xba, 0xf7, 0xdf,
- 0x8b, 0xab, 0x45, 0xce, 0x75, 0x57, 0xfc, 0x9e, 0x04, 0x03, 0x51, 0x76, 0x1d, 0x68, 0x4b, 0x59, 0x18, 0x93,
- 0x49, 0xb8, 0x41, 0x00, 0xa6, 0x5b, 0x43, 0x79, 0x07, 0xfe, 0x9b, 0x52, 0x96, 0xca, 0x7c, 0x0b, 0x5d, 0x4b,
- 0x2b, 0x9c, 0xea, 0xe0, 0x6e, 0x2b, 0xde, 0x0a, 0x34, 0x96, 0x3f, 0xeb, 0x06, 0xa4, 0x18, 0x70, 0x74, 0x23,
- 0x49, 0xed, 0x7c, 0x72, 0x30, 0x8d, 0xa4, 0x23, 0xe1, 0xec, 0x52, 0x05, 0xd5, 0x4c, 0xe3, 0xaa, 0x0f, 0x77,
- 0x91, 0xe6, 0x37, 0x74, 0xd0, 0x78, 0xc8, 0x3c, 0xd0, 0x2b, 0x86, 0xd3, 0x6a, 0x9f, 0x95, 0xe5, 0xf2, 0x47,
- 0x1f, 0xdc, 0xbc, 0x00, 0xb6, 0x9e, 0x3d, 0x75, 0x1f, 0x38, 0x31, 0x8f, 0x0f, 0xdc, 0x5d, 0x81, 0x4d, 0x70,
- 0x1a, 0x6e, 0x5e, 0x17, 0xb5, 0x8c, 0x2d, 0xe1, 0x38, 0x3b, 0x19, 0x1e, 0xbb, 0xe4, 0xb8, 0x84, 0x47, 0x54,
- 0xc8, 0x87, 0x47, 0x8a, 0x33, 0xef, 0x33, 0x84, 0x0c, 0x8f, 0x11, 0x89, 0x33, 0xc1, 0x3c, 0x06, 0xe0, 0xdf,
- 0x04, 0xbe, 0x82, 0x5c, 0xb3, 0x1a, 0x4f, 0x06, 0x9d, 0x38, 0x90, 0x9b, 0xd2, 0x04, 0x79, 0x1b, 0x00, 0xed,
- 0xf8, 0x64, 0x3c, 0xd3, 0x3b, 0x51, 0x3e, 0x96, 0x2b, 0x59, 0xef, 0x5b, 0xeb, 0x28, 0xf7, 0x3b, 0x4a, 0x57,
- 0xa2, 0xba, 0xee, 0x1f, 0xbb, 0xd0, 0xf8, 0x88, 0xea, 0xf2, 0xa6, 0xd6, 0xbf, 0xea, 0x0f, 0xf0, 0xe1, 0xcf,
- 0x5c, 0xd1, 0xae, 0x24, 0x99, 0x9b, 0x43, 0xa1, 0x1b, 0x6e, 0xa9, 0xc9, 0xe2, 0x0d, 0xef, 0xa2, 0x58, 0xe8,
- 0x97, 0xe9, 0xa0, 0x24, 0x28, 0x28, 0xaf, 0x5a, 0x60, 0xf6, 0x1f, 0x83, 0x73, 0x75, 0xe8, 0x93, 0x96, 0xcc,
- 0xd8, 0xc8, 0xa4, 0x69, 0x82, 0xb9, 0xe4, 0x12, 0xa9, 0x4d, 0x87, 0xaf, 0x11, 0xe0, 0x55, 0x31, 0x20, 0xf9,
- 0x72, 0x93, 0x2d, 0xbd, 0xbe, 0xf1, 0x52, 0xa2, 0x8e, 0x2e, 0x40, 0x42, 0x07, 0xd7, 0x47, 0x6c, 0x52, 0xef,
- 0x57, 0x4c, 0xfd, 0xf0, 0x2f, 0x36, 0xb0, 0xa4, 0xf3, 0x10, 0xce, 0x70, 0x39, 0x66, 0xa1, 0x56, 0x60, 0x35,
- 0xf2, 0xe3, 0x0f, 0xae, 0x31, 0xed, 0xb8, 0x73, 0xd6, 0x75, 0x03, 0x78, 0xdd, 0xbf, 0x3b, 0xbe, 0x01, 0x76,
- 0x81, 0x4b, 0x0e, 0x48, 0x5b, 0x08, 0xd6, 0x58, 0x9f, 0x0f, 0xff, 0xf9, 0x51, 0x98, 0xad, 0x46, 0x8d, 0x1e,
- 0xa7, 0xaf, 0x79, 0x86, 0x1e, 0x12, 0xc7, 0x42, 0xab, 0x8b, 0xdc, 0x72, 0xcf, 0x5d, 0xfc, 0xe4, 0x8d, 0x14,
- 0x62, 0x52, 0xed, 0xb2, 0x5e, 0x5a, 0xc3, 0x3f, 0x29, 0x31, 0x36, 0x3e, 0x3e, 0xc1, 0xb1, 0x08, 0xc7, 0x18,
- 0x71, 0x12, 0xf4, 0x1b, 0xa4, 0xd5, 0x1c, 0xa7, 0x7d, 0x16, 0xb2, 0x07, 0x54, 0xcd, 0xd0, 0x76, 0x0b, 0xb4,
- 0x3c, 0x24, 0x30, 0xb4, 0xf6, 0xc4, 0x75, 0x1d, 0x91, 0xa9, 0x00, 0x23, 0xbf, 0x28, 0x1c, 0x7a, 0x63, 0x81,
- 0x75, 0x40, 0x0a, 0x4c, 0x8b, 0xc1, 0x13, 0xf5, 0x43, 0xe2, 0x98, 0x4c, 0x53, 0xc4, 0x12, 0xe5, 0x49, 0x77,
- 0x92, 0x36, 0x3c, 0x95, 0xd7, 0xf3, 0x5f, 0x5b, 0x6e, 0x74, 0x82, 0xed, 0x55, 0x44, 0x2a, 0xbc, 0xad, 0x6f,
- 0x9f, 0xa5, 0xab, 0x8a, 0xd3, 0xb8, 0xce, 0x5d, 0xd6, 0x74, 0x2e, 0x37, 0xb6, 0x49, 0x5a, 0xab, 0xf4, 0x9b,
- 0x1f, 0xbd, 0x06, 0x83, 0x4a, 0x31, 0x22, 0xd0, 0x09, 0xc9, 0x89, 0x7c, 0xda, 0xcc, 0x8c, 0xa3, 0xde, 0xd7,
- 0xa1, 0xc0, 0xe9, 0xef, 0x8c, 0x6d, 0x42, 0x1a, 0xe8, 0x7b, 0x67, 0x46, 0x81, 0x60, 0x3b, 0x68, 0x92, 0xa6,
- 0x04, 0xc2, 0xab, 0xe0, 0x87, 0xe4, 0x6b, 0x18, 0x9a, 0x01, 0x9a, 0x99, 0x2e, 0xf0, 0x95, 0x3e, 0x09, 0x38,
- 0x94, 0xbe, 0x59, 0xd5, 0xdb, 0x98, 0x31, 0xc5, 0xb7, 0x97, 0x4f, 0xe9, 0x27, 0x53, 0xc9, 0x8a, 0xb1, 0x19,
- 0x56, 0x6d, 0x26, 0x49, 0x74, 0x24, 0xa5, 0x02, 0xc8, 0x15, 0x93, 0x81, 0xf7, 0x94, 0xee, 0x23, 0x10, 0x8c,
- 0xd3, 0xd8, 0x97, 0xe5, 0xaf, 0x70, 0xb4, 0x01, 0x7d, 0x4f, 0x4a, 0x49, 0x3c, 0x42, 0xea, 0x05, 0x71, 0xec,
- 0xfc, 0xa8, 0x67, 0x55, 0xc9, 0x49, 0x10, 0xac, 0xeb, 0x95, 0x7b, 0x3f, 0x89, 0x72, 0x60, 0x1e, 0xa9, 0xa0,
- 0xd3, 0x08, 0x83, 0x58, 0x23, 0xf6, 0xf2, 0xa5, 0xf6, 0x84, 0x02, 0x06, 0xc4, 0xde, 0x0d, 0x16, 0xd9, 0xdd,
- 0x2b, 0x53, 0x56, 0x2a, 0x29, 0x78, 0x80, 0x83, 0x57, 0x84, 0x0f, 0xc4, 0x33, 0xa8, 0x5c, 0xd4, 0xf9, 0x8c,
- 0x34, 0x18, 0xbc, 0xc5, 0x0d, 0xad, 0x82, 0x66, 0x1d, 0x23, 0x57, 0xc7, 0xde, 0x5e, 0x23, 0x06, 0xcf, 0x8e,
- 0xe8, 0xd9, 0xf1, 0x62, 0x6e, 0x66, 0xe8, 0xa1, 0x60, 0xb5, 0x32, 0x90, 0x06, 0x4f, 0x41, 0xca, 0xb3, 0xa9,
- 0x3f, 0xc1, 0xf9, 0x1f, 0xa0, 0xd6, 0xfd, 0x53, 0x07, 0x51, 0xf7, 0x1a, 0xc7, 0xd9, 0x5a, 0x69, 0xc6, 0x48,
- 0x12, 0x18, 0x98, 0xd6, 0x10, 0xa8, 0xec, 0xa4, 0x6f, 0xdf, 0xfb, 0x6c, 0xc1, 0x19, 0xd7, 0xb9, 0x1b, 0xc5,
- 0xcc, 0xb1, 0x64, 0xbc, 0xea, 0x78, 0x5e, 0xc8, 0x96, 0xd6, 0x62, 0xa9, 0x99, 0x18, 0x1f, 0xbe, 0xe9, 0xf0,
- 0x1e, 0x5a, 0x67, 0x6d, 0xd4, 0xee, 0x49, 0xcf, 0x1e, 0x8c, 0x0c, 0xd8, 0xbc, 0x80, 0xd3, 0x83, 0xcd, 0x7b,
- 0xe7, 0xb6, 0x0f, 0x63, 0x68, 0x0a, 0x25, 0xc7, 0x94, 0xc1, 0xe7, 0x87, 0x65, 0x1b, 0xd2, 0x2d, 0xdb, 0xe4,
- 0x27, 0x19, 0x25, 0x0d, 0x54, 0x1b, 0x08, 0xca, 0x6f, 0xe2, 0x29, 0xb9, 0x68, 0x56, 0x59, 0x97, 0x62, 0x78,
- 0x6d, 0xe8, 0xc5, 0xa4, 0x67, 0x23, 0xb0, 0x24, 0xe6, 0x7a, 0xc0, 0xc4, 0x15, 0xa1, 0xa1, 0x33, 0xd6, 0x1b,
- 0x70, 0x38, 0xff, 0xd4, 0xa3, 0x34, 0x60, 0x06, 0x7e, 0x53, 0xe3, 0x23, 0x53, 0x4c, 0x2f, 0xf9, 0x3d, 0x00,
- 0x67, 0x06, 0x9b, 0xe9, 0x73, 0xde, 0xe3, 0x9c, 0x87, 0xa9, 0x9f, 0xb3, 0x84, 0x68, 0x62, 0xaf, 0x76, 0x59,
- 0x4b, 0x82, 0xd2, 0x76, 0x06, 0x1f, 0x5d, 0x15, 0x45, 0xd9, 0x0c, 0x6e, 0xaa, 0xa6, 0x2e, 0x1d, 0x65, 0xdc,
- 0x29, 0x10, 0x3e, 0x6d, 0x9f, 0xe1, 0x80, 0x18, 0x16, 0x71, 0x6b, 0xec, 0x06, 0xdc, 0xd4, 0x5b, 0xc6, 0x10,
- 0xff, 0xfb, 0x28, 0x7a, 0x34, 0xdb, 0xd2, 0xcb, 0x13, 0x47, 0x3c, 0x08, 0xba, 0x71, 0x9c, 0x81, 0x15, 0x63,
- 0xf5, 0x84, 0xef, 0xc3, 0x8b, 0xcb, 0x38, 0x7b, 0x30, 0x9c, 0xb7, 0x28, 0x0c, 0x06, 0xb3, 0x0e, 0xe4, 0xa9,
- 0x43, 0xbb, 0x87, 0xee, 0xee, 0x1d, 0xa7, 0xc9, 0xde, 0x2a, 0x69, 0x06, 0x2c, 0xa1, 0x73, 0xf6, 0xfa, 0x22,
- 0xa7, 0xd0, 0x91, 0x14, 0x75, 0x0f, 0xa6, 0xf7, 0xf6, 0x36, 0x9e, 0x73, 0x6a, 0xf2, 0x28, 0xde, 0x5f, 0x0c,
- 0x70, 0x89, 0xc4, 0x05, 0xc7, 0x35, 0x3e, 0xec, 0x03, 0x04, 0xf7, 0xa9, 0x41, 0xab, 0x88, 0xdf, 0x2c, 0x6c,
- 0x13, 0x2b, 0x4c, 0x63, 0xf0, 0x90, 0x9d, 0x70, 0xb1, 0xfd, 0x65, 0xa6, 0x1d, 0x00, 0x7d, 0x90, 0x21, 0x86,
- 0x18, 0xf1, 0x12, 0xe7, 0x13, 0x2a, 0x3d, 0xa2, 0xa1, 0x6d, 0xbf, 0x7a, 0xcb, 0x7b, 0x2b, 0xac, 0x94, 0xa5,
- 0xa5, 0xf0, 0x62, 0x9d, 0x56, 0x19, 0xe5, 0xcd, 0x56, 0x18, 0xde, 0xbf, 0x0a, 0xe1, 0x36, 0x9f, 0xef, 0xea,
- 0x07, 0xe3, 0x3c, 0x05, 0x6e, 0xa8, 0xde, 0xd8, 0xd1, 0x9f, 0x8d, 0xab, 0x7f, 0x09, 0x65, 0x27, 0x01, 0xc8,
- 0xc9, 0xfb, 0x0b, 0x93, 0x3f, 0x41, 0x7e, 0x01, 0x07, 0xfb, 0x23, 0xb3, 0x76, 0x10, 0x43, 0xe9, 0x02, 0x6f,
- 0x4f, 0x8d, 0xfa, 0x4c, 0x10, 0x6b, 0x85, 0x75, 0x7e, 0xba, 0x89, 0x56, 0x28, 0x3f, 0x27, 0xd2, 0xba, 0x70,
- 0xef, 0xbe, 0x83, 0xf5
-};
-
-// context = simple_context_ar
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x61, 0x72, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe4, 0x03, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x22, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20,
- 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x20, 0x24, 0x76, 0x72,
- 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
- 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x22, 0x0a, 0x20, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xa7, 0xd9, 0x84, 0xd9, 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88,
- 0xd9, 0x84, 0xd8, 0xa9, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0xd8, 0xaa, 0xd9,
- 0x81, 0xd8, 0xa7, 0xd8, 0xad, 0x22, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x0b, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x33, 0x00,
- 0x00, 0x00, 0xd8, 0xa3, 0xd8, 0xb9, 0xd8, 0xb7, 0xd9, 0x86, 0xd9, 0x8a, 0x00, 0xd8, 0xa7, 0xd9, 0x84, 0xd9,
- 0x81, 0xd8, 0xb1, 0xd8, 0xa7, 0xd9, 0x88, 0xd9, 0x84, 0xd8, 0xa9, 0x00, 0xd8, 0xaa, 0xd9, 0x81, 0xd8, 0xa7,
- 0xd8, 0xad, 0x00, 0xd8, 0xae, 0xd9, 0x88, 0xd8, 0xae, 0x00, 0xd8, 0xb5, 0xd9, 0x81, 0xd8, 0xb1, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x1e, 0x00,
- 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00,
- 0x18, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, 0x46, 0x00,
- 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00,
- 0x7c, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa6, 0x00,
- 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00,
- 0xc4, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0xd6, 0x00,
- 0x00, 0x00, 0xda, 0x00, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0xe4, 0x00, 0x00, 0x00, 0xea, 0x00, 0x00, 0x00,
- 0xf1, 0x00, 0x00, 0x00, 0xf6, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x03, 0x01, 0x00, 0x00, 0x07, 0x01,
- 0x00, 0x00, 0x0c, 0x01, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x16, 0x01, 0x00, 0x00, 0x1c, 0x01, 0x00, 0x00,
- 0x21, 0x01, 0x00, 0x00, 0x27, 0x01, 0x00, 0x00, 0x2b, 0x01, 0x00, 0x00, 0x30, 0x01, 0x00, 0x00, 0x36, 0x01,
- 0x00, 0x00, 0x02, 0x10, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x02, 0x1a, 0x17, 0x19, 0x03, 0x0c, 0x1f, 0x20, 0x09,
- 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10,
- 0x16, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20,
- 0x24, 0x03, 0x09, 0x10, 0x08, 0x10, 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03,
- 0x20, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24,
- 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a,
- 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x10, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a,
- 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x03,
- 0x09, 0x10, 0x08, 0x1a, 0x09, 0x0a, 0x1a, 0x11, 0x20, 0x24, 0x09, 0x10, 0x08, 0x03, 0x09, 0x0a, 0x1a, 0x11,
- 0x20, 0x24, 0x09, 0x10, 0x08, 0x1a, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x10, 0x08,
- 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x03, 0x0c, 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a,
- 0x08, 0x1a, 0x0a, 0x20, 0x0f, 0x1a, 0x0c, 0x0e, 0x21, 0x0e, 0x0e, 0x21, 0x0e, 0x10, 0x0e, 0x21, 0x0e, 0x03,
- 0x0e, 0x21, 0x0e, 0x1a, 0x0e, 0x21, 0x0e, 0x1a, 0x0c, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x0e, 0x1a, 0x24, 0x10,
- 0x0e, 0x10, 0x0e, 0x1a, 0x24, 0x10, 0x0e, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x18, 0x10, 0x0a, 0x10,
- 0x11, 0x10, 0x18, 0x10, 0x0a, 0x10, 0x11, 0x1a, 0x0c, 0x18, 0x10, 0x0a, 0x11, 0x18, 0x10, 0x0a, 0x11, 0x10,
- 0x18, 0x03, 0x0a, 0x11, 0x18, 0x03, 0x0a, 0x11, 0x03, 0x0c, 0x18, 0x03, 0x0a, 0x11, 0x1a, 0x0c, 0x18, 0x1a,
- 0x0a, 0x10, 0x11, 0x18, 0x1a, 0x0a, 0x10, 0x11, 0x10, 0x18, 0x1a, 0x0a, 0x11, 0x18, 0x1a, 0x0a, 0x11, 0x10,
- 0x18, 0x1a, 0x0a, 0x11, 0x1a, 0x0c, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00,
- 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69,
- 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00, 0x18, 0x00,
- 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x01, 0x00,
- 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_ARABIC__
-
-#if defined(__PV_LANGUAGE_POLISH__)
-
-// wake-word = cześć komputer
-static const uint8_t KEYWORD_ARRAY[] = {
- 0x23, 0x5a, 0xda, 0x76, 0xf9, 0xc1, 0x39, 0x71, 0x29, 0xed, 0x13, 0xca, 0xaf, 0xb5, 0x99, 0x14, 0xd1, 0x6f,
- 0xba, 0xd3, 0xf4, 0xf6, 0x75, 0x6c, 0x27, 0x0f, 0x45, 0x36, 0xfb, 0x79, 0x54, 0xbc, 0xea, 0xd8, 0xae, 0x7e,
- 0x59, 0xf2, 0x18, 0x16, 0x3a, 0x62, 0x56, 0x06, 0x23, 0xc2, 0x7a, 0x68, 0xb1, 0xf3, 0x30, 0x1b, 0xc0, 0xf7,
- 0xe9, 0xcc, 0xa9, 0xf3, 0x16, 0x62, 0x00, 0x62, 0xe1, 0xf1, 0xe5, 0xa0, 0x1b, 0x93, 0x1b, 0x26, 0x24, 0xc9,
- 0x51, 0xe8, 0xd0, 0x93, 0x44, 0x0a, 0x3b, 0xb2, 0x8e, 0x61, 0xfc, 0xbd, 0xf7, 0xe2, 0x80, 0xdc, 0x73, 0xee,
- 0x1d, 0x7a, 0xf5, 0x5c, 0x3c, 0x39, 0xd2, 0x81, 0xb7, 0xd7, 0x31, 0x67, 0x51, 0x91, 0x20, 0x09, 0x00, 0x30,
- 0xab, 0x47, 0xf9, 0xaf, 0x99, 0x67, 0xeb, 0x1a, 0x0d, 0x2a, 0x26, 0x11, 0x68, 0x11, 0x16, 0x61, 0x8d, 0x6b,
- 0x7a, 0x31, 0x6d, 0x41, 0x49, 0xd9, 0x5d, 0x35, 0xc8, 0xcb, 0xa0, 0x6d, 0xbd, 0x2b, 0xbd, 0x17, 0x2b, 0x26,
- 0xa9, 0x79, 0x61, 0xb2, 0x7f, 0xec, 0x0f, 0x08, 0x47, 0x9c, 0x04, 0x1c, 0xd3, 0x1e, 0x62, 0xf5, 0x20, 0x05,
- 0x81, 0x5b, 0xc9, 0x9f, 0xfb, 0x46, 0x8c, 0x11, 0x90, 0x78, 0x4c, 0x3e, 0x41, 0x71, 0x27, 0xa0, 0x0e, 0x43,
- 0x10, 0x70, 0x79, 0x4d, 0x97, 0xfc, 0x5e, 0x73, 0x69, 0x92, 0x3b, 0x9f, 0x6b, 0x9e, 0x1c, 0x20, 0xcc, 0xd6,
- 0xc9, 0x19, 0xcf, 0x68, 0xc4, 0xc6, 0x84, 0xce, 0x16, 0x7b, 0xab, 0x47, 0xdb, 0x22, 0xaa, 0x05, 0x54, 0x6b,
- 0xab, 0x0d, 0xc0, 0x1c, 0x8b, 0x82, 0x51, 0xdc, 0xec, 0xe9, 0x15, 0x13, 0x33, 0x4e, 0x51, 0x5f, 0xca, 0xe6,
- 0x6d, 0x0a, 0x18, 0x94, 0xd7, 0x59, 0xc7, 0x52, 0xda, 0xdf, 0x03, 0x73, 0x76, 0xc1, 0x86, 0x44, 0x1d, 0xbd,
- 0x2d, 0xaa, 0x2a, 0x2b, 0x4e, 0x6f, 0xec, 0x20, 0xe1, 0x55, 0x9f, 0xbf, 0xe6, 0x1d, 0x4e, 0xd5, 0xa7, 0xac,
- 0x85, 0x4f, 0x46, 0xa6, 0x52, 0x82, 0x81, 0xb0, 0x18, 0x06, 0xe4, 0xcd, 0xce, 0x97, 0x1f, 0x40, 0xf7, 0xdb,
- 0x0c, 0x7e, 0x86, 0x2b, 0x21, 0x8b, 0x5a, 0xd5, 0x9c, 0xdb, 0xb4, 0x57, 0xb1, 0x35, 0x47, 0xe8, 0xbd, 0xc1,
- 0xd3, 0xd9, 0xc5, 0xc5, 0x78, 0x9e, 0xa1, 0x5b, 0xfc, 0xbe, 0xa7, 0xf3, 0x51, 0x7b, 0xe8, 0xac, 0xcc, 0x94,
- 0xbe, 0x32, 0x75, 0x83, 0xfc, 0x58, 0xb2, 0x2e, 0x20, 0x0e, 0x2c, 0xe2, 0x9f, 0xa2, 0x83, 0xbf, 0xfd, 0x15,
- 0x06, 0x31, 0x7b, 0x5e, 0xd8, 0x7c, 0x46, 0x53, 0x8a, 0xa3, 0xb9, 0x29, 0x27, 0xa4, 0x38, 0x49, 0x6b, 0x56,
- 0x83, 0x35, 0x4f, 0x23, 0xc7, 0x5f, 0x12, 0x2b, 0x36, 0x23, 0xe0, 0xa8, 0x2c, 0x38, 0xc6, 0x61, 0x25, 0xbe,
- 0x85, 0x37, 0x73, 0x6d, 0xbf, 0x35, 0x8b, 0x0f, 0x4d, 0x3b, 0x2e, 0xcb, 0x30, 0x72, 0xb1, 0x8d, 0x4a, 0xa6,
- 0x6d, 0x23, 0x50, 0x64, 0xd0, 0x45, 0xf7, 0x57, 0x0b, 0x20, 0x77, 0x44, 0x78, 0x6b, 0xff, 0xca, 0xda, 0x3f,
- 0xd9, 0x88, 0xb6, 0x78, 0x91, 0xd7, 0x70, 0xd8, 0xc3, 0x84, 0x6b, 0xf9, 0x01, 0x68, 0xa1, 0xd2, 0x39, 0x37,
- 0xb0, 0x5f, 0x09, 0x3b, 0x74, 0x6a, 0x64, 0x39, 0xb9, 0x4a, 0x8e, 0x28, 0x6b, 0x4d, 0xeb, 0x79, 0xfd, 0xc9,
- 0x83, 0xa0, 0x6d, 0x9f, 0x5e, 0x24, 0x7b, 0x58, 0xd3, 0x7e, 0xd9, 0x36, 0xed, 0xfd, 0x2c, 0xbc, 0x1a, 0x6f,
- 0x25, 0x6a, 0xfe, 0xfe, 0x8f, 0x6b, 0xee, 0x5d, 0x26, 0xdc, 0xf9, 0xb2, 0x38, 0x6c, 0xae, 0x62, 0x5a, 0xa0,
- 0x11, 0xe0, 0x2b, 0x18, 0xda, 0x78, 0x90, 0xc6, 0x27, 0x2d, 0x05, 0x85, 0xbb, 0x48, 0x7b, 0x5d, 0xf3, 0x5b,
- 0x55, 0xc2, 0x33, 0x80, 0xa2, 0x08, 0x7c, 0xec, 0x04, 0x13, 0xa7, 0x3f, 0x84, 0x1a, 0x20, 0x5f, 0x5f, 0x64,
- 0x80, 0xd3, 0xe4, 0x4f, 0x1d, 0x4c, 0x40, 0x17, 0xb0, 0x54, 0xc9, 0xba, 0xef, 0xe4, 0xc6, 0x1f, 0x2d, 0xc1,
- 0xa1, 0x89, 0xc6, 0x18, 0x04, 0xf1, 0x05, 0x7e, 0x01, 0x1f, 0x93, 0x35, 0x74, 0x9d, 0x36, 0x7b, 0x06, 0x54,
- 0xbe, 0x43, 0xb2, 0x30, 0xe5, 0xd9, 0x6f, 0xc5, 0x31, 0x94, 0x7e, 0x99, 0x4b, 0x26, 0xcd, 0xdf, 0x4a, 0xe0,
- 0x0e, 0x6f, 0x20, 0x75, 0x30, 0xcd, 0xa6, 0xdc, 0x86, 0x0e, 0x86, 0x9c, 0x7a, 0xed, 0x5c, 0x51, 0xa1, 0xcf,
- 0xdd, 0xe8, 0x52, 0x05, 0x62, 0x38, 0x19, 0xd3, 0x7b, 0x7c, 0x7b, 0xd2, 0x57, 0xad, 0x8a, 0xb3, 0x55, 0x61
-};
-
-// context = simple_context_pl
-static const uint8_t CONTEXT_ARRAY[] = {
- 0x72, 0x68, 0x69, 0x6e, 0x6f, 0x32, 0x2e, 0x32, 0x2e, 0x30, 0x00, 0x00, 0x00, 0x00, 0x70, 0x6c, 0x00, 0x09,
- 0x00, 0x00, 0x00, 0x70, 0x69, 0x63, 0x6f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
- 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x5c, 0x02, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x3a, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79,
- 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x64, 0x61, 0x6a, 0x20, 0x6d, 0x69, 0x20, 0x24, 0x76, 0x72,
- 0x75, 0x63, 0x68, 0x74, 0x3a, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x22, 0x0a, 0x20, 0x20, 0x73, 0x6c, 0x6f,
- 0x74, 0x73, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x3a, 0x0a, 0x20, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x74, 0x72, 0x75, 0x73, 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x22, 0x0a,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x22, 0x0a, 0x20,
- 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x20, 0x22, 0x62, 0x61, 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x22, 0x00,
- 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00,
- 0x14, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x62, 0x61,
- 0x6e, 0x61, 0x6e, 0x6f, 0x77, 0x79, 0x00, 0x64, 0x61, 0x6a, 0x00, 0x6d, 0x61, 0x6c, 0x69, 0x6e, 0x61, 0x00,
- 0x6d, 0x69, 0x00, 0x73, 0x70, 0x72, 0x61, 0x67, 0x6e, 0x69, 0x6f, 0x6e, 0x79, 0x00, 0x74, 0x72, 0x75, 0x73,
- 0x6b, 0x61, 0x77, 0x6b, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00,
- 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00,
- 0x1c, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02, 0x01, 0x0d, 0x01, 0x0d, 0x1c, 0x16, 0x20, 0x03, 0x01,
- 0x09, 0x0c, 0x01, 0x0b, 0x08, 0x0d, 0x01, 0x0c, 0x08, 0x10, 0x0e, 0x0f, 0x01, 0x1f, 0x21, 0x1c, 0x0d, 0x20,
- 0x11, 0x0f, 0x15, 0x10, 0x0a, 0x01, 0x07, 0x0a, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00,
- 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00,
- 0x09, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
- 0x0a, 0x00, 0x00, 0x00, 0x76, 0x72, 0x75, 0x63, 0x68, 0x74, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x73, 0x68, 0x6f, 0x70,
- 0x70, 0x69, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x69, 0x72, 0x73, 0x74, 0x79, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x02, 0x00, 0x00, 0x00,
- 0x18, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
- 0x01, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xff, 0xff,
- 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
-};
-
-#endif // __PV_LANGUAGE_POLISH__
-
#if defined(__PV_LANGUAGE_SWEDISH__)
// wake-word = hej dator
static const uint8_t KEYWORD_ARRAY[] = {
- 0x84, 0xa9, 0x3a, 0x6e, 0x71, 0x4e, 0x5f, 0x2a, 0xa6, 0x90, 0x42, 0xa3, 0x20, 0xa6, 0xc7, 0x6a, 0x2e, 0xe8,
- 0x9b, 0xf1, 0xc3, 0x26, 0x3b, 0x5d, 0x4b, 0xec, 0xcd, 0xc8, 0x7b, 0xab, 0x82, 0xb8, 0x3e, 0xab, 0x71, 0x39,
- 0xcb, 0x65, 0x23, 0x88, 0x2e, 0xd8, 0x2f, 0x66, 0x46, 0xad, 0x09, 0x9b, 0xc0, 0x0f, 0x4e, 0x10, 0x4f, 0xf4,
- 0xb5, 0xb0, 0x53, 0xbd, 0xab, 0x02, 0xca, 0x70, 0x1c, 0xcb, 0xad, 0x8f, 0x65, 0x58, 0xa2, 0x7d, 0x5e, 0x53,
- 0xaa, 0x24, 0x6b, 0x57, 0xcf, 0x63, 0xf9, 0xfe, 0x29, 0x46, 0x68, 0x9a, 0x0c, 0x2a, 0x7b, 0xcb, 0xe8, 0x47,
- 0x12, 0x9a, 0x2b, 0x07, 0x25, 0xc5, 0x48, 0xca, 0x01, 0x19, 0x6e, 0x67, 0xe4, 0xc6, 0x62, 0xc3, 0xed, 0x7c,
- 0xbe, 0x3c, 0xe9, 0x10, 0x5c, 0x22, 0xf0, 0x5b, 0xb9, 0x91, 0x5b, 0x23, 0x07, 0x61, 0x8d, 0xdc, 0xf5, 0x04,
- 0xbc, 0x29, 0x2a, 0xab, 0xa8, 0x80, 0x73, 0xf6, 0xfb, 0x27, 0x95, 0x68, 0x42, 0x5a, 0x49, 0xa8, 0xc1, 0x62,
- 0xba, 0x5f, 0xdf, 0xa1, 0x6e, 0x26, 0xc1, 0xb2, 0xe1, 0xf4, 0xe8, 0xf7, 0x41, 0x2c, 0x1d, 0x66, 0x7d, 0xa6,
- 0x8b, 0x3a, 0x35, 0x50, 0xb9, 0xef, 0xa4, 0x80, 0xcc, 0xfc, 0xb7, 0xb9, 0x0b, 0x77, 0x2c, 0xb5, 0x7d, 0xb2,
- 0x66, 0x3f, 0x02, 0x3f, 0x9d, 0x48, 0x5c, 0x2b, 0xc1, 0xa5, 0x7b, 0xf0, 0xd3, 0xd9, 0x9b, 0x67, 0xbb, 0xcb,
- 0xbf, 0x04, 0x09, 0x95, 0x0a, 0x45, 0x6e, 0xc8, 0x53, 0x61, 0x30, 0xf6, 0xbe, 0x9e, 0xf4, 0xe0, 0x9a, 0x91,
- 0x1f, 0x6f, 0xee, 0x23, 0xc2, 0xd7, 0x10, 0x0a, 0x27, 0x17, 0xc2, 0xbf, 0x66, 0x6b, 0x2b, 0x63, 0x17, 0x04,
- 0xf9, 0xe4, 0x2d, 0xec, 0x57, 0x12, 0xcd, 0x68, 0x20, 0x24, 0x1c, 0x85, 0x19, 0xd0, 0x30, 0x31, 0x32, 0x3f,
- 0xc9, 0xbc, 0xc4, 0xb0, 0xcc, 0x61, 0xdd, 0x33, 0x24, 0xfb, 0x22, 0x3f, 0x9c, 0xcc, 0xc0, 0xb7, 0x25, 0xb0,
- 0xda, 0x99, 0x18, 0x1b, 0xb4, 0x8a, 0xea, 0x36, 0x63, 0x6c, 0xcd, 0x10, 0x94, 0x52, 0x5c, 0x3f, 0x7c, 0x0c,
- 0xfd, 0x60, 0x8d, 0xc2, 0x17, 0x75, 0x4a, 0x92, 0x3f, 0x4f, 0x5d, 0x4c, 0x49, 0x93, 0x5f, 0x23, 0x13, 0x86,
- 0xd8, 0xfb, 0xb8, 0xd0, 0x6e, 0x9c, 0xe0, 0x9c, 0x16, 0x81, 0x21, 0x38, 0x1d, 0xc8, 0xd4, 0xfd, 0x83, 0xf2,
- 0x35, 0x19, 0xf0, 0x93, 0xc2, 0xb0, 0xb3, 0xba, 0x3e, 0x2d, 0x96, 0x43, 0xeb, 0xfc, 0x3b, 0xa6, 0x71, 0x1f,
- 0x05, 0x2c, 0x0f, 0xd2, 0xf7, 0xee, 0xc9, 0xc2, 0x9a, 0x8f, 0x0b, 0x7a, 0x0a, 0xb9, 0xc7, 0xb7, 0x20, 0x31,
- 0xe2, 0x43, 0xe0, 0x6c, 0x21, 0x43, 0xf4, 0xc8, 0xad, 0x04, 0xbb, 0xc2, 0x32, 0x35, 0x33, 0x7b, 0xf3, 0x4a,
- 0x39, 0xc1, 0x3c, 0x8d, 0x2f, 0xac, 0xd4, 0x75, 0x65, 0xb4, 0xe4, 0x48, 0xef, 0xda, 0x27, 0xb9, 0x87, 0xde,
- 0xd2, 0xe7, 0x4d, 0x77, 0x6c, 0xf5, 0x2e, 0xa0, 0x3c, 0xb6, 0x67, 0x70, 0x45, 0x3d, 0x0b, 0xca, 0x2a, 0x1a,
- 0x50, 0x00, 0xce, 0x0a, 0x3c, 0x9d, 0xde, 0x74, 0x92, 0xff, 0xc7, 0x54, 0x67, 0x86, 0xca, 0xa8, 0xfa, 0x13,
- 0x2b, 0x99, 0x5e, 0xdd, 0xe4, 0x39, 0xe9, 0x52, 0x3a, 0x59, 0x65, 0x1f, 0x83, 0xbb, 0x08, 0x22, 0x6e, 0x80,
- 0x7d, 0xd1, 0x93, 0x46, 0x77, 0xa8, 0x1c, 0xa5, 0xb8, 0x7d, 0xa1, 0x7d, 0xab, 0xfb, 0xbb, 0xb4, 0x7e, 0xcb,
- 0x10, 0x40, 0x8b, 0x5d, 0xc0, 0xe1, 0x8d, 0xd2, 0x0f, 0xe6, 0xf4, 0x79, 0xfd, 0x94, 0x34, 0xfd, 0xd2, 0xd5,
- 0x2d, 0xe7, 0x7c, 0x61, 0x0a, 0xc1, 0x86, 0x6e, 0x7c, 0x94
+ 0xa7, 0x12, 0xc6, 0x64, 0xcb, 0xdb, 0xd1, 0x92, 0x24, 0x02, 0x32, 0x84, 0x1f, 0x48, 0xf7, 0x2d, 0x9c, 0x34,
+ 0x4a, 0x5e, 0x41, 0x04, 0x9e, 0x92, 0x63, 0xde, 0xe6, 0x2a, 0x86, 0x40, 0xac, 0x1f, 0x9d, 0xfe, 0x26, 0x08,
+ 0x46, 0x6c, 0xed, 0x4e, 0x24, 0xc6, 0xa5, 0xe0, 0xdf, 0xc9, 0xd6, 0x47, 0xdc, 0x55, 0x3b, 0xb7, 0x0c, 0xa6,
+ 0x20, 0xcc, 0x0e, 0x51, 0x16, 0x46, 0x44, 0xf0, 0x94, 0xd6, 0xa5, 0xb4, 0xc5, 0xa3, 0x2f, 0x3c, 0xfe, 0x0f,
+ 0xe7, 0xb8, 0x41, 0x83, 0xf6, 0x41, 0xad, 0xdf, 0x06, 0x05, 0x96, 0xcb, 0x63, 0xce, 0x53, 0x8c, 0x39, 0xac,
+ 0x0c, 0x27, 0x5a, 0x57, 0x42, 0xc3, 0x66, 0x05, 0x19, 0x3c, 0xbe, 0xf8, 0x38, 0x2f, 0x87, 0xd9, 0xba, 0x81,
+ 0x27, 0x17, 0x1c, 0x95, 0x42, 0xf0, 0x31, 0xaa, 0x19, 0xe6, 0x96, 0x1d, 0x07, 0x8f, 0x0c, 0x60, 0x7f, 0xa2,
+ 0xfa, 0x6d, 0x8e, 0xdb, 0xde, 0xed, 0x7f, 0x47, 0x0d, 0x95, 0x1f, 0x55, 0x24, 0xb0, 0xbf, 0x5c, 0x3a, 0x04,
+ 0x3f, 0x13, 0xf2, 0x9a, 0x72, 0xca, 0x19, 0xe1, 0x92, 0x23, 0x2d, 0x9a, 0x73, 0x02, 0x53, 0x37, 0xe6, 0xca,
+ 0xd4, 0x29, 0x00, 0xb5, 0x2e, 0xdb, 0xef, 0x54, 0x9b, 0x41, 0x31, 0x9f, 0x0e, 0x6a, 0x7b, 0x04, 0x95, 0x77,
+ 0xef, 0x37, 0x55, 0x67, 0xe4, 0x3c, 0xc7, 0x8a, 0x8f, 0x7f, 0x9d, 0xc1, 0x10, 0xa0, 0x2d, 0xa7, 0x07, 0xd2,
+ 0x72, 0xc7, 0x93, 0xcd, 0x7b, 0x05, 0x1c, 0x11, 0x83, 0x50, 0x0f, 0xab, 0x5f, 0x39, 0xc0, 0x54, 0x94, 0x59,
+ 0x70, 0xc3, 0x68, 0x2e, 0xd5, 0xd2, 0x8e, 0xd0, 0x01, 0xb3, 0x57, 0x0e, 0xfd, 0xc1, 0x1b, 0x2b, 0x0b, 0x54,
+ 0x73, 0xd2, 0x92, 0x4f, 0x65, 0xfa, 0xf6, 0x87, 0xb5, 0x83, 0x0d, 0x4c, 0x37, 0xf1, 0xa3, 0x5e, 0xb3, 0x66,
+ 0xd1, 0x65, 0xf0, 0xb6, 0x08, 0x60, 0xcb, 0xb7, 0xad, 0x31, 0xf1, 0xc3, 0xf2, 0xb4, 0x3f, 0x4f, 0xd5, 0x6f,
+ 0x7f, 0xc1, 0x6d, 0x50, 0xa5, 0x30, 0xae, 0x39, 0xeb, 0x9b, 0x48, 0x23, 0x46, 0x4a, 0x4c, 0x07, 0x92, 0x1d,
+ 0xce, 0x16, 0xad, 0xd4, 0xee, 0xc3, 0xb4, 0x01, 0x2c, 0x16, 0xc1, 0x84, 0xc7, 0xc2, 0x55, 0x99, 0x49, 0x31,
+ 0x68, 0xfc, 0x44, 0xbf, 0x2c, 0x2f, 0x50, 0x9b, 0xc6, 0x28, 0xf3, 0xcf, 0x16, 0xf8, 0xf2, 0xb1, 0x1e, 0xad,
+ 0x73, 0xfe, 0xd4, 0xc0, 0x17, 0xfa, 0x52, 0x9e, 0xbd, 0x01, 0xfa, 0x3c, 0xa2, 0xd7, 0x9c, 0x47, 0xb5, 0x31,
+ 0x79, 0x95, 0x29, 0x8b, 0x99, 0x51, 0x1d, 0xbf, 0x73, 0xb9, 0x1b, 0x26, 0x2a, 0xc2, 0x4a, 0x27, 0x9c, 0xb6,
+ 0x36, 0x9b, 0xe0, 0xa0, 0xde, 0xb4, 0xf6, 0x63, 0x91, 0xe8, 0xd1, 0xe2, 0xb8, 0x84, 0x89, 0x26, 0x89, 0xb1,
+ 0xe5, 0x6b, 0x6a, 0xc5, 0xdf, 0xe6, 0xae, 0xb2, 0x9b, 0x2b, 0x20, 0x80, 0x7c, 0xeb, 0x78, 0xf0, 0xd4, 0xd3,
+ 0x10, 0x8f, 0xde, 0xba, 0xca, 0x17, 0xf1, 0x17, 0x10, 0x0d, 0xcd, 0xde, 0x43, 0x1c, 0x80, 0x3f, 0x18, 0xe0,
+ 0x1c, 0x17, 0xc0, 0x46, 0xc1, 0x2d, 0x80, 0x13, 0xd9, 0x62, 0xb8, 0x83, 0x22, 0xd9, 0x2a, 0xa6, 0x22, 0x75,
+ 0xd9, 0x8a, 0xbb, 0xaa, 0x6a, 0xb6, 0x23, 0x2e, 0xb3, 0x48, 0xa0, 0x37, 0xf2, 0x38, 0xe9, 0x57, 0x12, 0x0d,
+ 0x48, 0xee, 0x63, 0x9d, 0x8c, 0x32, 0xe0, 0x55, 0x20, 0x68, 0xb5, 0xbc, 0x13, 0xc1, 0x5b, 0x20, 0x68, 0x16,
+ 0x2b, 0x27, 0xb2, 0xe1, 0xeb, 0x28, 0xa4, 0xa0, 0x8c, 0x3c, 0x8f, 0x51, 0x66, 0xc9, 0x10, 0xdf, 0x56, 0x99,
+ 0x17, 0xea, 0x70, 0x17, 0x13, 0x56, 0x6e, 0x15, 0x23, 0x73
};
// context = simple_context_sv
@@ -3259,178 +3492,178 @@ static const uint8_t CONTEXT_ARRAY[] = {
// wake-word = xin chào máy tính
static const uint8_t KEYWORD_ARRAY[] = {
- 0xa2, 0x01, 0x8a, 0xf2, 0xc4, 0xc9, 0x80, 0xb4, 0x5a, 0x2f, 0xb6, 0x8e, 0xc4, 0x89, 0x78, 0x81, 0xff, 0x0b,
- 0xee, 0xc5, 0x15, 0xfa, 0xdc, 0xf4, 0x42, 0xa4, 0xa4, 0x97, 0xb3, 0x4e, 0xd4, 0xee, 0x53, 0x20, 0x41, 0xaf,
- 0x6a, 0xfa, 0x8e, 0xcb, 0x55, 0xb5, 0x66, 0xd6, 0xa1, 0xb7, 0x85, 0xbf, 0x1a, 0x33, 0x1c, 0xd0, 0x15, 0x37,
- 0x61, 0xf2, 0x5f, 0xd5, 0x16, 0x68, 0x4c, 0x68, 0xa6, 0xb0, 0x73, 0xdc, 0x74, 0x51, 0x62, 0xcd, 0xa6, 0x98,
- 0x0f, 0x03, 0xa9, 0xa5, 0x9e, 0xbe, 0x0c, 0xfb, 0xb2, 0x8d, 0xd0, 0xd2, 0xe1, 0x4f, 0xc6, 0xb3, 0xf6, 0x26,
- 0xa9, 0x86, 0x89, 0x8d, 0x8c, 0x9e, 0x66, 0x52, 0x71, 0xba, 0xbb, 0xec, 0x2d, 0x8f, 0x55, 0xfc, 0x04, 0x66,
- 0xe5, 0xc7, 0x2c, 0x80, 0x75, 0x8d, 0xf6, 0xda, 0x06, 0x7d, 0x8a, 0x16, 0x97, 0x62, 0x75, 0x1f, 0xe0, 0x2e,
- 0xef, 0x29, 0x3c, 0x32, 0xf5, 0x4f, 0x97, 0xa8, 0xe0, 0x42, 0xa4, 0x87, 0x45, 0x74, 0x98, 0x02, 0xda, 0x72,
- 0x82, 0x46, 0x28, 0x8f, 0xd8, 0x15, 0x65, 0x41, 0xcd, 0x06, 0xe4, 0x67, 0x9f, 0x3c, 0xe3, 0x4b, 0xf6, 0x17,
- 0x3d, 0xac, 0xc3, 0xfb, 0x1b, 0x91, 0x5f, 0x8d, 0x42, 0x79, 0x85, 0x59, 0xef, 0x58, 0xbe, 0xc2, 0x6b, 0xcb,
- 0xff, 0xcf, 0x06, 0x1b, 0x85, 0x10, 0xd5, 0x48, 0x5b, 0x3a, 0x9f, 0x03, 0x7e, 0xdc, 0x89, 0xb0, 0x95, 0xea,
- 0x34, 0xa9, 0x8f, 0x25, 0x9f, 0x6b, 0xc8, 0x37, 0x50, 0x2b, 0x8f, 0x61, 0x17, 0x8e, 0xfa, 0x63, 0x61, 0x5f,
- 0x61, 0x0b, 0xa0, 0x6c, 0xbf, 0xe4, 0xca, 0xf3, 0x48, 0xaf, 0xb0, 0x16, 0xb1, 0xbd, 0x39, 0x79, 0x20, 0x7f,
- 0x1a, 0xcf, 0xc4, 0x92, 0xd2, 0xb9, 0xcb, 0x39, 0x83, 0x17, 0x06, 0x53, 0xfd, 0x51, 0xba, 0x34, 0x42, 0xe1,
- 0x2c, 0xa6, 0x43, 0x31, 0x6b, 0x8c, 0xbc, 0x66, 0x9c, 0xde, 0x43, 0xe4, 0xf3, 0x5d, 0xfd, 0x43, 0x35, 0x69,
- 0xa1, 0x01, 0x1f, 0xf0, 0x55, 0xbf, 0xda, 0x30, 0x64, 0xdf, 0xbb, 0x67, 0xd5, 0xac, 0x42, 0x95, 0xb3, 0xa2,
- 0xeb, 0xc6, 0x86, 0xa0, 0x09, 0x7f, 0xf7, 0x7a, 0x6b, 0x7a, 0x01, 0x85, 0x5b, 0x74, 0x11, 0x03, 0xac, 0xb6,
- 0xac, 0xaa, 0x8c, 0x9b, 0x6a, 0xd6, 0x29, 0x79, 0xed, 0x38, 0x2f, 0x58, 0x35, 0xc0, 0xa8, 0x76, 0xb7, 0x05,
- 0xb9, 0x36, 0x44, 0x55, 0xca, 0x89, 0xe2, 0x5e, 0x9f, 0xe0, 0x75, 0xde, 0xe9, 0xe1, 0xeb, 0x2e, 0x80, 0x5e,
- 0x72, 0xd4, 0x9e, 0x9b, 0x5b, 0x00, 0x12, 0xcc, 0x47, 0x1c, 0x67, 0xd3, 0x18, 0xa3, 0x98, 0xe9, 0xec, 0x79,
- 0x1b, 0x63, 0x18, 0x71, 0x3e, 0x4e, 0x17, 0x8d, 0x15, 0x99, 0xec, 0xb3, 0xe8, 0x79, 0x5e, 0xbd, 0x3d, 0xa8,
- 0xa2, 0xb0, 0xc1, 0xf0, 0xf3, 0x80, 0xf9, 0xb4, 0x61, 0x4d, 0x88, 0xa1, 0x75, 0x8f, 0x67, 0x4b, 0x1b, 0x13,
- 0xc3, 0x3c, 0x2d, 0x17, 0xfe, 0xe0, 0x2c, 0x76, 0xe5, 0xea, 0x08, 0xfb, 0x6f, 0x84, 0xff, 0x53, 0x39, 0x7d,
- 0xbd, 0xa4, 0x10, 0x4c, 0x23, 0x62, 0xed, 0xbf, 0x99, 0x41, 0x58, 0x48, 0x60, 0xc7, 0x8e, 0x27, 0x5d, 0x3e,
- 0x72, 0xc9, 0x5a, 0xed, 0xdb, 0xfe, 0x4f, 0x37, 0xcb, 0x16, 0x85, 0xf3, 0x3c, 0xfb, 0x56, 0xb7, 0x78, 0x96,
- 0xc4, 0xd9, 0x68, 0x28, 0x50, 0x47, 0x65, 0xde, 0x74, 0x24, 0xcd, 0xac, 0x91, 0x81, 0x5a, 0x85, 0xfb, 0x1a,
- 0x79, 0x47, 0xf8, 0x9b, 0x88, 0x1b, 0x71, 0x80, 0xb4, 0x57, 0x07, 0x12, 0xf6, 0xc3, 0xda, 0x4b, 0x9a, 0x16,
- 0x00, 0xaa, 0x96, 0x73, 0x92, 0x41, 0x77, 0xe5, 0xf2, 0xe8, 0xf6, 0xfa, 0xb7, 0x65, 0xf3, 0x72, 0xab, 0x01,
- 0xea, 0xde, 0x78, 0xb1, 0x71, 0x9a, 0x5c, 0x2c, 0x91, 0x52, 0xd1, 0x2f, 0xbb, 0x87, 0x5b, 0xa0, 0xe4, 0x64,
- 0x3a, 0x57, 0x82, 0x4f, 0xb4, 0xd6, 0x4b, 0xb6, 0x8b, 0xbb, 0xc3, 0xef, 0xcc, 0xb5, 0xfd, 0xfd, 0x8d, 0xef,
- 0xd6, 0x95, 0x1b, 0x7f, 0x92, 0xe3, 0x4c, 0x96, 0x59, 0x65, 0xc8, 0xaf, 0xdd, 0xf5, 0x6c, 0xf6, 0xba, 0xa3,
- 0x4f, 0x2d, 0x06, 0x29, 0x12, 0x19, 0xf7, 0x6f, 0xa8, 0xaf, 0x03, 0xca, 0x28, 0x8e, 0x12, 0x2e, 0x92, 0x91,
- 0xd4, 0x8b, 0x4e, 0x59, 0x5a, 0x58, 0x10, 0x6b, 0x9e, 0xc7, 0xc6, 0x98, 0x7b, 0x96, 0x9c, 0x0d, 0xfb, 0x96,
- 0x00, 0x83, 0xa3, 0x64, 0x14, 0x89, 0x7a, 0xbc, 0x7e, 0xe2, 0xe7, 0x9b, 0xec, 0x5b, 0x5d, 0x56, 0x04, 0x8b,
- 0xc9, 0xea, 0xc8, 0x6a, 0x43, 0xc0, 0xfe, 0xd4, 0x22, 0xe0, 0x82, 0x15, 0xeb, 0x75, 0x44, 0x31, 0xe6, 0x28,
- 0xe4, 0x6f, 0x45, 0x53, 0x62, 0xec, 0xbd, 0x74, 0x43, 0x4e, 0x3b, 0xfb, 0xf0, 0x4e, 0x3d, 0xa1, 0x5b, 0x8a,
- 0x53, 0x77, 0xd4, 0x03, 0xc4, 0x1d, 0x71, 0x0b, 0x59, 0x63, 0x5a, 0x0c, 0x43, 0x57, 0x69, 0xed, 0x9a, 0xee,
- 0x32, 0x75, 0x95, 0xd2, 0x66, 0x03, 0x42, 0x98, 0x99, 0xc5, 0x09, 0x99, 0x07, 0x26, 0xbf, 0x90, 0xe9, 0x23,
- 0x7c, 0x2b, 0x93, 0x8c, 0xc6, 0x85, 0xe9, 0x84, 0x55, 0x51, 0xb8, 0x99, 0xd2, 0xd6, 0xcf, 0x7d, 0x42, 0xf5,
- 0x8f, 0xc2, 0xdf, 0x5a, 0x98, 0xba, 0x72, 0xa6, 0x1c, 0x8a, 0x03, 0x56, 0x9d, 0xed, 0x29, 0x4f, 0x46, 0x55,
- 0x59, 0xd5, 0x76, 0xe5, 0xbd, 0x26, 0xe4, 0x5d, 0xea, 0x89, 0x3e, 0x3a, 0x1c, 0xde, 0x3d, 0x1d, 0x1f, 0xba,
- 0x24, 0x3e, 0x30, 0x8a, 0xe2, 0x7c, 0x5b, 0xa2, 0xe0, 0x2d, 0x36, 0x11, 0x0a, 0x0f, 0xc6, 0xf7, 0x2e, 0x1f,
- 0xd1, 0x46, 0xc7, 0x26, 0xec, 0x5c, 0x53, 0x08, 0xe8, 0x2b, 0x8a, 0x6f, 0x45, 0xc4, 0x70, 0x09, 0xb6, 0xfb,
- 0x15, 0x78, 0x8e, 0x22, 0x77, 0x00, 0x75, 0xf0, 0x86, 0xb0, 0x58, 0x69, 0xf0, 0xf2, 0xb4, 0x89, 0x6d, 0x92,
- 0x39, 0xfb, 0x35, 0xb9, 0x2d, 0x8b, 0x0a, 0xe6, 0x43, 0x65, 0xc7, 0x6b, 0xbf, 0xc2, 0xcb, 0xca, 0xbc, 0x6c,
- 0x44, 0x3c, 0x81, 0x6d, 0x89, 0xde, 0xff, 0xba, 0xc5, 0x5c, 0xbc, 0xe3, 0x0b, 0x93, 0xcb, 0xda, 0xf5, 0x23,
- 0x59, 0x11, 0xc7, 0x88, 0x68, 0x47, 0xa3, 0x75, 0xb5, 0x7a, 0x9e, 0xa0, 0xd4, 0x57, 0x22, 0x05, 0x49, 0x73,
- 0x9c, 0xff, 0x1e, 0xf2, 0x45, 0xdc, 0xd9, 0xa8, 0x20, 0x86, 0xd1, 0x0d, 0xd1, 0xf8, 0x1a, 0x9b, 0x72, 0xf3,
- 0x9f, 0x8d, 0xf1, 0x15, 0x07, 0x77, 0x2f, 0x05, 0x03, 0xd0, 0xc9, 0xf6, 0x58, 0x32, 0x7c, 0x4b, 0x60, 0x2c,
- 0x28, 0x1c, 0xf6, 0x90, 0xd2, 0xfd, 0x50, 0xc7, 0x82, 0xc2, 0x0f, 0x0a, 0xe5, 0x39, 0x54, 0xdc, 0x31, 0x80,
- 0x88, 0xaf, 0x3e, 0x0e, 0xb9, 0x10, 0xc6, 0x9a, 0xae, 0x7e, 0xe8, 0xb0, 0x88, 0x99, 0x5d, 0x8c, 0xc2, 0x42,
- 0xe9, 0x74, 0xda, 0xcd, 0xee, 0x25, 0xff, 0x48, 0x63, 0xb2, 0xa5, 0x3b, 0x0b, 0xd8, 0xb4, 0x55, 0x40, 0xe2,
- 0xfc, 0x70, 0x3b, 0x4c, 0x66, 0x06, 0xe9, 0xca, 0x69, 0xc5, 0x7c, 0x38, 0x88, 0x44, 0x54, 0x0b, 0x01, 0x69,
- 0x79, 0x5e, 0xcf, 0xe5, 0xf2, 0x73, 0xd4, 0xd4, 0x86, 0xc7, 0x69, 0x36, 0x01, 0x6b, 0x67, 0x8a, 0x29, 0x6e,
- 0xf3, 0xb6, 0x69, 0x08, 0x79, 0x49, 0x7f, 0x31, 0x09, 0x31, 0x1c, 0xbf, 0x49, 0x97, 0x1b, 0x9f, 0x35, 0x58,
- 0x97, 0x0e, 0x66, 0x7e, 0x20, 0x7e, 0x34, 0x2b, 0xb9, 0xbc, 0x94, 0x66, 0xb1, 0xb6, 0xb1, 0xe2, 0x30, 0xd7,
- 0x76, 0xe8, 0x51, 0x1a, 0x03, 0x9d, 0x35, 0x87, 0x6c, 0x4c, 0x90, 0x76, 0xaa, 0x74, 0x77, 0x7f, 0x0a, 0x62,
- 0xc2, 0x3c, 0x20, 0xab, 0x83, 0x19, 0xcf, 0x2b, 0xba, 0x0d, 0x65, 0xf9, 0x03, 0xf9, 0x55, 0xee, 0x39, 0x0f,
- 0x9d, 0xfc, 0x2a, 0x2b, 0x8c, 0x0d, 0x13, 0x3b, 0xe6, 0x8f, 0xa5, 0xfd, 0x43, 0xab, 0x62, 0xa4, 0x00, 0xe3,
- 0xeb, 0x65, 0x93, 0x81, 0xce, 0x11, 0x8b, 0x04, 0xe6, 0x30, 0xd0, 0xd2, 0xa5, 0x83, 0x9c, 0x33, 0x0a, 0x8e,
- 0x3d, 0xb0, 0xeb, 0x4b, 0x3c, 0x92, 0xe4, 0xc1, 0xc6, 0x48, 0xe2, 0xa6, 0x6e, 0x8a, 0x3c, 0xd9, 0xf2, 0xa0,
- 0x05, 0xc4, 0x16, 0x9b, 0x47, 0x7b, 0xab, 0xb7, 0xea, 0x1f, 0x14, 0x34, 0xff, 0x71, 0x33, 0x13, 0xfc, 0x78,
- 0x77, 0x0c, 0xf4, 0x3c, 0xcf, 0xc3, 0x36, 0xbc, 0x51, 0x66, 0x89, 0xf7, 0xa1, 0x6f, 0x35, 0x20, 0xf3, 0x1b,
- 0x14, 0xd9, 0xf8, 0x9a, 0x8c, 0x75, 0x87, 0x9a, 0x21, 0x3f, 0xc0, 0xf8, 0x54, 0xc1, 0x7c, 0x96, 0x0c, 0x79,
- 0xd4, 0x41, 0x79, 0x29, 0x18, 0xf8, 0xcf, 0xab, 0xe8, 0xb9, 0x01, 0xaf, 0x7b, 0xf8, 0x90, 0xa7, 0xb0, 0x34,
- 0x75, 0xad, 0x85, 0xfd, 0x00, 0x26, 0x08, 0x13, 0xb6, 0xed, 0x11, 0x2c, 0x09, 0x10, 0x43, 0x3a, 0x49, 0xe4,
- 0xf6, 0x0e, 0x44, 0xaa, 0x55, 0x7b, 0xe9, 0xff, 0x97, 0x23, 0xb1, 0xbf, 0x7d, 0xc2, 0x17, 0xbe, 0xe4, 0x1a,
- 0x4a, 0xe9, 0x8f, 0xb3, 0xe7, 0xa6, 0xdd, 0xba, 0xde, 0x2d, 0x97, 0x2f, 0x1e, 0x37, 0xf5, 0x87, 0xf2, 0x3d,
- 0x26, 0x98, 0x27, 0x2c, 0xae, 0xb7, 0xd8, 0x04, 0x57, 0x14, 0x2a, 0xa1, 0xce, 0x53, 0x5a, 0x62, 0x16, 0xbe,
- 0x75, 0x94, 0x18, 0x08, 0x6f, 0x2a, 0xc5, 0xdb, 0x3e, 0x1d, 0x09, 0xca, 0xd5, 0x53, 0x0d, 0x0a, 0x25, 0x62,
- 0x47, 0x22, 0xfd, 0x18, 0xc0, 0x0e, 0x5d, 0xdb, 0x60, 0x12, 0x2d, 0xaa, 0x12, 0x83, 0xbd, 0x1e, 0x8c, 0xb2,
- 0x38, 0xd9, 0x93, 0x6f, 0x05, 0x98, 0xbc, 0x81, 0x50, 0x48, 0xf6, 0xe4, 0x8e, 0x5d, 0xcb, 0xbd, 0xcc, 0x52,
- 0x28, 0xc3, 0x8b, 0xc6, 0x0c, 0x0f, 0x7d, 0x57, 0x8e, 0xf3, 0x75, 0xce, 0xed, 0x4c, 0xa5, 0x9f, 0x2c, 0x69,
- 0xe4, 0x8b, 0x07, 0x79, 0x61, 0x9d, 0xb9, 0xa1, 0x2d, 0xf8, 0xa1, 0x59, 0x04, 0x63, 0x24, 0x2c, 0xad, 0xa3,
- 0x8f, 0x7c, 0x43, 0xb6, 0x25, 0x25, 0xc9, 0x26, 0x8c, 0x04, 0x5c, 0xd8, 0x73, 0x8f, 0x54, 0xaa, 0xc8, 0xf1,
- 0xb8, 0x25, 0x5a, 0xa0, 0x6c, 0xf2, 0x22, 0xda, 0x31, 0x26, 0x2f, 0x83, 0xf7, 0xef, 0x1c, 0x30, 0x66, 0xee,
- 0x1d, 0x1c, 0x35, 0x8e, 0x6a, 0x17, 0x70, 0xc3, 0xbc, 0x0b, 0xa8, 0xfa, 0x8c, 0xc8, 0xda, 0x53, 0x8d, 0x42,
- 0xb0, 0xda, 0x87, 0x8a, 0xe4, 0xd8, 0x43, 0xe2, 0xa1, 0x3f, 0x81, 0xe6, 0x57, 0xb1, 0x17, 0x1a, 0xf6, 0xb5,
- 0xe2, 0xeb, 0x1d, 0x6f, 0x3c, 0xef, 0x20, 0xf6, 0x70, 0x9b, 0xcb, 0x69, 0x5c, 0x85, 0xb6, 0xbd, 0x8a, 0xa6,
- 0xf2, 0x57, 0xb1, 0x09, 0x12, 0x6e, 0x8a, 0xcb, 0x99, 0x42, 0xdf, 0x13, 0x05, 0x74, 0x3f, 0x30, 0xc1, 0x8b,
- 0xec, 0x10, 0xb8, 0x83, 0x89, 0xa2, 0x00, 0x62, 0x78, 0xf1, 0xbd, 0xb1, 0xe4, 0xd1, 0x5c, 0x1f, 0x1a, 0x62,
- 0x23, 0xb2, 0xb9, 0x49, 0xd7, 0x04, 0x3d, 0xa8, 0xcd, 0x20, 0xbd, 0x4b, 0xc5, 0x9e, 0x95, 0x89, 0x56, 0x42,
- 0xc6, 0xcf, 0x00, 0x4b, 0x43, 0xa8, 0xaa, 0x62, 0x0a, 0xa3, 0xac, 0xe6, 0x1b, 0x81, 0xae, 0x47, 0x2d, 0x01,
- 0x33, 0x31, 0x09, 0x93, 0x90, 0x48, 0x15, 0xb9, 0x26, 0x08, 0x7f, 0xa0, 0xf2, 0xb2, 0x9e, 0x62, 0xdf, 0x4a,
- 0xc9, 0x5f, 0x84, 0x8c, 0x40, 0xe8, 0x28, 0xa7, 0x0d, 0x28, 0xb0, 0x4b, 0x1c, 0x53, 0xb7, 0x70, 0x13, 0x5f,
- 0x1b, 0xd7, 0xd3, 0x08, 0xce, 0x5e, 0x7c, 0x2a, 0x35, 0x40, 0x8c, 0xed, 0xbf, 0x83, 0x59, 0x27, 0x99, 0x8e,
- 0x1d, 0xd4, 0x38, 0xba, 0x63, 0x8e, 0x31, 0xc1, 0xc8, 0x08, 0xba, 0x12, 0x1f, 0x31, 0x15, 0xcb, 0x5f, 0x4a,
- 0x11, 0xc3, 0x4a, 0x15, 0xcb, 0xe9, 0xc9, 0x29, 0xd9, 0x38, 0x7e, 0xf9, 0xd0, 0x9d, 0xde, 0x97, 0xce, 0x6f,
- 0xfb, 0x3f, 0x35, 0x56, 0x5f, 0xa0, 0xbe, 0xd0, 0x46, 0xb1, 0x48, 0x7f, 0xbe, 0x5b, 0x59, 0xa8, 0x19, 0xb8,
- 0x08, 0x13, 0x46, 0x2e, 0x25, 0x33, 0xd7, 0x5c, 0xc4, 0xb1, 0xe1, 0xa3, 0xe5, 0xf0, 0x99, 0x24, 0x02, 0xfc,
- 0x4f, 0x92, 0x74, 0x9f, 0x45, 0x85, 0x63, 0xf3, 0xb0, 0xad, 0x19, 0x6e, 0x79, 0xae, 0x9c, 0x50, 0x25, 0xb4,
- 0x53, 0xde, 0xd0, 0xd2, 0xfd, 0x0b, 0x0a, 0x06, 0x3c, 0x49, 0x89, 0x78, 0xcf, 0x70, 0xdd, 0x5c, 0xaa, 0x5a,
- 0xed, 0x96, 0xd3, 0x47, 0xa6, 0x3a, 0xd2, 0xd3, 0xbb, 0xf1, 0x63, 0xa7, 0x6f, 0x07, 0xb5, 0x68, 0xf2, 0x39,
- 0x62, 0x24, 0xca, 0x19, 0x74, 0xa1, 0xa7, 0xec, 0x55, 0xd6, 0x15, 0x44, 0xfc, 0xe3, 0xb7, 0x5d, 0x5e, 0xec,
- 0xba, 0x34, 0x39, 0xbd, 0xfe, 0xe0, 0x79, 0xd8, 0x84, 0x66, 0x6b, 0x62, 0xc1, 0x85, 0xf4, 0xad, 0x4e, 0xa4,
- 0x10, 0xb7, 0xa7, 0x10, 0x3b, 0x13, 0x2c, 0x3f, 0x38, 0x0e, 0x15, 0xa8, 0x55, 0x3c, 0xaa, 0x11, 0xe9, 0x03,
- 0x6a, 0x8c, 0xb4, 0x95, 0x82, 0x1c, 0x89, 0x35, 0x4f, 0x5e, 0xff, 0x38, 0x89, 0x95, 0x92, 0x0e, 0xc0, 0x0b,
- 0x92, 0x48, 0x3a, 0x5b, 0x05, 0xd2, 0x95, 0x15, 0x71, 0x3e, 0x60, 0xc8, 0x91, 0x03, 0x06, 0x5f, 0x61, 0xa3,
- 0x6f, 0x15, 0x65, 0xfc, 0xd8, 0x4a, 0x42, 0xd0, 0xcf, 0x7e, 0x1b, 0x16, 0x2c, 0x84, 0x3a, 0x6e, 0xef, 0x4e,
- 0x51, 0x47, 0x67, 0x83, 0x32, 0x00, 0xaa, 0x26, 0xb6, 0x84, 0x6f, 0x62, 0xe0, 0x3e, 0xb7, 0xfa, 0xf8, 0x10,
- 0xf3, 0x61, 0xaa, 0xd4, 0x5f, 0x53, 0xfe, 0xeb, 0x32, 0x38, 0xaf, 0x8a, 0x88, 0x29, 0x9a, 0x2a, 0x7a, 0x49,
- 0x1c, 0x72, 0xfa, 0x32, 0x75, 0x82, 0xee, 0xb2, 0x01, 0xc9, 0x22, 0x4e, 0xa2, 0x03, 0x31, 0xa0, 0x0c, 0xaa,
- 0xd7, 0x22, 0x9f, 0x11, 0x09, 0xd8, 0xf6, 0x5b, 0xa0, 0xd7, 0x98, 0x2b, 0xf6, 0xd1, 0x1e, 0xbb, 0x47, 0xef,
- 0xdc, 0x48, 0xec, 0xff, 0x24, 0x46, 0x77, 0xdc, 0xf3, 0xfc, 0xa5, 0xee, 0x9a, 0x7c, 0x26, 0xd7, 0x27, 0x09,
- 0xf4, 0x67, 0x17, 0xda, 0x37, 0x8c, 0x1f, 0xef, 0xc6, 0xc4, 0x4c, 0x36, 0x8a, 0x25, 0x14, 0xb2, 0xe3, 0xa1,
- 0x2e, 0xd3, 0x0b, 0x70, 0x6a, 0x51, 0x8e, 0x46, 0x27, 0x18, 0x1a, 0x79, 0xbf, 0x5a, 0xd7, 0x18, 0x5d, 0x13,
- 0xea, 0x1d, 0xd7, 0xf4, 0x18, 0x3d, 0xc4, 0x0e, 0x0f, 0xb1, 0x9c, 0xfe, 0x77, 0xb4, 0x23, 0x02, 0x36, 0x8f,
- 0x30, 0x46, 0xf8, 0x16, 0x41, 0xce, 0xb1, 0x04, 0xee, 0x51, 0xa6, 0x23, 0x03, 0x79, 0xcf, 0xff, 0x52, 0xf0,
- 0x0e, 0x67, 0xe8, 0xe5, 0x1d, 0x3e, 0x8a, 0x32, 0x34, 0x79, 0x93, 0x5e, 0xdc, 0xa7, 0x4f, 0x7d, 0x74, 0x48,
- 0x3b, 0xf5, 0x01, 0xd6, 0x8f, 0x74, 0x39, 0x45, 0x96, 0xb7, 0x07, 0x94, 0xc1, 0x17, 0x40, 0xfb, 0xa2, 0xa6,
- 0x31, 0x67, 0x06, 0xfa, 0xbb, 0xbe, 0x15, 0x81, 0xae, 0xa2, 0x7d, 0xf1, 0xe7, 0xb2, 0x1a, 0xa2, 0x98, 0x83,
- 0x3f, 0x8c, 0x17, 0x65, 0xf9, 0x79, 0x6d, 0x17, 0x9a, 0x22, 0x93, 0x2a, 0x42, 0x67, 0x8c, 0xbb, 0x59, 0x5b,
- 0xa3, 0x2e, 0xbe, 0xa1, 0xc2, 0xaf, 0xa5, 0xc8, 0xa4, 0x6e, 0x79, 0x5c, 0x09, 0x2d, 0xd9, 0x12, 0xa6, 0xa7,
- 0xf8, 0x5f, 0x79, 0x33, 0x0b, 0x3e, 0x36, 0xf6, 0xac, 0x11, 0xd3, 0xe8, 0xd2, 0xc3, 0x6b, 0xfb, 0xbe, 0x5e,
- 0xba, 0x4f, 0x5e, 0xf0, 0xbb, 0x5d, 0x65, 0x26, 0x40, 0x74, 0x51, 0xdd, 0x83, 0x19, 0x1b, 0x8f, 0x31, 0x3f,
- 0xab, 0x53, 0xcd, 0xd6, 0xa6, 0x1e, 0x0e, 0x51, 0xae, 0x98, 0x86, 0x04, 0x56, 0x37, 0xa9, 0x8b, 0xe7, 0x54,
- 0x21, 0x73, 0x82, 0x06, 0x89, 0xa2, 0x3c, 0x72, 0x38, 0xba, 0x98, 0xf2, 0x07, 0x9b, 0x65, 0x1e, 0x37, 0x92,
- 0xf8, 0x38, 0xbb, 0xbe, 0x35, 0xed, 0x2b, 0x28, 0x3d, 0xe3, 0xd9, 0x36, 0x08, 0xc9, 0xf4, 0xe6, 0x19, 0xaf,
- 0x6c, 0xbf, 0x80, 0xd4, 0x1b, 0xda, 0x2c, 0x49, 0x62, 0xd5, 0x05, 0xc6, 0x4d, 0x6d, 0xc2, 0xf2, 0x37, 0xa7,
- 0x7a, 0x2b, 0x06, 0x15, 0x6b, 0x8c, 0x6d, 0xef, 0x1e, 0xf9, 0xe1, 0xdc, 0xce, 0xd1, 0x21, 0xa4, 0x19, 0xcc,
- 0xa1, 0x1e, 0x44, 0xa3, 0x9c, 0x7d, 0xe5, 0x52, 0xe5, 0xad, 0xfc, 0xdd, 0x02, 0xfb, 0x13, 0x31, 0xbc, 0x04,
- 0x7b, 0x4c, 0x79, 0xff, 0x01, 0xc4, 0x94, 0xcb, 0x17, 0xc8, 0x4c, 0xe3, 0x55, 0x22, 0xd7, 0xba, 0xc1, 0x1d,
- 0x44, 0xe5, 0x96, 0x17, 0xc4, 0x2d, 0x66, 0xf4, 0x5e, 0x72, 0xc3, 0x84, 0x15, 0xd9, 0x91, 0x79, 0xb7, 0x4b,
- 0x7a, 0x85, 0x8a, 0xa7, 0x80, 0x5c, 0x59, 0xa3, 0x0a, 0x38, 0x4d, 0xa6, 0x36, 0x15, 0x5b, 0xd2, 0x8f, 0x2c,
- 0xd2, 0x6f, 0x07, 0xa8, 0x75, 0xc1, 0x29, 0x22, 0x90, 0x3b, 0x57, 0x34, 0x0e, 0x01, 0x88, 0x45, 0xad, 0xed,
- 0x9a, 0x4f, 0x83, 0x9a, 0xf4, 0x46, 0xcf, 0x48, 0xcf, 0x3c, 0x27, 0x10, 0xf5, 0x8d, 0xfa, 0x66, 0x37, 0x86,
- 0x3b, 0xe0, 0x64, 0x7b, 0xd6, 0x36, 0x32, 0x6b, 0x35, 0x5c, 0xdd, 0x03, 0x62, 0x39, 0xf8, 0x73, 0xe3, 0xd9,
- 0x87, 0x90, 0x2b, 0xe4, 0x0d, 0xca, 0xc1, 0x2d, 0x20, 0xaf, 0x38, 0x11, 0xe7, 0x05, 0x10, 0xb5, 0x43, 0x9b,
- 0x43, 0xd5, 0xc7, 0x15, 0x16, 0xa9, 0x58, 0x4a, 0xaa, 0xd1, 0xb6, 0xdd, 0xe0, 0x50, 0x52, 0xdb, 0xee, 0x38,
- 0x7c, 0xa0, 0x23, 0x61, 0xbb, 0x33, 0x2b, 0x1a, 0x91, 0xa3, 0x86, 0x5e, 0xb6, 0xae, 0xf3, 0xbc, 0xf2, 0x09,
- 0x61, 0xd9, 0x32, 0x8d, 0x1c, 0x06, 0xa2, 0x7f, 0xdd, 0x6b, 0x80, 0x0f, 0x29, 0x71, 0x84, 0x9d, 0x14, 0xe6,
- 0x7a, 0xae, 0x34, 0x90, 0x93, 0x98, 0x97, 0x20, 0xd1, 0xaa, 0xcf, 0xad, 0x6d, 0x78, 0x93, 0x82, 0x65, 0x6d,
- 0x47, 0x77, 0x00, 0x2e, 0x23, 0x49, 0xd1, 0xe1, 0xc2, 0x0c, 0x32, 0xeb, 0x07, 0x35, 0xa6, 0xe9, 0x15, 0xab,
- 0x10, 0xa8, 0x51, 0xc7, 0xc2, 0x50, 0x2d, 0xd5, 0x58, 0x0b, 0x2f, 0xad, 0x02, 0x20, 0x96, 0xb4, 0xb4, 0xfb,
- 0x9c, 0x09, 0xa7, 0x1e, 0xfe, 0x87, 0xa0, 0xfe, 0xe5, 0x64, 0x40, 0xff, 0x5a, 0x3c, 0xed, 0xe0, 0x1c, 0xe3,
- 0xfc, 0xb1, 0x99, 0x66, 0x4f, 0xe3, 0xae, 0x60, 0xef, 0xaf, 0xcc, 0x35, 0x5a, 0x06, 0xe9, 0x7a, 0x0d, 0x94,
- 0x62, 0xe6, 0x37, 0xb1, 0x5b, 0xf7, 0x35, 0x24, 0x96, 0x4f, 0x47, 0xb7, 0x9a, 0xfa, 0x0d, 0x91, 0x30, 0xa9,
- 0x38, 0x65, 0xa6, 0xd9, 0x13, 0x69, 0x2b, 0x2b, 0x51, 0x1a, 0x8e, 0xb5, 0xb4, 0x59, 0xde, 0x24, 0xa9, 0xbb,
- 0xe7, 0xc6, 0x37, 0x48, 0x52, 0x41, 0xe1, 0x0a, 0x01, 0x2b, 0x8a, 0x72, 0xee, 0xc9, 0xc1, 0x49, 0xed, 0xa7,
- 0x2a, 0x14, 0xd3, 0x91, 0x44, 0xef, 0x42, 0x14, 0x7f, 0xeb, 0xf6, 0x5c, 0x63, 0x9a, 0x45, 0x03, 0x2f, 0x88,
- 0x90, 0xcb, 0x95, 0x55, 0x61, 0x33, 0x36, 0x34, 0x97, 0x80, 0x1e, 0xb2, 0x0b, 0x46, 0x37, 0xa9, 0xb5, 0xb2,
- 0xb0, 0xee, 0xda, 0x70, 0x95, 0x26, 0x6e, 0x63, 0x1c, 0x24, 0x69, 0xe7, 0xc3, 0xe1, 0xe0, 0xc1, 0x36, 0x03,
- 0x24, 0x48, 0x99, 0xb4, 0x12, 0x39, 0x85, 0xc9, 0x99, 0xa2, 0x6a, 0x99, 0x22, 0x69, 0xb2, 0xe1, 0x85, 0x6f,
- 0xd9, 0x26, 0x27, 0x09, 0xa0, 0xdc, 0x50, 0x00, 0xba, 0x5b, 0xc0, 0xa8, 0x5c, 0xb4, 0xf9, 0x0e, 0x7f, 0xe4,
- 0x9e, 0xf3, 0xf8, 0xc7, 0x58, 0x9e, 0xad, 0x73, 0x44, 0x16, 0x03, 0x21, 0x57, 0xbb, 0x38, 0xde, 0x63, 0xb1,
- 0xa7, 0x9f, 0xd4, 0x64, 0x04, 0xce, 0x7e, 0xfe, 0x07, 0xcd, 0xac, 0x63, 0xba, 0x57, 0x7a, 0x07, 0x86, 0x5f,
- 0x15, 0x5d, 0x84, 0x28, 0x66, 0xc1, 0x5b, 0x83, 0x2e, 0x77, 0xa8, 0x61, 0x35, 0x2b, 0x2d, 0x50, 0xf2, 0x41,
- 0xa4, 0x94, 0x7f, 0x19, 0xdf, 0xc4, 0xe6, 0x97, 0xc7, 0x4c, 0xd3, 0xd1, 0x6d, 0x4b, 0xab, 0x49, 0xee, 0x6e,
- 0x1f, 0xdf, 0x3f, 0xa8, 0x4b, 0x38, 0xdb, 0xb6, 0xca, 0x5f, 0x75, 0xd5, 0xac, 0x2c, 0x89, 0x2c, 0xf2, 0xa4,
- 0x3c, 0x88, 0x7b, 0x0e, 0x5f, 0xa6, 0x47, 0xbe, 0xca, 0x5a, 0x13, 0x20, 0x5a, 0x67, 0x8f, 0xcd, 0xbd, 0xaf,
- 0x8d, 0x2b, 0x32, 0xb5, 0x43, 0xa4, 0x5c, 0xfe, 0xe8, 0xe8, 0xd1, 0x29, 0x04, 0xb9, 0xbe, 0x73, 0x2e, 0x77,
- 0xa0, 0x1c, 0xac, 0xb2, 0x73, 0x78, 0x90, 0x0d, 0xd6, 0x28, 0x46, 0xe8, 0x74, 0xf8, 0xdd, 0x51, 0x59, 0x25,
- 0xd7, 0x5f, 0x58, 0xe2, 0x0c, 0x28, 0xcc, 0x9a, 0x2b, 0x90, 0xad, 0x0c, 0x43, 0xa1, 0x88, 0x46, 0xe5, 0xf6,
- 0xb6, 0xac, 0xbb, 0x97, 0x52, 0xb1, 0x09, 0x7b, 0x5b, 0x4d, 0x7a, 0xe4, 0xc2, 0xf6, 0x4d, 0xd6, 0x19, 0xb3,
- 0x64, 0xe6, 0x7e, 0xf2, 0xb6, 0x9b, 0xda, 0x60, 0x64, 0x91, 0x7a, 0xb3, 0x0a, 0x32, 0xff, 0x75, 0x62, 0xe7,
- 0x03, 0xfa, 0x2f, 0x34, 0xc8, 0xdc, 0x24, 0x40, 0xe0, 0x93, 0x19, 0x7b, 0x31, 0x23, 0x23, 0x16, 0xcd, 0x3b,
- 0xf2, 0x3d, 0x7e, 0x00, 0xb3, 0xad, 0x5e, 0x19, 0x16, 0x2c, 0xe4, 0xef, 0xc8, 0x8e, 0x6c, 0x83, 0x40, 0x69,
- 0xbf, 0x80, 0x33, 0xdf, 0xbf, 0xaf, 0x48, 0xe5, 0x1f, 0xfd, 0x7c, 0xbf, 0x4c, 0xed, 0xf8, 0x4b, 0xe0, 0x11,
- 0xeb, 0x0e, 0xdc, 0xd4, 0xd6, 0x09, 0x85, 0x59, 0x28, 0x21, 0xe5, 0x8f, 0xda, 0x5f, 0x4a, 0xaa, 0x44, 0x62,
- 0x7e, 0x8c, 0xb4, 0xa6, 0x80, 0xf5, 0xca, 0x9d, 0xe6, 0x59, 0xc6, 0xd8, 0x44, 0x09, 0x6a, 0x24, 0x03, 0x4a,
- 0xee, 0x32, 0x9d, 0xf8, 0x1b, 0x49, 0xb7, 0x90, 0x70, 0x91, 0xb2, 0x0f, 0x8e, 0xe4, 0x2b, 0xc0, 0xbd, 0x2f,
- 0x71, 0x11, 0x4c, 0xd3, 0xb8, 0x39, 0xf1, 0x3a, 0x10, 0xb6, 0x36, 0x89, 0x84, 0x5b, 0xdd, 0x5f, 0xd1, 0xe0,
- 0xbd, 0x4a, 0x02, 0x2a, 0x5c, 0x67, 0xd7, 0xc1, 0x07, 0x4d, 0xe2, 0xc1, 0xab, 0xa9, 0xc3, 0x69, 0x85, 0x8d,
- 0xff, 0x63, 0x7d, 0x36, 0xb6, 0x9f, 0xe2, 0x41, 0x49, 0x36, 0x70, 0xa3, 0x03, 0x95, 0x93, 0x90, 0x77, 0x33,
- 0x0a, 0xed, 0xa8, 0x8b, 0x7e, 0x32, 0x2a, 0x95, 0x2e, 0x11, 0x25, 0xc9, 0x40, 0x9c, 0x6e, 0x61, 0x8f, 0x6f,
- 0x52, 0x2b, 0x7f, 0xc4, 0x07, 0xde, 0x34, 0xb8, 0x43, 0x1c, 0xc5, 0x91, 0xc2, 0xc6, 0xba, 0x47, 0x27, 0x2e,
- 0x3f, 0xda, 0x48, 0xac, 0xca, 0x94, 0x56, 0x0e, 0x88, 0xb1, 0x9c, 0x98, 0xd6, 0xd2, 0x48, 0xbb, 0xa8, 0xdb,
- 0x03, 0xc1, 0x0a, 0xba, 0x3d, 0x77, 0xb3, 0xa4, 0xf0, 0x18, 0x4e, 0x9d, 0x69, 0xaa, 0x85, 0x06, 0xa4, 0xd6,
- 0x58, 0x94, 0xab, 0xf9, 0x11, 0x78, 0x78, 0x70, 0xf8, 0x07, 0xce, 0x8b, 0xc0, 0xd0, 0xac, 0x70, 0xae, 0x52,
- 0xd4, 0xc2, 0x32, 0xd2, 0xac, 0xc1, 0xcd, 0xc4, 0xda, 0xa2, 0x8e, 0x39, 0xc6, 0x68, 0x47, 0x6a, 0xb2, 0xcd,
- 0x2e, 0x63, 0x20, 0xa9, 0x32, 0x66, 0xbd, 0xe6, 0x6c, 0xd1, 0xe0, 0x91, 0xae, 0x3f, 0x89, 0x51, 0xcb, 0x86,
- 0xa4, 0x01, 0x37, 0x2c, 0xba, 0x96, 0xfc, 0x6f, 0x44, 0x3b, 0x58, 0xdd, 0x99, 0x24
+ 0x9e, 0x9b, 0x1e, 0x97, 0x9e, 0x6d, 0x82, 0xbf, 0x64, 0xfc, 0x7d, 0x2c, 0x5f, 0xdb, 0xd5, 0x00, 0xa0, 0x1e,
+ 0x86, 0x1c, 0x79, 0x3e, 0xf5, 0xb3, 0xce, 0x0b, 0xcc, 0x53, 0xce, 0x26, 0x35, 0x94, 0xbb, 0xdc, 0xf3, 0xa9,
+ 0x1c, 0x43, 0x70, 0xc9, 0xd9, 0xc3, 0xe3, 0x6d, 0xdd, 0x7c, 0x60, 0xb1, 0x64, 0x08, 0x41, 0x4f, 0x72, 0x70,
+ 0x29, 0x2b, 0xc2, 0x8e, 0x85, 0x7d, 0xae, 0x17, 0x55, 0x4d, 0x22, 0x56, 0x2b, 0x0c, 0xdf, 0x18, 0xf7, 0xfa,
+ 0x4c, 0x54, 0x6a, 0x03, 0xf8, 0x2c, 0xd4, 0x9e, 0x88, 0xd8, 0x31, 0xb9, 0xa0, 0x09, 0xdb, 0x5a, 0xae, 0xbd,
+ 0xc3, 0x04, 0x59, 0x49, 0x16, 0x1c, 0xaa, 0xda, 0xcd, 0x2a, 0xb3, 0x6f, 0xd2, 0x92, 0xb5, 0x86, 0x05, 0x57,
+ 0xfb, 0xc9, 0x8a, 0x72, 0x82, 0x05, 0xd4, 0xda, 0x58, 0xf0, 0x2e, 0xac, 0xbc, 0xd6, 0x81, 0xfc, 0x67, 0xfb,
+ 0x49, 0xcc, 0x0a, 0xed, 0xbf, 0xe9, 0x28, 0xa7, 0x65, 0xab, 0x73, 0x19, 0xbe, 0x22, 0xe7, 0xac, 0xb9, 0x48,
+ 0xad, 0x0b, 0x3d, 0xb2, 0xf9, 0x5a, 0x9c, 0x67, 0x4e, 0x08, 0x7d, 0x9c, 0x97, 0xab, 0x52, 0xee, 0x13, 0x16,
+ 0xe2, 0x7c, 0x0c, 0xa6, 0xee, 0xea, 0xbc, 0xe4, 0xe3, 0xcb, 0x82, 0x96, 0xa6, 0x74, 0xaa, 0xb3, 0xe2, 0xca,
+ 0xa3, 0xf7, 0x0a, 0xac, 0x13, 0xbd, 0xd6, 0x9f, 0x6c, 0xf3, 0xbc, 0x9a, 0x73, 0xa5, 0xaa, 0x84, 0x16, 0x03,
+ 0x41, 0x64, 0xd0, 0xc3, 0x4b, 0x01, 0x1e, 0x9b, 0x95, 0x0d, 0x95, 0xa7, 0x53, 0x86, 0xbb, 0x77, 0xb3, 0x2e,
+ 0xaa, 0xa6, 0x93, 0x99, 0x4f, 0x75, 0xb5, 0x8d, 0xc5, 0x5d, 0xa6, 0x3b, 0x71, 0x20, 0xe4, 0x2d, 0x0c, 0xfc,
+ 0x57, 0xfc, 0x33, 0x76, 0x0b, 0x5d, 0xdf, 0x61, 0x80, 0x50, 0x22, 0x2e, 0x30, 0xd6, 0x65, 0xd1, 0x8a, 0xe4,
+ 0x54, 0xf2, 0xc8, 0xa1, 0xc0, 0x2d, 0xed, 0x5a, 0xeb, 0x30, 0x9d, 0x8d, 0xf9, 0xde, 0xd2, 0x47, 0x71, 0x73,
+ 0xd4, 0x77, 0x76, 0xad, 0xc4, 0x5c, 0x32, 0x49, 0xbc, 0xcc, 0xa7, 0xcb, 0xde, 0x4f, 0x2d, 0x0c, 0x4d, 0xaa,
+ 0x9b, 0x6c, 0xf1, 0x49, 0xdd, 0x3a, 0xd3, 0x89, 0xaf, 0x6f, 0x14, 0x33, 0xc0, 0x40, 0xce, 0xb7, 0x1d, 0x6c,
+ 0xe1, 0x28, 0x78, 0x12, 0x1b, 0xc0, 0xd9, 0x1e, 0xa1, 0x14, 0x4e, 0xae, 0x1d, 0x8a, 0x79, 0x1f, 0xf4, 0x3e,
+ 0x21, 0x56, 0x5e, 0xb1, 0x90, 0x63, 0x28, 0xc1, 0xcf, 0xb4, 0xf9, 0xf4, 0x50, 0x51, 0xd2, 0xeb, 0xbe, 0x29,
+ 0xe7, 0xeb, 0x15, 0x06, 0xb7, 0x99, 0x01, 0xe5, 0x25, 0xd4, 0x3f, 0x8a, 0x5a, 0x17, 0xc1, 0x4a, 0x87, 0x18,
+ 0x16, 0x3e, 0xaf, 0xe4, 0xc7, 0x75, 0x4b, 0x95, 0x68, 0x9f, 0x50, 0x28, 0xd1, 0x8a, 0x87, 0x5d, 0x0a, 0x7a,
+ 0x0d, 0xfa, 0x95, 0xa7, 0xce, 0x05, 0x85, 0xe6, 0xf3, 0x34, 0x82, 0xac, 0x73, 0xf8, 0xc4, 0x7c, 0x6b, 0x9a,
+ 0x52, 0xcb, 0x99, 0x41, 0xfc, 0x40, 0xac, 0xf8, 0x08, 0x4c, 0x16, 0x4c, 0x4c, 0x8d, 0x15, 0x0b, 0x04, 0xbe,
+ 0x8e, 0x09, 0xa0, 0xe9, 0x30, 0x0e, 0xd5, 0x61, 0xf7, 0x95, 0xcd, 0x88, 0x35, 0x0a, 0x7c, 0x1b, 0x67, 0x8c,
+ 0xe1, 0xb8, 0x2c, 0x91, 0xa1, 0x12, 0x03, 0x3c, 0xef, 0xd2, 0x30, 0x38, 0x75, 0x2a, 0x7c, 0xb2, 0xab, 0xaa,
+ 0x68, 0x7e, 0xff, 0xd4, 0xdb, 0xb9, 0x17, 0xca, 0x6a, 0x96, 0x19, 0xdb, 0x15, 0xd1, 0x46, 0xe2, 0xf8, 0xe6,
+ 0x3f, 0x9a, 0xdf, 0x29, 0xa9, 0x96, 0xbd, 0xb1, 0x9c, 0xa3, 0x2e, 0x42, 0x62, 0x64, 0xd4, 0xc2, 0x84, 0xec,
+ 0x82, 0x0e, 0x3b, 0x2f, 0x03, 0x3e, 0x2f, 0x18, 0x79, 0x17, 0x5a, 0xff, 0x08, 0x74, 0x39, 0xdc, 0x0e, 0x1f,
+ 0x26, 0x20, 0x6b, 0xde, 0x12, 0x62, 0x1a, 0x22, 0xde, 0xab, 0xa4, 0x0c, 0x4f, 0x8c, 0xf8, 0xec, 0x61, 0xae,
+ 0xce, 0x24, 0x25, 0xc4, 0x1f, 0x81, 0x8a, 0xff, 0x8a, 0x12, 0x7a, 0x43, 0x1c, 0x72, 0xa0, 0xf6, 0x37, 0x45,
+ 0x84, 0x5f, 0x27, 0x00, 0xb4, 0xb9, 0xb6, 0xc8, 0x09, 0x14, 0xe9, 0x17, 0x3b, 0xef, 0x85, 0xc6, 0x0e, 0xa1,
+ 0x08, 0x0f, 0x22, 0xbf, 0x17, 0xf5, 0x31, 0x84, 0xa9, 0x45, 0x4e, 0x33, 0x7f, 0x67, 0xfe, 0x79, 0x51, 0x2e,
+ 0x93, 0x4a, 0x15, 0xc0, 0x23, 0x54, 0x42, 0x48, 0xf6, 0xec, 0x5b, 0x0f, 0xc9, 0x7c, 0x35, 0xcd, 0xd4, 0x43,
+ 0x21, 0xe9, 0x96, 0x9e, 0xd9, 0xeb, 0x42, 0x74, 0x7e, 0xe3, 0xcf, 0x92, 0x78, 0x01, 0x04, 0x5c, 0xe9, 0x99,
+ 0x79, 0x66, 0xff, 0x69, 0xbd, 0x30, 0x36, 0x9d, 0x9b, 0x84, 0x90, 0x36, 0x72, 0x23, 0xf9, 0xb7, 0x81, 0x9d,
+ 0xd5, 0xbb, 0xd5, 0xd7, 0x58, 0x47, 0x38, 0xcc, 0x0a, 0xf3, 0xcb, 0x05, 0x32, 0x64, 0xdc, 0x48, 0xf2, 0x09,
+ 0xbd, 0xa5, 0x23, 0x01, 0x8f, 0x37, 0xb4, 0xd4, 0xf5, 0x09, 0xfb, 0xe5, 0x97, 0xca, 0x31, 0x74, 0xd3, 0x89,
+ 0x99, 0xb3, 0xca, 0xdf, 0x90, 0x9a, 0xa4, 0xb5, 0x0a, 0xea, 0x7d, 0x75, 0xa1, 0x0f, 0x44, 0x42, 0xd2, 0x8d,
+ 0x91, 0xbe, 0x7f, 0x27, 0xc4, 0x27, 0xb4, 0x83, 0xba, 0xad, 0x15, 0x52, 0x59, 0xa1, 0x6e, 0x5f, 0xa7, 0xe5,
+ 0x88, 0x4b, 0x4d, 0x67, 0x06, 0x3e, 0x08, 0xcb, 0x57, 0x0e, 0x96, 0x67, 0xf9, 0x4b, 0xc9, 0x0e, 0xf9, 0x6b,
+ 0xc2, 0x01, 0xc3, 0x8f, 0x16, 0xe1, 0x7e, 0x2e, 0x2d, 0x8f, 0x9d, 0x1e, 0x88, 0x3f, 0x05, 0xe1, 0x44, 0x91,
+ 0x64, 0xb2, 0x76, 0xf5, 0x35, 0xe9, 0xb1, 0x02, 0x2d, 0x96, 0xfc, 0x86, 0x29, 0x65, 0xd0, 0x6e, 0x27, 0xba,
+ 0x3d, 0x2d, 0xa6, 0x42, 0xee, 0x9f, 0xd7, 0xc2, 0x42, 0xb3, 0x62, 0xa3, 0x30, 0x24, 0x24, 0x71, 0xdd, 0xe7,
+ 0x6c, 0x6e, 0x7a, 0xfb, 0x20, 0x0e, 0x83, 0x19, 0x9a, 0x1b, 0x73, 0x72, 0x3b, 0xf5, 0x48, 0xba, 0xf4, 0xce,
+ 0x45, 0xae, 0x60, 0x12, 0xdd, 0xbe, 0x27, 0xb9, 0xd3, 0xa8, 0xf3, 0x98, 0xc6, 0x6e, 0x1c, 0x34, 0x59, 0x6e,
+ 0xed, 0xe1, 0xb7, 0xa8, 0xc5, 0xd1, 0x21, 0x23, 0x60, 0xcf, 0x86, 0xd0, 0x03, 0x58, 0xe2, 0xc5, 0x53, 0x58,
+ 0x42, 0x05, 0x8a, 0x76, 0x7b, 0x1a, 0x14, 0xa0, 0x71, 0xee, 0xc6, 0xe9, 0x38, 0xf1, 0x6e, 0xe0, 0x1c, 0xc6,
+ 0x82, 0x25, 0x0b, 0x4a, 0x47, 0xb8, 0x1a, 0xe5, 0x21, 0x27, 0x12, 0x52, 0x1d, 0xef, 0xc3, 0xca, 0x4e, 0x03,
+ 0xbe, 0xaf, 0x0b, 0x5c, 0x8e, 0x6c, 0xb4, 0x30, 0x61, 0xe9, 0x45, 0xc4, 0xa5, 0xc1, 0x87, 0x49, 0xb5, 0x01,
+ 0x6e, 0x35, 0x20, 0xc7, 0x58, 0xed, 0xed, 0x6c, 0x56, 0x6c, 0x81, 0xd9, 0x8b, 0x58, 0x8d, 0xe0, 0x24, 0xba,
+ 0x27, 0x69, 0xa8, 0xcb, 0x8c, 0xf7, 0xa1, 0x30, 0x82, 0xd4, 0xa5, 0xe0, 0x96, 0x33, 0x2f, 0x7e, 0xdf, 0x9f,
+ 0x28, 0x3a, 0xa8, 0xab, 0xcf, 0x50, 0x70, 0xd9, 0xaf, 0xf1, 0xfe, 0x29, 0xb3, 0x84, 0x55, 0x36, 0x02, 0xc3,
+ 0xf9, 0x11, 0xd2, 0x09, 0x3f, 0xbd, 0x4e, 0x12, 0x92, 0x56, 0x1c, 0xad, 0x72, 0x59, 0xae, 0x88, 0x40, 0x6f,
+ 0xbd, 0x50, 0x69, 0x99, 0xe9, 0x40, 0x21, 0x15, 0xdf, 0x19, 0x6d, 0xcf, 0x82, 0x83, 0x67, 0xd5, 0x30, 0x79,
+ 0x32, 0x94, 0xd4, 0xf0, 0x43, 0xf1, 0x66, 0x07, 0xe2, 0xab, 0x44, 0x94, 0x0b, 0x51, 0x91, 0x1d, 0xab, 0x3b,
+ 0xe4, 0x39, 0x81, 0x35, 0x57, 0x10, 0xd8, 0xaf, 0x15, 0x98, 0x0e, 0xf0, 0x9c, 0xdc, 0x28, 0x03, 0x7e, 0xa2,
+ 0x36, 0x8b, 0xbc, 0x29, 0x5a, 0x92, 0xef, 0x46, 0xc2, 0x6a, 0x04, 0x10, 0xc7, 0x4e, 0xb9, 0x1f, 0x53, 0x56,
+ 0x18, 0xfb, 0xba, 0xe4, 0x59, 0x5c, 0x94, 0xaa, 0x37, 0x33, 0x85, 0x20, 0xca, 0x6d, 0x72, 0x84, 0x75, 0xe2,
+ 0x68, 0xb4, 0xd2, 0x27, 0x38, 0x65, 0x7f, 0x6c, 0x22, 0xe3, 0x0a, 0xa3, 0x2d, 0x4c, 0x84, 0xa7, 0x88, 0xca,
+ 0x65, 0xcc, 0x79, 0xe8, 0x92, 0x4a, 0x7a, 0xd4, 0xfb, 0xa8, 0xeb, 0x33, 0xdf, 0x55, 0xcf, 0x6a, 0x92, 0x38,
+ 0xd0, 0xd6, 0xcc, 0x84, 0xe4, 0x3d, 0xdd, 0x4c, 0x67, 0x74, 0x48, 0x30, 0xca, 0x37, 0x48, 0x2a, 0x67, 0xf3,
+ 0xe0, 0x64, 0xf3, 0x7f, 0xb4, 0x80, 0xb8, 0xe1, 0xc3, 0xc8, 0xba, 0x0d, 0x6b, 0x58, 0x13, 0x17, 0x95, 0x15,
+ 0x85, 0x03, 0x14, 0x1c, 0x68, 0xe9, 0x69, 0xa9, 0xca, 0x32, 0xd4, 0x79, 0x9b, 0x3a, 0x46, 0x11, 0x31, 0xb2,
+ 0x7a, 0xa6, 0xaf, 0x6f, 0x65, 0xec, 0x71, 0xd3, 0x10, 0x9e, 0x4c, 0xb2, 0x14, 0x48, 0x7f, 0xcf, 0xd0, 0x37,
+ 0xa6, 0xa4, 0x00, 0x78, 0x2f, 0x04, 0xf7, 0xc8, 0x2d, 0x76, 0x9d, 0x44, 0x57, 0xa3, 0xdb, 0x52, 0xb9, 0x24,
+ 0x4a, 0x37, 0x3e, 0x82, 0xee, 0xf4, 0x62, 0x77, 0xb2, 0x55, 0x67, 0xfc, 0xab, 0xd8, 0x38, 0x53, 0x93, 0xf4,
+ 0xd1, 0xb4, 0x41, 0x54, 0x27, 0x3f, 0xd4, 0x98, 0xde, 0xd3, 0x7c, 0x2b, 0x95, 0xfc, 0xb8, 0x9b, 0x0a, 0x1b,
+ 0x21, 0x7d, 0x63, 0x77, 0x0a, 0x8a, 0xcc, 0xfa, 0xcd, 0x05, 0x18, 0x2f, 0x24, 0xd1, 0x53, 0xfd, 0xf6, 0x56,
+ 0x93, 0x6c, 0x03, 0x47, 0x7b, 0x4a, 0x7f, 0x0f, 0x18, 0x5c, 0xff, 0x45, 0x9e, 0x8a, 0x3d, 0xeb, 0x38, 0x54,
+ 0x25, 0xab, 0x20, 0xf6, 0xd4, 0x67, 0x0d, 0x16, 0xeb, 0x15, 0x33, 0x00, 0x1c, 0x35, 0x52, 0x61, 0xd9, 0x69,
+ 0xa5, 0x53, 0xcb, 0x78, 0x9e, 0xe3, 0x2f, 0xfa, 0xa5, 0xb5, 0x42, 0xed, 0xf0, 0xaf, 0x83, 0xe4, 0xbf, 0x5a,
+ 0x17, 0xc7, 0x63, 0xea, 0x3e, 0xa8, 0x30, 0x7a, 0x4c, 0x30, 0x51, 0xfa, 0xe7, 0x5e, 0x74, 0x10, 0x1b, 0xcc,
+ 0x13, 0x18, 0xa5, 0xaa, 0x1d, 0xca, 0xe5, 0x2d, 0x97, 0x57, 0xf2, 0xa7, 0xbd, 0x2a, 0xa7, 0xb3, 0x55, 0x9d,
+ 0xdc, 0xad, 0xeb, 0x92, 0x6c, 0x37, 0x73, 0x27, 0x0e, 0x42, 0xe0, 0x58, 0x50, 0x80, 0x93, 0x45, 0xd7, 0x52,
+ 0x6f, 0x62, 0x01, 0xb3, 0xa4, 0xe1, 0x7e, 0xba, 0xea, 0x66, 0x71, 0x95, 0xa0, 0x43, 0xfd, 0x66, 0x26, 0x0e,
+ 0x6f, 0x31, 0x14, 0xf3, 0x13, 0xb1, 0x97, 0x03, 0x0b, 0xdd, 0xd5, 0x4a, 0x03, 0x3a, 0x54, 0x35, 0xb9, 0xfb,
+ 0x66, 0x98, 0xae, 0x5b, 0xc4, 0xd1, 0x58, 0xc2, 0xc5, 0x5d, 0x2c, 0xd2, 0x1e, 0xd9, 0x93, 0x4e, 0xb2, 0x48,
+ 0x8d, 0xac, 0xd5, 0x83, 0x8d, 0x13, 0x62, 0x4d, 0x18, 0xd2, 0x31, 0xf4, 0x9f, 0x6a, 0x64, 0x31, 0xcb, 0xa5,
+ 0x78, 0xe4, 0x22, 0x72, 0xf8, 0x1f, 0x1c, 0x85, 0x44, 0x4c, 0x1e, 0x4d, 0x32, 0x60, 0xf3, 0x2f, 0xa1, 0x4f,
+ 0x8c, 0x7f, 0x95, 0x27, 0x60, 0xf9, 0x0e, 0x9e, 0x16, 0xfb, 0xc4, 0x10, 0xcc, 0x68, 0x6c, 0x49, 0x53, 0x77,
+ 0xff, 0x9f, 0x82, 0xe3, 0xad, 0xe7, 0x99, 0xfd, 0xe3, 0xb2, 0x81, 0x17, 0x63, 0xed, 0xe4, 0xa9, 0x94, 0x14,
+ 0x1b, 0xdb, 0x80, 0xa1, 0x4f, 0x5d, 0xe9, 0x65, 0x29, 0x22, 0xce, 0x0e, 0x17, 0x7f, 0xdd, 0x91, 0x57, 0xc7,
+ 0x99, 0xa0, 0xe6, 0x6e, 0x88, 0x70, 0xf2, 0x65, 0x65, 0xe5, 0xb6, 0xde, 0xe6, 0xea, 0x9f, 0xa6, 0x7b, 0x8e,
+ 0xdf, 0x40, 0x49, 0xc4, 0xce, 0xec, 0x89, 0x24, 0xa1, 0x52, 0x40, 0x14, 0x9b, 0x97, 0xc4, 0xc5, 0x76, 0x5a,
+ 0x55, 0xb3, 0x63, 0xd8, 0x59, 0x54, 0x8f, 0x1e, 0xcd, 0x74, 0x01, 0xb8, 0xc5, 0xff, 0xc3, 0xde, 0x90, 0x74,
+ 0xec, 0xb6, 0xc0, 0x46, 0x9a, 0xe0, 0xee, 0x2e, 0x1c, 0xce, 0x4f, 0xb1, 0xc3, 0x2c, 0x90, 0x12, 0xad, 0x90,
+ 0x86, 0xb4, 0xa8, 0x13, 0xaf, 0x6e, 0xca, 0x41, 0xa7, 0x39, 0x6f, 0x7a, 0x10, 0x1b, 0x81, 0x5a, 0x5c, 0x0c,
+ 0xaf, 0x3f, 0xd5, 0xd7, 0x22, 0x12, 0x8e, 0x72, 0x79, 0x29, 0xea, 0xee, 0xed, 0x5b, 0x82, 0x90, 0x62, 0x39,
+ 0x0e, 0x99, 0x61, 0xc0, 0x80, 0x82, 0xb1, 0xdb, 0xb3, 0xe8, 0x2a, 0x0b, 0xb6, 0x31, 0x06, 0xf9, 0x00, 0xbe,
+ 0x1c, 0xce, 0x91, 0x8f, 0x69, 0x08, 0x79, 0x95, 0x90, 0x9f, 0x1e, 0x4b, 0xbb, 0x03, 0x5f, 0x55, 0x8c, 0x6b,
+ 0x35, 0x67, 0x95, 0xe3, 0xf3, 0xad, 0x41, 0x27, 0xfa, 0x09, 0xc5, 0x6f, 0xe5, 0x9a, 0x58, 0x00, 0x98, 0x05,
+ 0xd2, 0xd6, 0x5e, 0x51, 0xf9, 0x28, 0x69, 0xa8, 0x7b, 0x89, 0x73, 0x7e, 0xd9, 0xf8, 0x42, 0xad, 0x4d, 0x68,
+ 0xf2, 0xf9, 0xde, 0xa4, 0x2f, 0x95, 0x93, 0x2d, 0x7d, 0x6c, 0xf9, 0x0d, 0xbf, 0x27, 0x89, 0x80, 0xf9, 0xf7,
+ 0xa0, 0xf2, 0x3f, 0x36, 0xa6, 0x71, 0xd3, 0x05, 0x6f, 0xad, 0xc5, 0xed, 0x9d, 0x30, 0x8e, 0xc2, 0xeb, 0xb1,
+ 0x02, 0x94, 0xe0, 0xae, 0xd3, 0xc8, 0x3e, 0x10, 0xff, 0x06, 0xcb, 0xa7, 0x5f, 0x90, 0xcf, 0x74, 0x6e, 0xcd,
+ 0x2b, 0xef, 0x16, 0x9a, 0xee, 0xbd, 0xee, 0xf6, 0x12, 0xef, 0x0c, 0x6e, 0x7e, 0xe8, 0x62, 0xb9, 0x0f, 0xed,
+ 0x14, 0x0c, 0xdf, 0xee, 0xf4, 0x19, 0xab, 0x60, 0xe8, 0x93, 0x30, 0x9f, 0x86, 0x49, 0x64, 0x34, 0xbd, 0x21,
+ 0x57, 0x09, 0x2f, 0xd6, 0x1a, 0xfc, 0x7d, 0x06, 0xf7, 0x05, 0xa3, 0x4f, 0xff, 0xbc, 0x2d, 0xb2, 0x77, 0x66,
+ 0xb8, 0x98, 0x14, 0xe4, 0xea, 0xa0, 0x42, 0x12, 0x23, 0xc6, 0x46, 0x80, 0x32, 0x0b, 0xf6, 0xc7, 0x53, 0xe1,
+ 0xd8, 0xe0, 0xdb, 0xc6, 0x4b, 0x14, 0x7e, 0x6a, 0xa4, 0x7e, 0x45, 0x08, 0x3b, 0x5a, 0x59, 0xa1, 0x9b, 0x71,
+ 0x72, 0xfd, 0xec, 0xff, 0x6d, 0x95, 0x69, 0xc9, 0xee, 0xbc, 0xae, 0x6d, 0x4f, 0xcd, 0x91, 0x67, 0x90, 0x69,
+ 0xed, 0x20, 0x53, 0x39, 0x2a, 0x6a, 0x2f, 0x1d, 0x4e, 0x76, 0x3e, 0x12, 0x61, 0x3c, 0xa8, 0x76, 0x6d, 0x8c,
+ 0x9a, 0x7f, 0xd3, 0x78, 0xaa, 0x3d, 0xdb, 0xde, 0x0a, 0xd0, 0xbf, 0xb0, 0x03, 0x0f, 0xc0, 0xa2, 0xbc, 0xa2,
+ 0x95, 0x88, 0xad, 0xe5, 0x1c, 0x03, 0x66, 0xca, 0xc8, 0x8f, 0x95, 0x75, 0xbd, 0x4d, 0xf0, 0xc9, 0xf4, 0x6a,
+ 0x63, 0x36, 0xc0, 0xa3, 0xa2, 0xfa, 0xc7, 0xb4, 0x2a, 0x1a, 0x64, 0x8d, 0x88, 0x70, 0xf6, 0x25, 0xbd, 0xae,
+ 0xaa, 0x87, 0x99, 0xde, 0xe4, 0x32, 0x00, 0x66, 0xd4, 0x19, 0xc2, 0x8f, 0xb7, 0x46, 0x4a, 0x26, 0x6e, 0x27,
+ 0x3a, 0x74, 0xe0, 0x35, 0xa2, 0x91, 0x16, 0x0e, 0xdc, 0xff, 0x73, 0x2e, 0x12, 0x3f, 0x54, 0x0e, 0x62, 0xea,
+ 0xa8, 0x10, 0xcf, 0xb4, 0x1b, 0x3c, 0x07, 0x4d, 0xd2, 0xff, 0x0e, 0x32, 0x44, 0x9e, 0xfb, 0x48, 0x97, 0x94,
+ 0x98, 0x70, 0xfa, 0x85, 0x5a, 0xed, 0x5a, 0x5c, 0xaf, 0x52, 0xc0, 0x72, 0x3a, 0x8e, 0x77, 0x93, 0x23, 0x59,
+ 0x9d, 0x40, 0x7f, 0xc2, 0xc7, 0x6a, 0x45, 0x98, 0x2b, 0xf9, 0xce, 0xc4, 0x6b, 0x48, 0xf3, 0x9f, 0x24, 0x45,
+ 0xcb, 0xc1, 0xb5, 0x79, 0xc9, 0xb4, 0x52, 0x11, 0x1f, 0x6b, 0xd9, 0xb7, 0x3f, 0xf3, 0x28, 0x71, 0x19, 0x15,
+ 0x51, 0xdc, 0x99, 0x60, 0x75, 0x1f, 0x22, 0x5c, 0x21, 0x85, 0x30, 0x36, 0xba, 0x06, 0x74, 0xdd, 0x96, 0x5e,
+ 0xa9, 0xc2, 0x45, 0x02, 0x9f, 0x8a, 0xd0, 0xb4, 0x54, 0x67, 0x5d, 0x6f, 0xf6, 0x38, 0x85, 0xf7, 0x71, 0xbc,
+ 0x92, 0x14, 0x97, 0xaa, 0x2a, 0x8c, 0x5e, 0xa2, 0xf9, 0x7d, 0x79, 0x15, 0x1c, 0x9b, 0x89, 0xe7, 0x1f, 0x16,
+ 0xaa, 0x1b, 0x9b, 0xfa, 0x76, 0xd8, 0x8f, 0x52, 0x55, 0x5e, 0x9a, 0xf2, 0xd5, 0x0a, 0xe0, 0x27, 0xce, 0x74,
+ 0x74, 0xac, 0x6b, 0x14, 0x65, 0x68, 0xdb, 0xa8, 0xce, 0x70, 0x2b, 0x10, 0x60, 0x0c, 0xc0, 0x79, 0x4e, 0x98,
+ 0x4b, 0xd8, 0x1f, 0xa6, 0xdd, 0xf3, 0xa9, 0x23, 0x08, 0xa9, 0xbd, 0xde, 0x67, 0x2d, 0x77, 0x05, 0xcc, 0x22,
+ 0xaa, 0x4e, 0x52, 0xb4, 0x95, 0x93, 0x6f, 0xe3, 0xc6, 0xce, 0xdd, 0xcc, 0x4d, 0x88, 0x89, 0x93, 0x9b, 0xb1,
+ 0xe8, 0x70, 0x46, 0xde, 0x27, 0x6d, 0xa9, 0x74, 0x30, 0xaa, 0xd9, 0xc1, 0x23, 0x5d, 0x8c, 0x7a, 0x0f, 0xaa,
+ 0x52, 0x05, 0x60, 0x51, 0xe4, 0xab, 0xdd, 0xb1, 0xdd, 0x05, 0x23, 0xc2, 0xd8, 0xc1, 0xbf, 0x1c, 0xe6, 0xc0,
+ 0xa4, 0x09, 0x83, 0x3d, 0x69, 0xe6, 0x43, 0x18, 0xe7, 0xef, 0xfb, 0x25, 0x49, 0xbe, 0xe1, 0xf3, 0x90, 0x70,
+ 0x00, 0xb3, 0xf0, 0x14, 0x43, 0xed, 0xc0, 0x51, 0x87, 0x5a, 0x42, 0x96, 0x5e, 0x19, 0x27, 0xf3, 0x2a, 0xf8,
+ 0x8a, 0x20, 0x92, 0x51, 0x55, 0x10, 0x19, 0x91, 0xd8, 0x0e, 0x47, 0x07, 0x03, 0x9b, 0x73, 0xde, 0x1c, 0xa0,
+ 0xfb, 0x1b, 0x3d, 0x59, 0xc4, 0x38, 0x41, 0xfb, 0x73, 0xeb, 0x6a, 0x63, 0x4d, 0xba, 0x9d, 0xc0, 0x78, 0xec,
+ 0xf7, 0xaf, 0x85, 0x55, 0xff, 0x41, 0x75, 0x29, 0xad, 0x82, 0xf3, 0xc1, 0x1c, 0xb2, 0xf6, 0x47, 0xb7, 0x69,
+ 0x68, 0xc6, 0x93, 0xdf, 0x73, 0xbb, 0xcd, 0xa1, 0xcd, 0x9d, 0x3c, 0xce, 0xcb, 0xdd, 0x67, 0xce, 0x8d, 0x94,
+ 0xc2, 0x91, 0xb2, 0xa5, 0xcc, 0x8b, 0x15, 0xfc, 0xbd, 0x99, 0x66, 0x9b, 0x0f, 0x4c, 0xd4, 0x3a, 0xbe, 0x1f,
+ 0x49, 0x71, 0xb2, 0x5e, 0xda, 0xd5, 0x1e, 0x02, 0xc8, 0x54, 0x36, 0xdd, 0x1a, 0xc4, 0x02, 0xed, 0x13, 0x6d,
+ 0xf8, 0x33, 0xaa, 0xd8, 0xc1, 0xb3, 0x2a, 0xad, 0x2d, 0xc2, 0x8c, 0x84, 0x14, 0x34, 0x81, 0xa3, 0x31, 0xbe,
+ 0x24, 0xe3, 0x60, 0x80, 0x31, 0xf5, 0x6d, 0x93, 0x7c, 0xbe, 0x01, 0x4b, 0x9c, 0xc6, 0x41, 0xe1, 0x35, 0xff,
+ 0x7f, 0x69, 0x54, 0x00, 0x15, 0xfb, 0x43, 0x29, 0x0e, 0x76, 0x5a, 0x98, 0x8e, 0xaf, 0xb2, 0x64, 0x48, 0x3d,
+ 0x9d, 0x19, 0x9e, 0x2b, 0x9c, 0xc7, 0x69, 0x91, 0x0d, 0xe7, 0x40, 0xf0, 0x29, 0x9d, 0x1b, 0x79, 0x30, 0x92,
+ 0x91, 0x18, 0x0f, 0x79, 0x89, 0xb6, 0x8a, 0x95, 0x78, 0xce, 0xf0, 0x2e, 0xb4, 0x21, 0xa4, 0x17, 0x5b, 0x40,
+ 0x51, 0x21, 0xbc, 0x4b, 0x93, 0x2a, 0x89, 0x3b, 0x87, 0x34, 0x57, 0x6d, 0x3c, 0xf0, 0x07, 0xcc, 0xd4, 0xd4,
+ 0x81, 0xbf, 0xe2, 0xf6, 0xe4, 0x3d, 0xd7, 0xe8, 0x09, 0x97, 0x69, 0x4d, 0xa8, 0x8e, 0xf6, 0x6f, 0xff, 0x6c,
+ 0x54, 0x00, 0xa5, 0x38, 0xfa, 0xef, 0x88, 0xc8, 0xc3, 0xaa, 0xcc, 0x14, 0xe3, 0x3e, 0xd5, 0x01, 0x70, 0xe2,
+ 0x02, 0xec, 0x9d, 0x94, 0xb1, 0x31, 0xde, 0x60, 0xeb, 0x1d, 0xaf, 0xba, 0x78, 0xd7, 0x02, 0x76, 0x51, 0xa6,
+ 0x69, 0x2a, 0xec, 0x83, 0x81, 0xeb, 0x9f, 0x0e, 0xd2, 0x5c, 0x0c, 0xb2, 0xb3, 0xff, 0x2a, 0x13, 0x84, 0xa6,
+ 0x97, 0xbf, 0x34, 0xb1, 0x0a, 0x05, 0xdb, 0xa8, 0x8f, 0xd2, 0x65, 0x9b, 0x91, 0xe9, 0x3a, 0x49, 0x47, 0x39,
+ 0xbc, 0xf4, 0x62, 0xca, 0xe0, 0xdb, 0xfc, 0x42, 0xeb, 0x6a, 0x51, 0x73, 0xed, 0xfb, 0xdf, 0x52, 0xc1, 0x9d,
+ 0x32, 0xc3, 0x14, 0x36, 0x7c, 0x0e, 0x03, 0x8c, 0xe9, 0x0b, 0xb6, 0x01, 0xde, 0x7d, 0x29, 0xe7, 0x3d, 0xaf,
+ 0x74, 0xc7, 0xa9, 0x8b, 0xb2, 0x55, 0xb2, 0x00, 0xe1, 0xd1, 0x8d, 0xc4, 0xce, 0xeb, 0x8a, 0xb2, 0x4d, 0xb6,
+ 0x51, 0xdd, 0xc4, 0x41, 0xf5, 0x1c, 0x0a, 0x13, 0x5a, 0x28, 0x01, 0xc2, 0x54, 0x98, 0xb9, 0x00, 0x6b, 0xa7,
+ 0x35, 0x22, 0xcc, 0xfb, 0xcd, 0xcc, 0xc4, 0x37, 0xa3, 0xad, 0x92, 0x39, 0x77, 0xff, 0x4f, 0xb4, 0x73, 0x92,
+ 0xe8, 0x0c, 0xbe, 0x03, 0x28, 0x1d, 0x9f, 0x79, 0x41, 0xba, 0x43, 0xea, 0xa7, 0xb7, 0x8f, 0xe3, 0xef, 0xd6,
+ 0xb9, 0x5e, 0xa3, 0xef, 0x07, 0x24, 0x71, 0xe8, 0xf8, 0x0e, 0x91, 0x21, 0x29, 0xad, 0xcc, 0x2f, 0x10, 0xc7,
+ 0x90, 0xa1, 0xa5, 0x79, 0xc9, 0xa2, 0x49, 0x0a, 0x05, 0xc4, 0xfc, 0x30, 0xd0, 0x55, 0x00, 0x12, 0x00, 0x4a,
+ 0x67, 0xca, 0x6e, 0x53, 0x0e, 0x22, 0x3f, 0xe2, 0xa7, 0x7f, 0xb9, 0xd7, 0xe0, 0x84, 0xae, 0xa2, 0x40, 0x86,
+ 0xaa, 0xc9, 0x8f, 0xf9, 0xa5, 0x4d, 0x31, 0xfc, 0xf7, 0x31, 0x7c, 0x95, 0x04, 0x6f, 0x8b, 0xf3, 0x49, 0x1c,
+ 0x22, 0x2b, 0xdc, 0x46, 0xf4, 0x2e, 0xa3, 0x33, 0x0e, 0x11, 0x3f, 0xd4, 0x4f, 0x8a, 0x43, 0x91, 0x15, 0xce,
+ 0x6f, 0x64, 0x28, 0x2f, 0x70, 0x2a, 0x3a, 0xdb, 0x1e, 0xba, 0x30, 0x3d, 0x6f, 0xfc, 0x9a, 0xa5, 0x49, 0xa5,
+ 0x97, 0x10, 0xd6, 0xa0, 0x21, 0xe7, 0x7a, 0xec, 0x4e, 0x53, 0xc0, 0xab, 0xcd, 0xe8, 0xf1, 0x76, 0xf9, 0x60,
+ 0x83, 0xd9, 0xfb, 0x78, 0x2b, 0xb3, 0x23, 0x38, 0xe3, 0x7f, 0xf4, 0xf8, 0x06, 0x7c, 0xe2, 0xac, 0x24, 0x30,
+ 0x91, 0xef, 0x01, 0xb4, 0x05, 0xae, 0xd5, 0x67, 0x34, 0x97, 0x92, 0x63, 0xcf, 0xba, 0x87, 0x3e, 0xdf, 0xb0,
+ 0xa3, 0xe4, 0x4f, 0x97, 0xed, 0x14, 0xe6, 0x76, 0xfa, 0x7d, 0x63, 0x86, 0x93, 0xfc, 0xe5, 0xe6, 0x21, 0xea,
+ 0xff, 0xd2, 0xb4, 0x2e, 0xf8, 0xde, 0x03, 0xbf, 0xc9, 0x10, 0xe3, 0x55, 0x37, 0x40, 0x33, 0xc9, 0xd4, 0x0a,
+ 0xcb, 0xf8, 0x62, 0xf0, 0x1f, 0xb8, 0x62, 0xc0, 0x2f, 0x56, 0x0c, 0x06, 0x4d, 0xa8, 0xd6, 0x85, 0x70, 0x2f,
+ 0x55, 0xcb, 0x7c, 0x9f, 0x68, 0xfd, 0xf5, 0xfc, 0xea, 0x9c, 0xb9, 0x3b, 0x0a, 0xcc, 0xa7, 0x08, 0x9a, 0xf6,
+ 0xd2, 0xd8, 0xe9, 0x38, 0x88, 0xda, 0x97, 0x85, 0x22, 0xd3, 0x37, 0x8a, 0x5c, 0x5d, 0xe0, 0x78, 0x0d, 0xe9,
+ 0x5d, 0x0f, 0x20, 0x98, 0xea, 0x4d, 0x29, 0xc3, 0x0d, 0x79, 0xfc, 0x10, 0x27, 0x3f, 0xc5, 0x26, 0xa4, 0x99,
+ 0x84, 0xd4, 0xc1, 0xf9, 0x03, 0x22, 0xf5, 0x74, 0x1f, 0x8e, 0xfd, 0xc8, 0xc3, 0x7b, 0x32, 0xcb, 0xb1, 0x26,
+ 0xa1, 0x84, 0x08, 0x2c, 0x22, 0x17, 0x4e, 0xa2, 0x08, 0xe3, 0x2a, 0xcc, 0xdd, 0xe2, 0x89, 0xc4, 0xe7, 0xab,
+ 0xc4, 0x67, 0x72, 0xee, 0xf1, 0x96, 0xe0, 0xa6, 0xfa, 0xe9, 0x62, 0xec, 0x2b, 0x5c, 0x1b, 0xbe, 0x5a, 0x90,
+ 0x71, 0x10, 0x2d, 0xd3, 0x4e, 0x50, 0x03, 0x7e, 0xf3, 0xd1, 0xac, 0x7b, 0x8e, 0xcc, 0x1d, 0x0b, 0x53, 0xbe,
+ 0x47, 0xdb, 0x85, 0x44, 0x23, 0x9c, 0xe0, 0x63, 0xfd, 0xc4, 0x20, 0xec, 0xdc, 0x07, 0xf4, 0x41, 0x22, 0x15,
+ 0xb0, 0x86, 0x50, 0x07, 0x17, 0x7c, 0x25, 0x05, 0x09, 0x7c, 0x7c, 0xcb, 0x13, 0x60, 0x96, 0x5c, 0xc9, 0x6b,
+ 0xaa, 0xce, 0xe5, 0x05, 0x70, 0xe6, 0xec, 0xf7, 0x89, 0x01, 0xe4, 0xb1, 0xf7, 0xfc, 0x88, 0x65, 0x0e, 0xdd,
+ 0x88, 0x1c, 0xb9, 0x05, 0xbd, 0x4e, 0x47, 0xf7, 0x88, 0x7f, 0xa6, 0xe0, 0x7c, 0x01, 0x30, 0x0d, 0xfe, 0x1f,
+ 0x5f, 0x8d, 0x7d, 0xa2, 0x87, 0x60, 0x2a, 0x4c, 0x00, 0xf0, 0x3e, 0x4e, 0x41, 0x02, 0x20, 0x09, 0x9a, 0x55,
+ 0x6f, 0x5e, 0x87, 0xf1, 0xb9, 0x96, 0x26, 0xa6, 0x73, 0x6b, 0x62, 0x27, 0x5a, 0x90, 0x6d, 0xdd, 0xd4, 0x37,
+ 0xe9, 0x40, 0x78, 0xa0, 0x38, 0x71, 0xea, 0x95, 0x01, 0x2c, 0x80, 0x10, 0x56, 0x91, 0x48, 0x6c, 0xee, 0xda,
+ 0xae, 0x66, 0xee, 0x09, 0x1a, 0x61, 0xd2, 0xbd, 0x37, 0xb5, 0xd7, 0x18, 0x1b, 0xa5
};
// context = simple_context_vn
@@ -3487,330 +3720,179 @@ static const uint8_t CONTEXT_ARRAY[] = {
#if defined(__PV_LANGUAGE_MANDARIN__)
-// wake-word = nǐ hǎo diànnǎo
+// wake-word = 你好电脑
static const uint8_t KEYWORD_ARRAY[] = {
- 0x3c, 0xaa, 0x77, 0x04, 0x9c, 0x25, 0x7c, 0xdb, 0xc9, 0x51, 0x40, 0x69, 0x89, 0x3f, 0x46, 0x33, 0xe6, 0xb5,
- 0x04, 0xa3, 0x51, 0x68, 0x3b, 0x31, 0xce, 0x7f, 0x57, 0x96, 0xbc, 0x68, 0x9c, 0x85, 0x18, 0x19, 0x67, 0x47,
- 0xa9, 0x2b, 0x05, 0xbb, 0xcd, 0x1f, 0xd6, 0x6f, 0xb3, 0x38, 0x42, 0xdb, 0x36, 0x39, 0xf5, 0x64, 0xd1, 0x54,
- 0xd4, 0x5b, 0xcd, 0x2c, 0xf2, 0x94, 0x91, 0xf0, 0x3f, 0x7a, 0x66, 0xc1, 0x7e, 0xf0, 0x48, 0x84, 0x29, 0xfa,
- 0x49, 0x97, 0x80, 0xd0, 0xf1, 0x71, 0x7e, 0x83, 0xe3, 0xa4, 0x72, 0x07, 0x95, 0xdb, 0x9c, 0x42, 0x7c, 0x3d,
- 0x78, 0x79, 0x0f, 0xec, 0x90, 0xa3, 0x4d, 0xb2, 0x9c, 0xf5, 0xf9, 0xa9, 0x61, 0xae, 0x76, 0xdd, 0x9b, 0x05,
- 0xf6, 0x4d, 0x4d, 0x58, 0x32, 0x09, 0x52, 0x27, 0x73, 0x12, 0xd3, 0xda, 0x6a, 0x17, 0x75, 0xf0, 0xaf, 0x46,
- 0xdd, 0x4b, 0xd5, 0x1e, 0xaf, 0x5d, 0x95, 0xbd, 0xad, 0xcd, 0x7c, 0x1b, 0x32, 0xe1, 0xbe, 0x21, 0x2e, 0x28,
- 0xd0, 0x48, 0x83, 0x90, 0x3a, 0x41, 0x09, 0x1e, 0x07, 0x2e, 0xb5, 0xd8, 0xb7, 0x02, 0x21, 0x7c, 0xa9, 0xc7,
- 0xb6, 0xf3, 0x4d, 0x68, 0x2a, 0xd0, 0x31, 0x17, 0xcc, 0x86, 0x78, 0x07, 0xe2, 0x02, 0x3d, 0xf7, 0xb7, 0x42,
- 0xc9, 0x62, 0xe7, 0x59, 0x8e, 0x6d, 0xce, 0x25, 0x2e, 0x61, 0x55, 0xa2, 0xb4, 0x30, 0xb1, 0x98, 0xcc, 0x67,
- 0x4b, 0x02, 0xbe, 0x80, 0x7e, 0xbb, 0x79, 0x55, 0x7e, 0xec, 0x9d, 0x8d, 0xc5, 0xb5, 0x68, 0x99, 0xcf, 0xa8,
- 0x0e, 0x75, 0x3c, 0x88, 0xcf, 0x87, 0xa9, 0xb9, 0x24, 0x4a, 0x47, 0x0b, 0x7c, 0x64, 0x0c, 0xec, 0x2a, 0xde,
- 0x46, 0x7b, 0x43, 0xd7, 0x72, 0x0a, 0x6e, 0x1a, 0xd3, 0xf3, 0xc0, 0xba, 0x40, 0x3b, 0xb8, 0xc6, 0x3f, 0x88,
- 0xfb, 0x1f, 0xa2, 0x52, 0xfd, 0x3c, 0xe5, 0xe0, 0x13, 0x6a, 0x6c, 0x10, 0x96, 0x79, 0xd3, 0x35, 0x35, 0xc9,
- 0x3c, 0xc2, 0x39, 0x51, 0xae, 0x04, 0x83, 0x4d, 0xef, 0xa9, 0xb1, 0x5f, 0xd8, 0x0c, 0xe8, 0x7c, 0xfb, 0x36,
- 0x21, 0x02, 0x27, 0xd4, 0xb3, 0xd7, 0x2b, 0x00, 0x03, 0x18, 0x72, 0x0f, 0x64, 0xd4, 0x9a, 0x67, 0x4a, 0xc3,
- 0x40, 0x53, 0x1a, 0x1f, 0x3e, 0xe4, 0x28, 0xe8, 0x6b, 0x25, 0x55, 0xcc, 0x32, 0x13, 0x33, 0x04, 0x4e, 0x7e,
- 0x2d, 0x4b, 0x1b, 0xfc, 0xb0, 0xef, 0x65, 0x7a, 0xef, 0x08, 0xce, 0xa0, 0xe6, 0xdc, 0x49, 0x1c, 0xed, 0xcd,
- 0x5a, 0x21, 0xee, 0x00, 0x8a, 0xd1, 0x48, 0xc5, 0x3b, 0xe2, 0x48, 0x5b, 0x3d, 0x07, 0xe9, 0x37, 0x53, 0xe2,
- 0x67, 0x8d, 0x9e, 0x1d, 0x05, 0xc6, 0x26, 0xed, 0x68, 0xcd, 0xde, 0x6f, 0x28, 0xf1, 0xff, 0xd9, 0xb5, 0x11,
- 0xe6, 0x56, 0xb3, 0xae, 0xc7, 0x89, 0xd7, 0xdf, 0xad, 0x4a, 0xbd, 0xf5, 0x3a, 0x0d, 0x6a, 0x0d, 0x48, 0xaf,
- 0x15, 0xf5, 0x6b, 0x13, 0x57, 0xf2, 0x28, 0x8c, 0xd9, 0xd6, 0x63, 0x86, 0x86, 0xf2, 0xb6, 0xc6, 0xe1, 0x33,
- 0x8e, 0x2e, 0x0d, 0x2c, 0x77, 0xc3, 0x8e, 0x4e, 0xa8, 0xbb, 0xaa, 0xbb, 0x06, 0xe8, 0x35, 0xac, 0x91, 0x66,
- 0x95, 0xc8, 0xa1, 0x3e, 0x31, 0x4b, 0x8f, 0x88, 0x51, 0xd7, 0x0f, 0xf3, 0xac, 0x6f, 0x43, 0xd4, 0xf5, 0x30,
- 0x5a, 0x4c, 0xa0, 0x00, 0x0d, 0x3a, 0x22, 0x2c, 0x55, 0x44, 0x7c, 0x0a, 0xaa, 0xba, 0x70, 0xed, 0x19, 0xe1,
- 0x0b, 0xa9, 0xbd, 0x61, 0x06, 0x7e, 0x92, 0x0d, 0xa3, 0xb4, 0xbd, 0x78, 0x22, 0x55, 0x30, 0xe7, 0x72, 0x22,
- 0x80, 0x02, 0xab, 0x2e, 0xef, 0xe6, 0x7c, 0x0a, 0x3c, 0xed, 0xa6, 0x79, 0x03, 0xaf, 0x70, 0x2b, 0x9c, 0x41,
- 0xfe, 0x2f, 0x2f, 0xf4, 0xfa, 0xb2, 0xad, 0xd3, 0xe7, 0xe3, 0xec, 0x01, 0xd1, 0x3e, 0x76, 0x5c, 0x73, 0x90,
- 0x56, 0x3f, 0x82, 0xfc, 0x5f, 0x46, 0x23, 0xef, 0x93, 0x31, 0xd3, 0x26, 0x15, 0x05, 0x25, 0x0d, 0x01, 0xc8,
- 0x17, 0x5a, 0xac, 0x0c, 0x94, 0xd3, 0xf9, 0x6a, 0x5e, 0x5a, 0xd2, 0x6a, 0xf2, 0x99, 0xd1, 0xce, 0xfb, 0xf2,
- 0x9a, 0x9c, 0xb9, 0xef, 0x4a, 0xfa, 0xda, 0x1a, 0x9b, 0xb5, 0xec, 0xf6, 0x42, 0x7b, 0x60, 0x1f, 0x2d, 0xba,
- 0x84, 0x6e, 0x34, 0xa3, 0xd6, 0x68, 0x7d, 0xe4, 0x83, 0xe6, 0xb1, 0xe4, 0xbd, 0xe7, 0x21, 0x4e, 0xc0, 0x71,
- 0xd8, 0x71, 0x95, 0x19, 0xd4, 0x09, 0xf2, 0x3d, 0x90, 0x73, 0xcd, 0x2b, 0xef, 0x5a, 0x09, 0xf2, 0x47, 0x6a,
- 0xc4, 0x44, 0x04, 0xbf, 0xab, 0x68, 0x63, 0xfe, 0x5f, 0x7a, 0x4c, 0xed, 0x86, 0x6a, 0xe1, 0x76, 0xf6, 0xc9,
- 0xb2, 0x51, 0x13, 0x7a, 0xb8, 0x17, 0x21, 0xbb, 0x78, 0x7b, 0xca, 0x86, 0x8f, 0xad, 0xa0, 0x95, 0x1c, 0x45,
- 0x5f, 0x67, 0x67, 0x4f, 0x25, 0x84, 0xe6, 0xe6, 0x8d, 0x5f, 0xfb, 0xeb, 0x0a, 0xc5, 0x18, 0xeb, 0x55, 0x87,
- 0xad, 0x4a, 0x02, 0xc2, 0xe0, 0x0e, 0xc6, 0x9a, 0x57, 0xe8, 0x4f, 0xb4, 0x1b, 0xbf, 0xa2, 0xbb, 0x1d, 0x65,
- 0xb8, 0x80, 0xa6, 0xea, 0xe5, 0x08, 0xde, 0xbb, 0x3f, 0xfe, 0xe4, 0x1d, 0x1b, 0x55, 0xc6, 0x6c, 0x0f, 0x88,
- 0x2f, 0xe4, 0x00, 0xae, 0xd8, 0xa4, 0x9c, 0x4f, 0x46, 0x60, 0xd6, 0x33, 0xab, 0xcd, 0xf7, 0x2f, 0x25, 0x2f,
- 0x2d, 0x30, 0xcc, 0xd5, 0x77, 0x96, 0x80, 0x2b, 0x5e, 0xb4, 0x78, 0xe6, 0x91, 0x23, 0xef, 0x4b, 0xca, 0x24,
- 0x9c, 0x22, 0x7c, 0xa2, 0x9b, 0x1f, 0xb6, 0x00, 0x94, 0x3d, 0xb0, 0xae, 0xdc, 0x0b, 0x56, 0x2f, 0x01, 0xc8,
- 0xe6, 0xb4, 0xab, 0x2a, 0x91, 0x1c, 0xd0, 0xa7, 0x82, 0x25, 0xf3, 0xd7, 0xed, 0x30, 0xff, 0x1a, 0x5c, 0xe0,
- 0x4f, 0x66, 0xa9, 0x6f, 0x1b, 0x63, 0x31, 0x22, 0x22, 0x81, 0x45, 0x17, 0x15, 0x6d, 0xe8, 0x16, 0x98, 0x31,
- 0xd1, 0x5b, 0xc4, 0x8a, 0x93, 0x92, 0x36, 0xd5, 0x3c, 0x7c, 0xf7, 0x12, 0xb3, 0xdf, 0x4b, 0x73, 0xe3, 0xf4,
- 0x40, 0x18, 0xbc, 0x5e, 0x0a, 0x3c, 0xe9, 0x1b, 0xd2, 0xa3, 0x5e, 0xad, 0x77, 0xe3, 0x02, 0xc3, 0x80, 0x55,
- 0x8e, 0xc9, 0x99, 0xb7, 0xf3, 0x22, 0xb7, 0xe9, 0x47, 0x30, 0xb9, 0x2e, 0x77, 0x3e, 0xd0, 0xdb, 0x22, 0x72,
- 0xd9, 0xbf, 0x33, 0x7d, 0x31, 0xcc, 0x8f, 0xe4, 0x9f, 0x46, 0x59, 0x38, 0xfd, 0x2c, 0xe0, 0x3c, 0xa5, 0x0f,
- 0x4a, 0xd6, 0xfd, 0xa2, 0xff, 0x55, 0x53, 0x11, 0x4a, 0x83, 0x8b, 0x56, 0x28, 0x59, 0xaf, 0xf7, 0x17, 0x89,
- 0xf7, 0x9f, 0x4e, 0x1e, 0x07, 0x8c, 0xd2, 0x03, 0x80, 0xb2, 0xca, 0x76, 0x78, 0x0c, 0x9e, 0x0c, 0xfd, 0xdd,
- 0xc9, 0xdd, 0xe6, 0x10, 0x71, 0xe1, 0x27, 0xea, 0xf6, 0x98, 0xed, 0xa4, 0x5c, 0x6c, 0xac, 0xd7, 0x38, 0xe5,
- 0x57, 0xb1, 0xbf, 0xb7, 0x8e, 0x18, 0x8d, 0x71, 0xb5, 0x61, 0xd6, 0x67, 0xd2, 0x75, 0xa4, 0x32, 0x5e, 0xf4,
- 0x45, 0x1d, 0x52, 0x75, 0x9f, 0x09, 0x7f, 0xb1, 0x33, 0x8d, 0xd4, 0xcb, 0xb8, 0xf2, 0xae, 0x81, 0x64, 0x0a,
- 0x28, 0xd3, 0x2e, 0x30, 0xc6, 0xc8, 0xc0, 0x9c, 0xf3, 0x68, 0xd4, 0x07, 0x8b, 0x35, 0x3b, 0x3d, 0x6a, 0x98,
- 0x6b, 0x22, 0x02, 0x97, 0x48, 0x1d, 0x04, 0x03, 0x1e, 0x3e, 0x99, 0x13, 0xa5, 0x16, 0xb8, 0x8d, 0x79, 0x4f,
- 0x97, 0xe6, 0xeb, 0x84, 0xed, 0x10, 0x67, 0xd2, 0xca, 0x2d, 0x3a, 0xd3, 0x06, 0xe8, 0x27, 0xaf, 0xa6, 0x71,
- 0x80, 0x5d, 0x64, 0xc3, 0xd5, 0xfb, 0x23, 0x42, 0xee, 0x36, 0x49, 0xf0, 0xee, 0x08, 0x50, 0x35, 0x5c, 0x00,
- 0xc9, 0x83, 0x1c, 0x64, 0xcf, 0x7f, 0xfa, 0x73, 0xfd, 0x0e, 0xbd, 0x03, 0x73, 0x0f, 0x32, 0x31, 0xc6, 0xb9,
- 0xfe, 0xd4, 0x02, 0x6b, 0xa7, 0x22, 0x13, 0xde, 0xbe, 0x7e, 0x94, 0x47, 0x63, 0x58, 0x5f, 0x9b, 0x60, 0xda,
- 0x81, 0x3f, 0x79, 0x8d, 0xf3, 0x9b, 0x44, 0xde, 0x3b, 0xd3, 0xd6, 0xfd, 0x0a, 0x3b, 0x06, 0x93, 0x5f, 0x7f,
- 0xa4, 0x74, 0x8d, 0xa6, 0xcc, 0x03, 0x21, 0xf5, 0x39, 0x3b, 0xcf, 0x6c, 0x3c, 0x01, 0x25, 0xcc, 0x04, 0xf4,
- 0xfd, 0xd7, 0x63, 0x20, 0x32, 0x7c, 0x67, 0xc0, 0x48, 0x5f, 0x6c, 0x76, 0x24, 0xd7, 0xe2, 0x06, 0xcd, 0x9a,
- 0x57, 0xe3, 0x0c, 0x7e, 0x1d, 0x0b, 0x38, 0x48, 0x17, 0xf7, 0x98, 0xc2, 0xc6, 0x06, 0xbb, 0x2c, 0x05, 0x35,
- 0x53, 0xb1, 0x90, 0xa2, 0xe9, 0xaf, 0x5d, 0xeb, 0xf1, 0x96, 0xb9, 0xc1, 0x7a, 0x8b, 0x39, 0xd4, 0xa9, 0x70,
- 0x03, 0x33, 0x42, 0x07, 0x44, 0x00, 0xe3, 0xe5, 0xbf, 0xa9, 0xfc, 0x99, 0xe2, 0x9f, 0xdb, 0x90, 0x09, 0xc4,
- 0x8e, 0x46, 0x02, 0xe5, 0x64, 0x3a, 0xef, 0x89, 0x55, 0x78, 0x56, 0x56, 0x0e, 0x7f, 0x2b, 0x38, 0x4f, 0x08,
- 0x5b, 0x31, 0x42, 0x1a, 0xc9, 0xd8, 0x96, 0xea, 0x02, 0xfe, 0x23, 0x8f, 0x03, 0x33, 0x6c, 0x3f, 0x81, 0x54,
- 0x52, 0xbb, 0x8a, 0xee, 0xc6, 0xde, 0xe4, 0x91, 0x15, 0x38, 0x02, 0x76, 0x4f, 0x0f, 0x93, 0x05, 0x2f, 0x26,
- 0xc0, 0x47, 0x6b, 0x33, 0xbf, 0xd2, 0xc6, 0xea, 0x6e, 0xff, 0x76, 0x7d, 0x1d, 0xf4, 0x52, 0x20, 0x5c, 0x99,
- 0x05, 0x35, 0x81, 0x9b, 0x0a, 0xcb, 0x89, 0x89, 0x8c, 0xa9, 0x39, 0x9a, 0xbb, 0x4b, 0xf9, 0x36, 0xe4, 0x0d,
- 0x2c, 0x9e, 0x51, 0x2a, 0x5e, 0x73, 0xef, 0xbc, 0x04, 0x93, 0x30, 0x0a, 0x6a, 0x04, 0x33, 0x3e, 0x12, 0x91,
- 0xa2, 0xa9, 0x29, 0x3c, 0x04, 0x84, 0xa7, 0xd1, 0x9f, 0x9d, 0x7b, 0x90, 0x76, 0x9f, 0x6e, 0x72, 0xdb, 0x60,
- 0x46, 0x5f, 0x1e, 0xd7, 0xa4, 0xb8, 0x3c, 0x35, 0x21, 0x3b, 0x37, 0x6f, 0xf5, 0x1d, 0xa0, 0x63, 0x0d, 0xac,
- 0xa3, 0xad, 0xa6, 0x83, 0x72, 0x91, 0xb5, 0xd2, 0xf8, 0x50, 0x7b, 0x26, 0xdf, 0xb7, 0xb4, 0x30, 0x9f, 0x4d,
- 0x44, 0x5e, 0xe6, 0x59, 0x9b, 0x04, 0xf3, 0xc7, 0x11, 0x9e, 0xba, 0x70, 0x21, 0x2d, 0x05, 0x00, 0x3f, 0x1f,
- 0x5b, 0xc9, 0xf1, 0xb7, 0x8c, 0xa7, 0xb0, 0xd2, 0x7b, 0x44, 0xe2, 0xd3, 0xb2, 0x06, 0x72, 0x0f, 0x8e, 0xef,
- 0xa2, 0x16, 0x15, 0x68, 0x08, 0x1a, 0x70, 0x36, 0x21, 0xd5, 0x7f, 0xca, 0x67, 0x88, 0xe2, 0x3d, 0x4c, 0x57,
- 0x96, 0x3c, 0xad, 0x7d, 0x19, 0x0a, 0xbc, 0x3b, 0x8a, 0x30, 0x56, 0xee, 0xd8, 0xa5, 0xb6, 0x2c, 0x55, 0x63,
- 0xad, 0x69, 0x88, 0x1a, 0x83, 0x42, 0x8c, 0xfa, 0x08, 0x7f, 0xdb, 0x9e, 0x87, 0x87, 0x64, 0x3d, 0x69, 0x36,
- 0xd0, 0x25, 0x99, 0x3b, 0xcf, 0xd6, 0xd9, 0x12, 0x57, 0xd7, 0x3a, 0x0c, 0xf3, 0xad, 0xc1, 0x43, 0x35, 0x45,
- 0xae, 0x2e, 0x45, 0xd4, 0x0f, 0x70, 0xd2, 0xf1, 0xe6, 0x51, 0xb5, 0x4c, 0x83, 0x25, 0xb4, 0x19, 0xb3, 0x2e,
- 0xea, 0xb5, 0xf9, 0xa6, 0xea, 0x5f, 0xa7, 0x6e, 0x9d, 0x13, 0x6c, 0x95, 0x03, 0xce, 0xb7, 0x67, 0x7e, 0xdc,
- 0x25, 0xec, 0x50, 0xb7, 0x63, 0x3d, 0x72, 0xd2, 0x45, 0x8a, 0x54, 0xa6, 0x5c, 0x0e, 0x49, 0xd8, 0x20, 0x99,
- 0xd7, 0x0e, 0x53, 0x0f, 0x4d, 0xfa, 0xd2, 0xe1, 0x2f, 0x89, 0xf5, 0xaa, 0xbe, 0x57, 0xee, 0x80, 0x04, 0xc8,
- 0x65, 0x38, 0x34, 0x48, 0x99, 0xd3, 0xc3, 0x0b, 0x75, 0x39, 0x0a, 0x47, 0x42, 0xdd, 0x24, 0xdf, 0x3e, 0xf7,
- 0xbf, 0x0d, 0x02, 0x58, 0x67, 0x6f, 0x30, 0x9b, 0xf5, 0x3d, 0xb1, 0xe0, 0xc2, 0x97, 0x31, 0xff, 0x20, 0xab,
- 0x6a, 0x36, 0x97, 0x4f, 0xd4, 0x5d, 0x71, 0xfe, 0x5c, 0x81, 0x61, 0x17, 0xe7, 0x34, 0x5c, 0x10, 0x25, 0xae,
- 0x77, 0x98, 0x9b, 0x85, 0xa9, 0xbe, 0x3d, 0x35, 0x6e, 0x26, 0x44, 0x5e, 0xa1, 0x6f, 0xb0, 0x05, 0x30, 0x65,
- 0x4b, 0xef, 0x4e, 0x8e, 0xf7, 0x0a, 0xf2, 0x6b, 0xe7, 0xf0, 0xf7, 0xe9, 0x72, 0xfb, 0x2c, 0x3f, 0xa3, 0x73,
- 0x88, 0xe9, 0x5f, 0x7c, 0xd3, 0x75, 0xa5, 0xb3, 0x49, 0x98, 0xbe, 0xc6, 0x29, 0xe5, 0xda, 0xf2, 0x68, 0x8f,
- 0x54, 0x85, 0x46, 0xe1, 0x56, 0x55, 0xcf, 0xc4, 0xfc, 0x26, 0x4a, 0x5a, 0xc7, 0x5a, 0x4d, 0x6c, 0x40, 0xee,
- 0x46, 0x70, 0x7a, 0x05, 0x5a, 0x37, 0xe2, 0xa0, 0xf3, 0x6f, 0xb9, 0x4d, 0x9c, 0x34, 0x2a, 0x86, 0x6d, 0x30,
- 0xd7, 0x1e, 0x85, 0x21, 0xdc, 0x31, 0x97, 0x32, 0xce, 0x89, 0x44, 0xbf, 0x9f, 0xd9, 0x96, 0x68, 0x66, 0x78,
- 0xdb, 0xda, 0xb4, 0x45, 0x89, 0x80, 0xe8, 0x6f, 0x22, 0x98, 0xe9, 0x8f, 0x9f, 0xe9, 0x2e, 0x56, 0x98, 0x84,
- 0xa1, 0xd8, 0x43, 0x6a, 0x32, 0x39, 0x08, 0x9f, 0x98, 0xf1, 0x8e, 0x97, 0xb4, 0x41, 0xec, 0x41, 0x3a, 0x43,
- 0x63, 0xb1, 0x43, 0x48, 0x34, 0xad, 0x12, 0xbc, 0x89, 0x24, 0xc4, 0xc7, 0xda, 0x25, 0xcf, 0x01, 0x46, 0xf0,
- 0x1a, 0xd2, 0xf5, 0x1e, 0xfd, 0x16, 0xa7, 0xbc, 0xb0, 0x9b, 0xbb, 0x51, 0x70, 0x8e, 0xe6, 0x7e, 0xef, 0x9a,
- 0x2c, 0x71, 0xc3, 0x9e, 0xe0, 0x6d, 0x26, 0x98, 0x9a, 0xe5, 0xc6, 0x06, 0x4c, 0x4f, 0x80, 0x50, 0x74, 0x5b,
- 0x62, 0x3e, 0xe8, 0x93, 0xef, 0x6c, 0xd0, 0x3a, 0x17, 0x29, 0x42, 0xbc, 0x05, 0xd1, 0xec, 0x98, 0x32, 0x79,
- 0x86, 0x56, 0x04, 0xbd, 0xed, 0xa5, 0x2b, 0xf0, 0x93, 0x53, 0xf1, 0x17, 0x63, 0xdc, 0x7d, 0xa7, 0x11, 0x24,
- 0x38, 0xcb, 0xaa, 0x48, 0x94, 0x9e, 0x75, 0x4c, 0x0f, 0x37, 0x97, 0x4f, 0x58, 0x52, 0x9d, 0xd5, 0x3e, 0x21,
- 0x64, 0xd2, 0x60, 0x91, 0x30, 0x9f, 0xd2, 0xef, 0x27, 0x52, 0x87, 0xb0, 0x7c, 0x92, 0xe5, 0x6a, 0xe1, 0x1f,
- 0x8a, 0x4a, 0x67, 0x0b, 0x3a, 0x31, 0xd5, 0xe7, 0xde, 0x20, 0x4c, 0x75, 0x94, 0xa8, 0x63, 0xb5, 0xca, 0xcf,
- 0x07, 0x97, 0x3d, 0x65, 0x18, 0xca, 0xbd, 0x42, 0xc8, 0xb9, 0x52, 0xd3, 0xa5, 0xe0, 0x43, 0xeb, 0x45, 0x21,
- 0xeb, 0xe6, 0xc1, 0x56, 0xc1, 0xc7, 0x75, 0x8d, 0xbf, 0xd1, 0x77, 0x0d, 0x3c, 0x2f, 0x6b, 0x90, 0x6a, 0x3d,
- 0x96, 0x36, 0x2c, 0xa4, 0xcf, 0xa7, 0xba, 0xe6, 0x20, 0xed, 0x5a, 0x52, 0x14, 0xf9, 0xeb, 0x71, 0x44, 0x2b,
- 0x38, 0xa5, 0x06, 0xc8, 0x9e, 0xb6, 0x37, 0xf5, 0x17, 0x78, 0xdc, 0xf0, 0xac, 0x2a, 0xf0, 0x18, 0x95, 0xc0,
- 0x63, 0xcc, 0xe4, 0xea, 0xc8, 0x6f, 0x1c, 0xe4, 0x5c, 0x8a, 0xcc, 0x4c, 0x95, 0xc2, 0xbc, 0x41, 0x37, 0x42,
- 0x4c, 0x87, 0xb9, 0xc6, 0x73, 0x4b, 0xd5, 0x81, 0xca, 0xed, 0x84, 0x5d, 0x59, 0xe8, 0x52, 0x43, 0xb4, 0x9c,
- 0xd2, 0xbd, 0x7e, 0x9e, 0x95, 0xaa, 0xf6, 0x4e, 0x8f, 0xe0, 0xc5, 0xf6, 0xba, 0x9d, 0x33, 0xba, 0xb3, 0x89,
- 0x86, 0x74, 0x86, 0x5c, 0x11, 0xbe, 0x08, 0x3b, 0x47, 0xfb, 0x35, 0xe2, 0x2b, 0x96, 0xe1, 0x61, 0x60, 0xd7,
- 0x49, 0x01, 0x20, 0x4b, 0xa0, 0x1d, 0x84, 0x99, 0x5c, 0xed, 0xdc, 0x6a, 0x03, 0x36, 0x7b, 0xa5, 0x06, 0x50,
- 0x78, 0x9a, 0xfd, 0x6c, 0x60, 0x66, 0xe2, 0x31, 0x3b, 0xf7, 0xac, 0x71, 0x9c, 0x12, 0xd3, 0xab, 0x0f, 0xd7,
- 0x9c, 0x24, 0x6f, 0x5a, 0x45, 0xcc, 0x12, 0xb5, 0x19, 0xb8, 0xb8, 0x14, 0x47, 0x33, 0x4c, 0xa8, 0xc9, 0x2e,
- 0x58, 0x68, 0x1e, 0xe9, 0x6d, 0x31, 0xbe, 0x48, 0x39, 0xda, 0xcd, 0x39, 0xbd, 0xa2, 0x32, 0x95, 0xfa, 0x6c,
- 0x79, 0x53, 0xd0, 0xfa, 0x80, 0x9f, 0xd7, 0x61, 0xf4, 0xa3, 0x5d, 0x32, 0xdb, 0x18, 0x75, 0x12, 0xf8, 0x19,
- 0x93, 0x3a, 0x8b, 0xca, 0xcb, 0x43, 0x3c, 0x93, 0x0c, 0x6f, 0xc1, 0x52, 0xf3, 0x0f, 0xc2, 0xf6, 0x72, 0x18,
- 0x18, 0xf8, 0xd0, 0x28, 0xd9, 0x9a, 0x8f, 0x56, 0x1f, 0x07, 0x98, 0x81, 0x9f, 0xfb, 0xd5, 0x0a, 0xbe, 0xec,
- 0x47, 0x3d, 0x59, 0x72, 0x31, 0x5e, 0x70, 0x1a, 0x8a, 0x9c, 0x90, 0x52, 0x86, 0x4e, 0xd7, 0x33, 0x79, 0x71,
- 0x74, 0x5b, 0xf5, 0x6c, 0x85, 0x5c, 0x20, 0x33, 0x16, 0xc2, 0x7f, 0xb7, 0xa4, 0x89, 0x20, 0x9d, 0x88, 0x2a,
- 0x93, 0xa0, 0x51, 0x8a, 0xdf, 0x46, 0x4f, 0x32, 0xa4, 0x04, 0xf5, 0x45, 0x9f, 0xd0, 0x7e, 0xe5, 0xb2, 0xce,
- 0x78, 0x76, 0x04, 0x2a, 0xa5, 0xc2, 0xbe, 0x58, 0x1d, 0xae, 0xf3, 0x54, 0x28, 0x57, 0x55, 0xa5, 0x02, 0x4f,
- 0x01, 0x37, 0xc4, 0x71, 0xf2, 0xcd, 0x14, 0xc3, 0x09, 0x43, 0x01, 0x8e, 0x10, 0x68, 0xd6, 0x9a, 0xe8, 0xfe,
- 0xee, 0x01, 0x42, 0x9a, 0x2c, 0x42, 0xb5, 0xb5, 0x7b, 0xc7, 0xc3, 0x96, 0xcb, 0x55, 0x6f, 0x82, 0xe9, 0x30,
- 0x17, 0x09, 0x8d, 0x73, 0x37, 0x6d, 0x3c, 0x21, 0x69, 0xea, 0x31, 0x2b, 0x18, 0x0e, 0x0e, 0x71, 0xc2, 0x0d,
- 0x6f, 0xdd, 0x3f, 0x20, 0x27, 0x0f, 0x0a, 0xf3, 0x52, 0xa7, 0xd6, 0xf6, 0xaf, 0x1c, 0x9d, 0x8f, 0x31, 0x14,
- 0xef, 0x46, 0x6b, 0xe2, 0x0a, 0x3b, 0xa8, 0xed, 0x24, 0x09, 0x0e, 0xed, 0xb4, 0xfd, 0x85, 0x10, 0xf3, 0x27,
- 0xda, 0x69, 0x12, 0x11, 0xcc, 0xb1, 0x51, 0x54, 0x33, 0x3d, 0x23, 0xf2, 0xff, 0x25, 0x61, 0x1e, 0x73, 0x9a,
- 0x58, 0x20, 0x1d, 0x8f, 0x54, 0xa2, 0x5a, 0x6d, 0xf1, 0x75, 0x27, 0xeb, 0x2d, 0xd1, 0x98, 0xfe, 0xaf, 0x06,
- 0x6c, 0x60, 0xb4, 0x33, 0xab, 0x97, 0xf9, 0xf1, 0xc1, 0xc9, 0x30, 0x7f, 0xb6, 0xcc, 0xc7, 0x88, 0x86, 0x05,
- 0xc6, 0x0c, 0xb8, 0x94, 0x4f, 0x1b, 0x8c, 0xd0, 0x70, 0xe9, 0xa7, 0x58, 0xd1, 0x0a, 0x45, 0x3b, 0xbd, 0xc7,
- 0xf8, 0x28, 0x95, 0x7c, 0x4c, 0xc3, 0xd1, 0x5f, 0x7a, 0x95, 0x4b, 0x7a, 0x02, 0x2a, 0x44, 0xb9, 0xd9, 0x95,
- 0xe0, 0x94, 0xa9, 0xc0, 0xca, 0xd7, 0x11, 0x31, 0x0a, 0xf8, 0x64, 0xda, 0x85, 0x4f, 0xb4, 0x17, 0x6d, 0xf7,
- 0x6c, 0x7d, 0xc4, 0x68, 0x06, 0x51, 0xda, 0x0a, 0xf4, 0xc8, 0x35, 0xbf, 0xcf, 0x57, 0xb5, 0x14, 0xa0, 0x43,
- 0xfe, 0x76, 0xcc, 0x9f, 0x85, 0xde, 0x10, 0xe5, 0x3d, 0x4e, 0x8c, 0x11, 0x67, 0x71, 0x5e, 0x3a, 0xdd, 0x86,
- 0x0f, 0xb3, 0xce, 0xbe, 0xaa, 0xd5, 0x91, 0xdb, 0xde, 0xcd, 0x7a, 0x88, 0xcd, 0x43, 0x65, 0x41, 0xc3, 0xea,
- 0xc1, 0xe3, 0x0a, 0x2b, 0xe8, 0x98, 0xa5, 0xad, 0x87, 0x65, 0x59, 0x98, 0xd4, 0x64, 0x1a, 0xeb, 0x96, 0x2c,
- 0xd7, 0x5f, 0x22, 0x8e, 0x29, 0x6b, 0xc5, 0x7c, 0xcc, 0x69, 0xde, 0xf3, 0xd9, 0x2e, 0x78, 0x97, 0xa7, 0xa2,
- 0xff, 0x48, 0xa7, 0x54, 0x41, 0xb6, 0x41, 0xe6, 0xa2, 0x03, 0xf9, 0x2e, 0x4a, 0xfc, 0x3d, 0x48, 0x5e, 0x50,
- 0x57, 0x80, 0x7b, 0x37, 0xbd, 0xa7, 0x17, 0xf6, 0x76, 0x17, 0x6b, 0x88, 0xac, 0x88, 0xee, 0x40, 0xf6, 0xcf,
- 0x6f, 0x0c, 0x0e, 0x6c, 0x55, 0xb2, 0xf4, 0x93, 0xd9, 0xef, 0xb8, 0x3f, 0x1c, 0xc6, 0x35, 0x02, 0xab, 0x54,
- 0xd7, 0x70, 0x14, 0xcd, 0xd6, 0xc4, 0xbb, 0x28, 0x25, 0x6e, 0x20, 0x93, 0xc1, 0xe6, 0x4f, 0x44, 0xad, 0x07,
- 0xd3, 0xcc, 0xd2, 0x89, 0x2a, 0x4d, 0xc1, 0x0c, 0x3b, 0x00, 0xee, 0xe3, 0x53, 0x64, 0x3c, 0xa5, 0x67, 0xb9,
- 0xbe, 0x72, 0xef, 0x41, 0xf7, 0x32, 0x80, 0xef, 0x2c, 0x34, 0xe0, 0xbd, 0xb8, 0xc6, 0xfb, 0xb6, 0x38, 0xc1,
- 0x18, 0x3d, 0x99, 0x1a, 0xa7, 0x8d, 0xa8, 0xca, 0x32, 0x9f, 0x00, 0xe2, 0x04, 0xda, 0x28, 0x86, 0x6b, 0x74,
- 0x1e, 0x1e, 0x64, 0xd4, 0x80, 0xdb, 0xd7, 0xef, 0x32, 0x33, 0x58, 0x63, 0xca, 0xbf, 0x9a, 0xb7, 0x06, 0xd0,
- 0x9f, 0x14, 0x7d, 0x6d, 0x65, 0x57, 0xc1, 0x20, 0x7f, 0xfb, 0x86, 0xd2, 0xc3, 0xe9, 0x7c, 0xea, 0x04, 0x6b,
- 0x30, 0x71, 0x89, 0x92, 0x1e, 0xbb, 0x58, 0x56, 0x50, 0x06, 0x41, 0x79, 0xb4, 0xba, 0x83, 0x26, 0x63, 0x53,
- 0x97, 0xab, 0xf7, 0x03, 0xbb, 0x9e, 0x9d, 0xfd, 0xe8, 0x4f, 0xde, 0xb2, 0x11, 0xfb, 0x62, 0xbe, 0x7e, 0xea,
- 0x7c, 0xe5, 0x9f, 0x87, 0x57, 0xec, 0xe1, 0x8c, 0x93, 0x01, 0x60, 0x9f, 0xad, 0xf5, 0x4d, 0x8f, 0x5d, 0xe7,
- 0x46, 0xdc, 0x17, 0x61, 0x3c, 0x76, 0x2d, 0xe5, 0xb8, 0xe9, 0x41, 0xe3, 0x88, 0x57, 0x37, 0x25, 0x72, 0x2b,
- 0x7f, 0x19, 0x0b, 0x40, 0x57, 0x7d, 0x0c, 0xfa, 0xe4, 0x5f, 0x0e, 0x09, 0x73, 0x3d, 0xff, 0xdb, 0x1e, 0xc6,
- 0x19, 0x99, 0x06, 0xc7, 0xad, 0x85, 0xb1, 0x0f, 0xd9, 0x27, 0x1c, 0x50, 0x9c, 0x8c, 0x91, 0x4f, 0x44, 0x04,
- 0xc0, 0x62, 0x61, 0xca, 0x15, 0x4b, 0xb7, 0x93, 0xf5, 0xb1, 0x5a, 0x5e, 0xeb, 0xeb, 0x80, 0x36, 0xcd, 0x58,
- 0x94, 0xbe, 0x6b, 0x7f, 0x49, 0x27, 0x83, 0x8b, 0x19, 0x12, 0xeb, 0xaf, 0xfa, 0xa6, 0xc0, 0xae, 0xc1, 0xd4,
- 0x36, 0xce, 0x0b, 0xdd, 0x7d, 0xb8, 0x1a, 0xa8, 0xb0, 0xb4, 0xb3, 0xd2, 0xa3, 0x57, 0xe2, 0x31, 0x09, 0xc3,
- 0x20, 0x51, 0xc0, 0x0a, 0x2e, 0x23, 0xa6, 0x57, 0x49, 0xa0, 0x41, 0x36, 0x82, 0x5b, 0xd6, 0x0a, 0x47, 0xcf,
- 0x3d, 0xd9, 0xcb, 0x5a, 0xb7, 0xd8, 0x63, 0xf2, 0x4a, 0xec, 0x02, 0x1d, 0xba, 0xd7, 0x62, 0x8e, 0xf1, 0x35,
- 0x11, 0x42, 0xd4, 0x29, 0x9e, 0x26, 0x0a, 0x00, 0xd9, 0x57, 0x09, 0xb5, 0x7b, 0x62, 0xb5, 0xc0, 0x00, 0x0d,
- 0xf3, 0x28, 0xd6, 0x73, 0x6b, 0x76, 0x6e, 0x56, 0x8b, 0x44, 0x47, 0x8c, 0x8b, 0xbb, 0x04, 0xb8, 0x1b, 0x9a,
- 0x1a, 0x3a, 0xe6, 0x55, 0xd1, 0x42, 0x5e, 0x08, 0x91, 0x4f, 0x1c, 0xe6, 0x9d, 0x91, 0xd3, 0x19, 0x61, 0xfb,
- 0x88, 0x9e, 0x4d, 0xa7, 0xd1, 0x23, 0x10, 0x26, 0x16, 0xe9, 0x01, 0x33, 0x89, 0xbf, 0xee, 0x3c, 0xae, 0x77,
- 0x19, 0x79, 0xb7, 0xfa, 0xdb, 0x42, 0x0b, 0xa1, 0x6c, 0x58, 0x6f, 0x81, 0xb4, 0x5d, 0xd9, 0xef, 0xb6, 0x17,
- 0x10, 0x3b, 0x0f, 0x90, 0xd3, 0xed, 0xe7, 0xb1, 0x40, 0x14, 0x2e, 0x20, 0x0d, 0xfb, 0x35, 0x48, 0xa7, 0x95,
- 0xcb, 0xb5, 0xd7, 0xeb, 0xd5, 0xc7, 0x9b, 0x04, 0x0b, 0x49, 0xf8, 0xb9, 0xae, 0xa1, 0x9f, 0x61, 0x54, 0x06,
- 0x04, 0x9c, 0x6d, 0x81, 0xe3, 0x0d, 0xbd, 0xe1, 0x91, 0xb7, 0xd0, 0xe2, 0x1d, 0xc6, 0xcf, 0xfd, 0xfe, 0xe6,
- 0x7a, 0x0f, 0x9d, 0xdc, 0x55, 0xa6, 0x1a, 0xcb, 0x8f, 0x7f, 0x38, 0x9d, 0x93, 0x69, 0x4b, 0x54, 0x76, 0x19,
- 0x7c, 0xb3, 0x58, 0x99, 0x42, 0x2e, 0xc6, 0x35, 0x03, 0xce, 0x4e, 0xe2, 0xb0, 0x6d, 0x90, 0x8b, 0x4a, 0x5a,
- 0x01, 0x9b, 0x1f, 0x00, 0x62, 0xce, 0x31, 0xae, 0x99, 0xf2, 0xaf, 0x3e, 0xac, 0x62, 0xea, 0x35, 0x9e, 0x46,
- 0x53, 0x98, 0x07, 0xe5, 0x57, 0xe5, 0xb6, 0x3e, 0xc5, 0xde, 0x3e, 0xcb, 0xf7, 0x95, 0x0f, 0x07, 0xce, 0xf3,
- 0xcb, 0x5a, 0xcb, 0x2f, 0x92, 0x81, 0x97, 0x1e, 0xbf, 0xa3, 0x37, 0x25, 0xf6, 0x9b, 0x0e, 0x8a, 0xb2, 0x62,
- 0x21, 0xf7, 0xb7, 0x81, 0x30, 0x52, 0xf4, 0xa1, 0x5b, 0xae, 0xf6, 0x22, 0x97, 0x04, 0xda, 0x21, 0x24, 0xb2,
- 0x96, 0x4e, 0xd6, 0x89, 0x1b, 0x74, 0x09, 0x5a, 0x98, 0x04, 0x9b, 0x10, 0x84, 0xa3, 0xf3, 0xa0, 0x95, 0x94,
- 0x5b, 0xa6, 0xe4, 0x2a, 0x08, 0x70, 0x1e, 0xfa, 0x6f, 0xe8, 0x60, 0xa8, 0x55, 0x1e, 0xf1, 0xf8, 0x5b, 0x69,
- 0xd4, 0x10, 0x93, 0x43, 0x7e, 0x06, 0xc1, 0x42, 0x7a, 0x5d, 0x9a, 0xdf, 0xf4, 0x94, 0x80, 0x88, 0x3c, 0xbb,
- 0x95, 0x94, 0xf5, 0xbd, 0xf1, 0xfd, 0xb0, 0x10, 0x0d, 0x1e, 0x0d, 0x73, 0xae, 0x1d, 0x00, 0xee, 0x3a, 0xda,
- 0xb1, 0x5e, 0x15, 0xfe, 0xe0, 0x94, 0x3c, 0x8b, 0xbf, 0x23, 0x40, 0x5f, 0xe0, 0xe0, 0x97, 0xef, 0x6d, 0x97,
- 0xb7, 0x3b, 0x45, 0x8c, 0x28, 0x1d, 0x57, 0xe3, 0xca, 0xab, 0xad, 0x51, 0xe5, 0x02, 0x31, 0x26, 0x25, 0x76,
- 0x04, 0xb0, 0xf5, 0x7f, 0x64, 0x3a, 0x8c, 0x44, 0x85, 0x2e, 0xce, 0xa4, 0x7c, 0xb2, 0x95, 0x47, 0xd0, 0x57,
- 0x80, 0xc5, 0x3a, 0xea, 0xc3, 0xf9, 0x3e, 0xda, 0x55, 0xde, 0x63, 0x3e, 0x7a, 0xb0, 0xe4, 0xb0, 0x66, 0x23,
- 0x64, 0x20, 0xd1, 0x84, 0x2d, 0x7c, 0xc2, 0xde, 0xc6, 0x5d, 0x11, 0x34, 0x38, 0x9d, 0xa9, 0x68, 0x22, 0xe1,
- 0x77, 0x1a, 0xe1, 0xdc, 0x76, 0x53, 0xce, 0x0e, 0x4c, 0x91, 0x0d, 0x05, 0xe0, 0x2c, 0x5a, 0x30, 0x60, 0xc9,
- 0x22, 0x2b, 0x6b, 0x50, 0x4f, 0xef, 0x6e, 0x48, 0x90, 0xa9, 0x09, 0x48, 0x34, 0x1f, 0x21, 0xe9, 0x9a, 0x0f,
- 0xe2, 0xfd, 0xa9, 0x61, 0x65, 0x87, 0xa4, 0xcb, 0xb3, 0x53, 0x1b, 0x08, 0xc1, 0x9f, 0x57, 0x67, 0x07, 0x1f,
- 0x3e, 0x43, 0x6a, 0x34, 0xfb, 0xb4, 0x11, 0xe2, 0x07, 0xd5, 0x69, 0x4d, 0x01, 0xd3, 0xb8, 0x82, 0x8e, 0x87,
- 0x3e, 0x03, 0x2b, 0x38, 0x2f, 0x99, 0xa4, 0x56, 0xaf, 0x0b, 0x4f, 0xad, 0xc6, 0xe2, 0x00, 0x57, 0x45, 0x32,
- 0xfb, 0x40, 0xc3, 0x4a, 0x7d, 0x7b, 0x93, 0x3d, 0x79, 0x63, 0x8d, 0xe2, 0xed, 0x01, 0xb3, 0x51, 0x9b, 0xfd,
- 0xb2, 0xf7, 0x06, 0xbf, 0xc7, 0xfd, 0xa4, 0x90, 0x54, 0x9c, 0x01, 0x56, 0xda, 0xb8, 0xa7, 0x71, 0xc2, 0x02,
- 0x9d, 0xaa, 0xd5, 0xf4, 0x3f, 0x32, 0x41, 0x37, 0x45, 0x2e, 0x4c, 0x8f, 0xbc, 0x2b, 0xc2, 0x02, 0x2f, 0x09,
- 0x9d, 0x5b, 0xdf, 0xcd, 0xf8, 0x11, 0x2b, 0x54, 0x4b, 0x4d, 0x39, 0xe6, 0xb4, 0xaf, 0x44, 0x56, 0x69, 0xfc,
- 0xd5, 0x11, 0x82, 0x0b, 0x3a, 0x9e, 0xaf, 0x4c, 0xb3, 0x7b, 0xa0, 0x13, 0x92, 0xb4, 0x24, 0x93, 0x84, 0x60,
- 0xcf, 0xba, 0xd3, 0x17, 0xc5, 0x15, 0x93, 0x22, 0x89, 0xd5, 0x66, 0xb6, 0x18, 0xaf, 0xd4, 0x00, 0x06, 0xbf,
- 0xd0, 0x15, 0x60, 0x96, 0x1d, 0x73, 0x85, 0x0e, 0xd6, 0xbf, 0x27, 0x91, 0x22, 0x3f, 0x89, 0xca, 0xa3, 0x59,
- 0x0d, 0x5e, 0xdc, 0x54, 0xe5, 0x08, 0x60, 0x36, 0x63, 0xb1, 0xaa, 0x1a, 0x96, 0xb2, 0xea, 0x1a, 0xdc, 0x13,
- 0x42, 0xfb, 0x68, 0xde, 0xbb, 0xbe, 0x01, 0xdc, 0x2b, 0x9f, 0x7d, 0xb0, 0xd1, 0x44, 0x93, 0xbd, 0xd3, 0xd4,
- 0x8c, 0x10, 0x19, 0xa0, 0xca, 0x19, 0xbb, 0x32, 0xf8, 0x43, 0x45, 0x86, 0x97, 0x77, 0xad, 0x91, 0x5e, 0x7c,
- 0x73, 0x6a, 0x60, 0x46, 0xf6, 0x50, 0x6e, 0x40, 0xf8, 0x45, 0xdd, 0xee, 0x38, 0x6c, 0x2a, 0x8c, 0x68, 0xaa,
- 0xb5, 0x52, 0xb0, 0x0c, 0xbf, 0xc3, 0xc7, 0xf5, 0xd9, 0xc4, 0x31, 0x09, 0x2e, 0x25, 0x1a, 0x3f, 0xe7, 0xa6,
- 0xef, 0x7f, 0x7a, 0x2a, 0x48, 0x6b, 0xb2, 0xd0, 0xf9, 0xda, 0x7f, 0xfa, 0x9b, 0x92, 0x02, 0xcf, 0xb7, 0xb6,
- 0x4c, 0x2e, 0xd6, 0x1e, 0xdf, 0x32, 0xcf, 0xea, 0x0d, 0xb5, 0xdb, 0x94, 0xc2, 0x8e, 0x58, 0x7b, 0xfa, 0x3a,
- 0x58, 0xdc, 0xf6, 0x11, 0x5f, 0x89, 0xd7, 0x68, 0x66, 0xd8, 0xb9, 0x34, 0x7a, 0x15, 0x9f, 0xf4, 0xe8, 0x86,
- 0xef, 0x1c, 0x87, 0x7e, 0x53, 0x38, 0x90, 0x89, 0xf5, 0xf2, 0x4f, 0x9c, 0x90, 0x20, 0xfe, 0x5d, 0x8f, 0xf0,
- 0x0b, 0xb8, 0xab, 0xe3, 0x4e, 0xb1, 0xa7, 0x38, 0x34, 0x6b, 0xaa, 0xed, 0x3f, 0xc9, 0xbe, 0x22, 0xf1, 0x2c,
- 0xb2, 0x74, 0xe1, 0x0b, 0x14, 0x14, 0x8d, 0xac, 0xcd, 0xb3, 0xe0, 0x46, 0x45, 0xa4, 0xb7, 0x58, 0x1d, 0x86,
- 0x8f, 0xa1, 0x01, 0x9d, 0x3b, 0xe8, 0x19, 0x2b, 0x6a, 0x4d, 0xa2, 0x77, 0x49, 0x13, 0xe1, 0x73, 0x04, 0x7e,
- 0xbc, 0xe6, 0x2f, 0x0c, 0x1f, 0x0f, 0x46, 0x4d, 0x1b, 0xa0, 0xe2, 0xd7, 0xb0, 0x29, 0x7b, 0x12, 0xa8, 0x36,
- 0xf2, 0x5d, 0x47, 0x8e, 0x0a, 0x24, 0x28, 0x85, 0x6a, 0x39, 0xce, 0xfc, 0x88, 0xeb, 0xec, 0x78, 0x13, 0x6f,
- 0x2a, 0xbc, 0x82, 0x48, 0xe5, 0x32, 0xe8, 0x35, 0x79, 0xe6, 0x8b, 0x0f, 0xc3, 0xb9, 0xad, 0x2f, 0x79, 0x5d,
- 0xb0, 0x12, 0xa9, 0xd3, 0x05, 0x9f, 0x51, 0xd8, 0xcf, 0x69, 0x01, 0x5b, 0x8f, 0xcd, 0xc0, 0xda, 0x1b, 0xbb,
- 0x1b, 0x6e, 0xa1, 0x3b, 0x35, 0xb2, 0x79, 0x2d, 0x22, 0x7e, 0xb1, 0x30, 0xbf, 0xe4, 0x5c, 0x16, 0xea, 0x5d,
- 0x96, 0x5e, 0x34, 0x40, 0x88, 0x99, 0x55, 0xa1, 0xff, 0xd8, 0x87, 0x4c, 0x68, 0xad, 0xf1, 0x3f, 0x91, 0x83,
- 0xfc, 0x8e, 0xb0, 0x7b, 0xc3, 0xb5, 0x84, 0x2a, 0xa0, 0x22, 0x7c, 0x1a, 0x0f, 0xb5, 0x9e, 0xf3, 0x47, 0x26,
- 0xd3, 0x29, 0x82, 0xba, 0x39, 0xe6, 0xcd, 0x36, 0xe9, 0x24, 0xa4, 0xdf, 0x45, 0xe7, 0x36, 0x27, 0x6d, 0x0e,
- 0xb2, 0xa2, 0x40, 0xaf, 0x96, 0xda, 0xc8, 0xf4, 0xc5, 0x33, 0x07, 0x92, 0xf4, 0xb6, 0x1b, 0xc6, 0x49, 0x16,
- 0x57, 0x6b, 0xf3, 0x63, 0x81, 0xd9, 0xfc, 0x52, 0xd5, 0x60, 0x7c, 0xc6, 0x59, 0x18, 0x6f, 0xfe, 0x69, 0x27,
- 0x3f, 0x23, 0xf7, 0x64, 0x04, 0x21, 0xf4, 0xee, 0x52, 0xa0, 0xf3, 0x65, 0x81, 0xc0, 0x6d, 0xdf, 0x18, 0xd0,
- 0xf5, 0xa6, 0x5e, 0x24, 0x46, 0xbd, 0x3a, 0x82, 0x99, 0x6a, 0x72, 0x3c, 0x17, 0x69, 0x1c, 0xe8, 0x9c, 0x05,
- 0x0a, 0x67, 0xca, 0x5d, 0xa5, 0x6a, 0xc5, 0x8a, 0x58, 0x39, 0xb8, 0xf7, 0xc9, 0xea, 0xe3, 0xcc, 0xd1, 0xa0,
- 0x55, 0x62, 0xd7, 0x99, 0xae, 0xaa, 0x42, 0x5b, 0x5c, 0x10, 0xa9, 0x27, 0x99, 0x0f, 0xd7, 0x25, 0xad, 0xee,
- 0xd9, 0x97, 0x38, 0xe7, 0x1d, 0x09, 0x93, 0xb5, 0xf1, 0xd5, 0xaf, 0x3e, 0x20, 0xe1, 0x16, 0xb7, 0xe6, 0xd4,
- 0x91, 0x36, 0x96, 0xd1, 0x59, 0x2a, 0xeb, 0xa7, 0x95, 0xfc, 0x99, 0x29, 0xdb, 0x5a, 0xaa, 0x57, 0x36, 0x9a,
- 0xf1, 0x25, 0x8d, 0x8a, 0x52, 0x93, 0x6b, 0x62, 0xc4, 0xab, 0x9e, 0x6d, 0x57, 0xeb, 0xb7, 0xdf, 0x2f, 0xd3,
- 0x3d, 0x53, 0x88, 0x8b, 0x61, 0x10, 0xa8, 0xa6, 0xb6, 0xf1, 0x82, 0xee, 0xa5, 0x0c, 0x89, 0x7f, 0x89, 0x66,
- 0x49, 0xd8, 0x5b, 0x50, 0xff, 0xe8, 0x16, 0x08, 0x10, 0xa6, 0xc2, 0xaa, 0x36, 0xf5, 0x5a, 0xbf, 0x6b, 0xd3,
- 0x38, 0xa8, 0x24, 0x3e, 0xdd, 0x52, 0x3a, 0xdc, 0xbf, 0x86, 0x12, 0x40, 0x83, 0xd9, 0x1a, 0x0a, 0x63, 0x53,
- 0x3e, 0xc8, 0xa9, 0xf2, 0xc3, 0x41, 0xa9, 0xa9, 0x63, 0xb3, 0x16, 0x43, 0x18, 0x31, 0xc3, 0x7d, 0x0e, 0xa2,
- 0xaa, 0x00, 0xad, 0x5e, 0xa6, 0x79, 0x52, 0xec, 0xd2, 0x03, 0x60, 0x0f, 0xff, 0xcb, 0x35, 0x5d, 0x53, 0xa5,
- 0xc7, 0x7d, 0x86, 0x24, 0x67, 0x63, 0x45, 0x65, 0x60, 0xaf, 0xd0, 0x72, 0x93, 0x47, 0x60, 0x45, 0x43, 0x47,
- 0x17, 0x1a, 0xbe, 0x7d, 0x4c, 0x88, 0x0a, 0x71, 0xbe, 0xa1, 0xe5, 0xc3, 0x21, 0xc3, 0xc6, 0x29, 0x0e, 0xbf,
- 0x12, 0x40, 0x40, 0xeb, 0xb8, 0xaf, 0xa9, 0x3a, 0x39, 0xff, 0x0e, 0x89, 0x0e, 0x36, 0x8c, 0xee, 0x15, 0xd7,
- 0x1f, 0xf5, 0x41, 0x22, 0xa0, 0x79, 0x89, 0xdf, 0x2d, 0x8d, 0x10, 0xf0, 0x4e, 0xef, 0xe7, 0xcd, 0xeb, 0xa3,
- 0x25, 0xce, 0x43, 0x8d, 0x4b, 0x10, 0xd7, 0x5b, 0xa5, 0x0d, 0x09, 0x8e, 0xe4, 0xfb, 0xdb, 0xf2, 0xbf, 0x70,
- 0x9b, 0x96, 0x45, 0x77, 0x7d, 0x2e, 0xa8, 0x7d, 0x1d, 0x42, 0x10, 0xb5, 0x34, 0xd6, 0xb3, 0x34, 0x5b, 0xbe,
- 0x35, 0x7a, 0x60, 0xa2, 0x54, 0x08, 0x63, 0x9d, 0xfa, 0x80, 0x48, 0xbb, 0xe5, 0x69, 0xd3, 0xcb, 0xea, 0xb5,
- 0x56, 0xcc, 0x66, 0xc6, 0xed, 0x48, 0xf1, 0xba, 0xf4, 0xdd, 0x64, 0x1b, 0xdf, 0x55, 0x7c, 0x93, 0x4e, 0x4f,
- 0xb4, 0x75, 0x7e, 0x3f, 0xb2, 0x15, 0xcf, 0xdf, 0xf9, 0x8b, 0x29, 0x40, 0xab, 0xbc, 0xe4, 0x13, 0x57, 0xa2,
- 0xa2, 0xdb, 0x34, 0xa2, 0x79, 0x77, 0x0a, 0x3b, 0x8a, 0xaa, 0x02, 0xa1, 0xda, 0xa4, 0x58, 0xeb, 0xb5, 0x48,
- 0x14, 0x0b, 0xe7, 0x3e, 0xa1, 0x57, 0xdd, 0xe4, 0xea, 0xf2, 0xa2, 0xbb, 0x50, 0x4b, 0x59, 0x44, 0xf3, 0x08,
- 0x52, 0x63, 0x9d, 0xa3, 0xa5, 0xa0, 0xdf, 0x5e, 0xf6, 0xaf, 0x00, 0x4b, 0x35, 0xb6, 0xd2, 0xef, 0x66, 0x21,
- 0x02, 0x67, 0xb9, 0xbf, 0xdb, 0xa6, 0x68, 0xc0, 0x80, 0x04, 0x39, 0xdc, 0x0e, 0xae, 0x63, 0xd2, 0xf1, 0x1a,
- 0x44, 0xf5, 0x93, 0x0d, 0xc5, 0x12, 0xf1, 0x10, 0xc9, 0xaa, 0x29, 0xd1, 0x41, 0x78, 0xe4, 0xfc, 0x72, 0x44,
- 0x24, 0x7f, 0x66, 0x15, 0xf7, 0x7d, 0x25, 0xcf, 0x07, 0x69, 0x2a, 0xf1, 0x74, 0x52, 0x19, 0xc5, 0x8d, 0xba,
- 0x1c, 0x86, 0x09, 0x1b, 0x53, 0x0b, 0x4a, 0xcd, 0x2c, 0xa4, 0x5f, 0x23, 0x4c, 0x52, 0xed, 0x6b, 0xf1, 0x86,
- 0xde, 0xdc, 0xdb, 0x32, 0x3f, 0x6f, 0xbd, 0x22, 0xb3, 0x81, 0x68, 0x81, 0x21, 0x13, 0x7f, 0x75, 0x5b, 0x28,
- 0x79, 0x7d, 0xe8, 0xf4, 0xa3, 0x91, 0xbc, 0x81, 0xa3, 0x90, 0x5d, 0xf3, 0x38, 0xda, 0xe8, 0x04, 0xd7, 0x24,
- 0xc5, 0x59, 0x81, 0x9b, 0x45, 0x34, 0x94, 0xde, 0x57, 0x23, 0x52, 0x87, 0xff, 0x3f, 0x87, 0x60, 0x9c, 0x13,
- 0xdc, 0x99, 0x7b, 0x2f, 0x85, 0xc0, 0x15, 0xbd, 0x5d, 0x1f, 0xe7, 0x33, 0x53, 0x36, 0x6c, 0x81, 0xb3, 0x15,
- 0x3a, 0x28, 0xdb, 0x85, 0x79, 0x8f, 0xd5, 0x26, 0x6f, 0x7c, 0xb8, 0x98, 0xc2, 0x3d, 0x3d, 0x34, 0xad, 0x56,
- 0x28, 0x67, 0x3c, 0x0e, 0xdb, 0x2d, 0xb1, 0x05, 0x9a, 0x0c, 0x5f, 0x98, 0x87, 0xbd, 0x7f, 0x94, 0xd8, 0x9d,
- 0x0b, 0x31, 0x06, 0x9a, 0xe0, 0x60, 0x68, 0xf1, 0xb8, 0x5e, 0xd4, 0xb2, 0xa8, 0x0d, 0xc7, 0xc7, 0x0a, 0xfc,
- 0x72, 0xc3, 0x29, 0x07, 0x0a, 0xeb, 0xed, 0x74, 0x67, 0x29, 0x93, 0x9f, 0xf0, 0xe7, 0x12, 0xca, 0x30, 0x22,
- 0x8f, 0x77, 0x2b, 0x2d, 0x0f, 0x9c, 0xf5, 0xb2, 0xbf, 0x43, 0x22, 0xd8, 0xc2, 0x27, 0xdd, 0x25, 0xe1, 0x0c,
- 0xd5, 0x50, 0x16, 0xa3, 0xb1, 0x63, 0x1c, 0x2b, 0xf9, 0xfb, 0x95, 0x78, 0x40, 0x60, 0x6c, 0x9b, 0xdc, 0x9f,
- 0xc8, 0x31, 0x4d, 0x50, 0x8c, 0xc5, 0x75, 0xdb, 0x4c, 0xec, 0x61, 0x34, 0x29, 0xc3, 0x49, 0x0a, 0x21, 0x0b,
- 0x6b, 0xc9, 0xcb, 0xb2, 0x12, 0xf5, 0xce, 0xb0, 0xc1, 0x72, 0x6b, 0xb3, 0x9e, 0x6e, 0xfa, 0x0d, 0x1a, 0x4c,
- 0xc8, 0x43, 0x4f, 0x3f, 0x15, 0xeb, 0x54, 0xfc, 0xcb, 0xfa, 0x25, 0x81, 0xae, 0x0a, 0xe9, 0x22, 0xa5, 0x59,
- 0x24, 0xf0, 0x76, 0x6f, 0x76, 0x90, 0xb0, 0x25, 0xb3, 0x8d, 0xc6, 0xdc, 0xa3, 0x20, 0x3b, 0x43, 0xac, 0x3b,
- 0x94, 0xa5, 0x84, 0x8a, 0x73, 0xbb, 0x35, 0xde, 0x0c, 0x38, 0x57, 0xa0, 0xd2, 0x55, 0x69, 0x91, 0xe5, 0xd7,
- 0x39, 0xf2, 0x4f, 0xc6, 0x5c, 0x8f, 0xa3, 0x14, 0x48, 0xd4, 0x1a, 0xd1, 0x60, 0x37, 0x2e, 0xd4, 0x3e, 0x42,
- 0x6e, 0xf0, 0x82, 0xb8, 0x4c, 0x49, 0xf5, 0x1f, 0xb9, 0x4a, 0x59, 0x06, 0x33, 0xf8, 0x1c, 0x3f, 0x52, 0x02,
- 0x22, 0xdb, 0x4f, 0x22, 0x6c, 0x09, 0x06, 0xc9, 0x90, 0x89, 0x1e, 0x57, 0xa1, 0xda, 0xed, 0xad, 0x45, 0xcd,
- 0xf3, 0xc6, 0x8e, 0x11, 0x29, 0xb1, 0xef, 0xd4, 0x90, 0xa2, 0xec, 0xe5, 0x20, 0x37, 0x7e, 0xb5, 0x7c, 0xc4,
- 0xf5, 0x23, 0xc1, 0xab, 0x28, 0x73, 0xaa, 0xa3, 0x71, 0x3a, 0xe2, 0xd8, 0xfe, 0xea, 0xa7, 0x6f, 0x3f, 0xbe,
- 0x74, 0x41, 0xc8, 0x6b, 0x37, 0x83, 0x5c, 0xfb, 0xb9, 0xaa, 0x23, 0xa4, 0x3d, 0x2f, 0x9a, 0x14, 0xab, 0x09,
- 0xdf, 0xfe, 0x11, 0x38, 0xb2, 0xc0, 0xcb, 0x15, 0x73, 0x48, 0x02, 0xb7, 0x08, 0x9d, 0x56, 0x4f, 0xcf, 0x60,
- 0x83, 0x45, 0x94, 0x4b, 0x16, 0x11, 0xd6, 0xd3, 0x1e, 0x11, 0xed, 0x13, 0x2a, 0x9d, 0x25, 0xfb, 0x28, 0x54,
- 0x6b, 0xca, 0x43, 0x10, 0x40, 0x10, 0xb4, 0xbb, 0xbb, 0xe2, 0x41, 0xd2, 0xb6, 0x85, 0x48, 0xad, 0xca, 0x9f,
- 0x9d, 0x62, 0xb4, 0x52, 0x91, 0xe1, 0x37, 0x8a, 0xf9, 0xf5, 0x74, 0x8c, 0x5b, 0xfc, 0xb0, 0x5a, 0x5d, 0x74,
- 0x71, 0x05, 0x9d, 0x84, 0x3e, 0x8f, 0x98, 0x3a, 0xfa, 0xd2, 0x3b, 0x4d, 0xba, 0x4d, 0x4f, 0xb1, 0x8f, 0x61,
- 0x0d, 0x75, 0x1f, 0xcf, 0x4a, 0x6f, 0x69, 0x39, 0x2f, 0x5e, 0x49, 0x1d, 0xa4, 0xbe, 0x4e, 0xc7, 0xd3, 0xc7,
- 0xc3, 0x01, 0x94, 0xde, 0xa0, 0x57, 0xdc, 0x22, 0x8b, 0x64, 0x6d, 0x9e, 0x62, 0x9a, 0x5a, 0x56, 0xe1, 0xdf,
- 0xde, 0x2b, 0x09, 0xa4, 0xa0, 0xc5, 0xed, 0x36, 0x70, 0xe5, 0xe1, 0xa0, 0xcb, 0xe4, 0x7c, 0x64, 0x5a, 0xa2,
- 0x71, 0x44, 0x4c, 0x26, 0xb7, 0xba, 0xe1, 0x1a, 0xbc, 0x6a, 0xcb, 0xa5, 0x2b, 0x1c, 0x01, 0x19, 0x50, 0x93,
- 0xaf, 0xb8, 0x26, 0x3f, 0x37, 0x6e, 0x26, 0x12, 0x16, 0x36, 0x53, 0x56, 0xe4, 0x97, 0x17, 0x9e, 0xd5, 0xa4,
- 0x45, 0x7d, 0xf0, 0x06, 0x3c, 0x40, 0x63, 0xa8, 0x9b, 0x8e, 0xf2, 0xcf, 0xee, 0xa0, 0x7d, 0x38, 0x1d, 0xa2,
- 0x5f, 0xcd, 0x92, 0x3d, 0x48, 0xb3, 0x8b, 0x2d, 0x24, 0xc9, 0x10, 0xfe, 0x71, 0x7e, 0xc5, 0x9b, 0x05, 0x03,
- 0xd6, 0x08, 0xe6, 0x56, 0x24, 0x9a, 0x95, 0xc3, 0x0f, 0xa4, 0x36, 0x6b, 0x29, 0xfe, 0x76, 0x65, 0x7a, 0x38,
- 0x94, 0x52, 0x81, 0x66, 0xf8, 0xb9, 0xfc, 0xca, 0x45, 0x51, 0x4e, 0x9c, 0xe9, 0x7c, 0xf7, 0xf7, 0xd0, 0xa9,
- 0xa8, 0xe3, 0x04, 0x02, 0x09, 0x92, 0x5e, 0xfc, 0x55, 0x31, 0x2c, 0x1d, 0x01, 0x26, 0x6f, 0xf2, 0xbb, 0xb6,
- 0xd7, 0x5e, 0x9a, 0xb7, 0xcb, 0x80, 0xd7, 0xd2, 0x40, 0xf0, 0xb6, 0xc2, 0xbc, 0xa3, 0x26, 0xb1, 0xe4, 0x1b,
- 0x39, 0x5d, 0xda, 0x85, 0x45, 0x71, 0xa2, 0xbe, 0xe7, 0xe0, 0x2e, 0xba, 0xc9, 0x3e, 0x8f, 0x34, 0x07, 0x7f,
- 0x3e, 0xbf, 0x06, 0x40, 0xe7, 0x66, 0x8c, 0xed, 0x62, 0xce, 0xdb, 0xc5, 0x2a, 0x34, 0xe7, 0x97, 0x25, 0x33,
- 0xd2, 0xd3, 0x1a, 0x8c, 0x40, 0x8d, 0x23, 0x39, 0x86, 0x2b, 0xe2, 0xf8, 0x02, 0x73, 0xa7, 0xc5, 0x03, 0x3d,
- 0xa3, 0xfc, 0x3e, 0x6b, 0xb8, 0x00, 0x34, 0x77, 0x61, 0x43, 0x02, 0xb8, 0x14, 0x27, 0xd4, 0x00, 0xa8, 0x35,
- 0x88, 0xb6, 0x74, 0xf3, 0x13, 0x05, 0x51, 0x4d, 0x3d, 0x0c, 0xf9, 0x70, 0xac, 0xe6, 0x8d, 0x8d, 0xdd, 0x11,
- 0xce, 0x58, 0x0d, 0xb4, 0x65, 0x46, 0x3a, 0xdd, 0x42, 0x23, 0x57, 0x9b, 0xa9, 0x34, 0x2f, 0x7c, 0x74, 0x04,
- 0xd4, 0xf2, 0xa1, 0xf0, 0x5d, 0x7c, 0x35, 0x36, 0xd8, 0xaf, 0x4b, 0x06, 0x18, 0x71, 0x91, 0xd7, 0x44, 0x42,
- 0x59, 0x3f, 0x76, 0x2c, 0x65, 0x24, 0x46, 0x35, 0xdb, 0xcf, 0x07, 0x38, 0xd6, 0x0c, 0x12, 0xba, 0xe8, 0x84,
- 0x41, 0xb8, 0x2e, 0xec, 0xc9, 0xab, 0x01, 0x7a, 0x68, 0x70, 0x58, 0xab, 0xdb, 0x8e, 0xee, 0x5f, 0x24, 0x8b,
- 0xaf, 0x62, 0xbf, 0xa9, 0x0f, 0x3f, 0x9f, 0x0b, 0x5a, 0x38, 0x79, 0x2e, 0x88, 0x77, 0x3e, 0x66, 0xa0, 0x4d,
- 0x04, 0xe6, 0x52, 0xd0, 0x34, 0x14, 0xb1, 0x6c, 0x59, 0x2e, 0x19, 0x85, 0x48, 0x13, 0x00, 0x30, 0xe9, 0xd8,
- 0xe6, 0xe6, 0x26, 0x1b, 0xf2, 0x50, 0xbc, 0x73, 0xaa, 0xcb, 0xac, 0x95, 0x95, 0x4e, 0x56, 0x80, 0x4e, 0x93,
- 0x81, 0x61, 0x50, 0xe0, 0xeb, 0xba, 0x22, 0x03, 0xdb, 0x60, 0x1b, 0xd5, 0xa2, 0x17, 0x6f, 0xf8, 0x76, 0xce,
- 0x15, 0x93, 0x18, 0xc2, 0xfd, 0xa5, 0x92, 0x5c, 0xd9, 0xe3, 0x3b, 0xf5, 0x5b, 0x92, 0xe2, 0xec, 0x8a, 0x57,
- 0xca, 0xa4, 0x39, 0xc6, 0xcc, 0xf6, 0x22, 0x08, 0x2c, 0x0d, 0x53, 0xe5, 0x95, 0xa4, 0x09, 0x64, 0x6f, 0x52,
- 0x59, 0x51, 0xa0, 0xbe, 0xe3, 0x8c, 0x09, 0x9a, 0x3a, 0xe3, 0xe5, 0xeb, 0xa8, 0x05, 0x75, 0xbd, 0x40, 0x08,
- 0xd5, 0x9e, 0x96, 0x7d, 0xe0, 0xc5, 0x79, 0x7a, 0x80, 0xc8, 0x92, 0x05, 0xf0, 0x9e, 0x25, 0xf8, 0x70, 0xdc,
- 0x9c, 0x15, 0xf9, 0x37, 0x0e, 0x4e, 0xfb, 0xeb, 0xeb, 0xa3, 0x3c, 0x26, 0x2b, 0x80, 0xc1, 0x6b, 0x03, 0xe0,
- 0xce, 0xb7, 0x93, 0x12, 0x2d, 0x55, 0x29, 0xab, 0xf9, 0x62, 0x91, 0x83, 0xcd, 0xe4, 0xa5, 0x89, 0xb1, 0x2f,
- 0x89, 0x2f, 0xc5, 0x0f, 0x3c, 0xe1, 0x59, 0xb7, 0xfe, 0x92, 0x0a, 0x2c, 0xfb, 0x4e, 0xe6, 0x09, 0x08, 0x39,
- 0xcd, 0x6f, 0x86, 0x3f, 0x25, 0x16, 0xac, 0x02, 0x91, 0x92, 0x8c, 0xd6, 0x46, 0xec, 0x65, 0x24, 0x7b, 0x42,
- 0x2a, 0x4f, 0x86, 0xc9, 0xf4, 0x93, 0x04, 0xf0, 0xfc, 0x2c, 0x70, 0x01, 0x10, 0xcc, 0x62, 0x82, 0x99, 0x96,
- 0x98, 0x9e, 0x3f, 0x00, 0x5e, 0x46, 0x9a, 0x35, 0x85, 0xde, 0x2e, 0xc3, 0xff, 0x74, 0xa0, 0x13, 0x65, 0xd6,
- 0x77, 0x5e, 0x42, 0x5e, 0x56, 0x35, 0x41, 0x0e, 0x5d, 0xd2, 0x00, 0x64, 0xb6, 0xf9, 0x11, 0x21, 0x57, 0x49,
- 0x3e, 0x3a, 0x73, 0x61, 0x84, 0x3a, 0x4e, 0x6d, 0x65, 0x68, 0xcd, 0xa9, 0xa5, 0x8f, 0x6e, 0x3e, 0x0c, 0xbf,
- 0x52, 0x46, 0x9e, 0x44, 0x7f, 0x42, 0xf2, 0x00, 0x6b, 0xfb, 0x43, 0xd0, 0x8c, 0xf5, 0x5e, 0xb2, 0xeb, 0xe6,
- 0x0a, 0xfd, 0x1e, 0xe2, 0x4a, 0x5c, 0x5d, 0xd0, 0xba, 0x6d, 0xb2, 0x35, 0x83, 0xc2, 0x51, 0x62, 0xfc, 0x79,
- 0x4f, 0xca, 0x93, 0xed, 0xc5, 0x2a, 0x1c, 0xcb, 0x48, 0x99, 0xbc, 0x3b, 0x4e, 0xcb, 0xc7, 0x1a, 0xa4, 0x07,
- 0x3b, 0xe3, 0xad, 0x6c, 0xd1, 0xd4, 0x2a, 0x45, 0xde, 0x43, 0x23, 0x3a, 0xc0, 0x5c, 0x43, 0x9b, 0x43, 0xb1,
- 0xdb, 0xc8, 0xe4, 0xa8, 0xa5, 0xd6, 0xce, 0x01, 0xd5, 0x31, 0xf1, 0x47, 0xaf, 0x69, 0x38, 0x4b, 0x97, 0x54,
- 0x1d, 0xfa, 0xce, 0x96, 0xa4, 0xeb, 0xae, 0xec, 0x29, 0xe8, 0x14, 0x89, 0x67, 0xe0, 0xa2, 0xab, 0x43, 0xf5,
- 0x32, 0x04, 0xb6, 0xa9, 0x09, 0xa5, 0x59, 0x4f, 0x96, 0x54, 0xcd, 0xf0, 0x09, 0xe0, 0x35, 0x58, 0x16, 0x46,
- 0x09, 0x3e, 0x68, 0x6e, 0x8c, 0x93, 0x99, 0x81, 0x3e, 0xe5, 0x34, 0xef, 0x9e, 0x35, 0xe4, 0x3a, 0x19, 0xa0,
- 0x71, 0xd3, 0x73, 0x33, 0x43, 0x90, 0xfe, 0xae, 0x4c, 0x5c, 0xe8, 0x9f, 0x55, 0x05, 0xaf, 0x38, 0xcf, 0x54,
- 0x83, 0x7c, 0xbb, 0x50, 0x91, 0xa6, 0x72, 0x74, 0x31, 0xba, 0x01, 0x62, 0xc1, 0x5f, 0x41, 0x8b, 0x1b, 0x31,
- 0xfd, 0xf9, 0xff, 0x4b, 0x99, 0x77, 0xb8, 0x97, 0x77, 0x4e, 0x36, 0xed, 0x32, 0xd6, 0x91, 0x86, 0x8b, 0x49,
- 0xf8, 0x39, 0x7d, 0x53, 0x3c, 0x86, 0x9a, 0x56, 0x7d, 0xd1, 0xb3, 0x42, 0xde, 0xb1, 0x41, 0xe0, 0x1e, 0xf9,
- 0x30, 0x6f, 0x25, 0xc0, 0x46, 0x36, 0x07, 0x78, 0x67, 0xe2, 0x67, 0x70, 0xec, 0xa8, 0xfe, 0x1f, 0xbf, 0x04,
- 0xbc, 0xf0, 0xb9, 0x67, 0x97, 0xf9, 0x8c, 0x59, 0xda, 0x5c, 0xd3, 0x76, 0x5b, 0x01, 0x90, 0x98, 0x1e, 0xb2,
- 0xa9, 0x5a, 0x05, 0xd2, 0x57, 0x4b, 0x6a, 0x7b, 0x4a, 0xfe, 0x9b, 0xee, 0x4c, 0x70, 0xee, 0xf5, 0xf7, 0x3a,
- 0x02, 0x0a, 0xde, 0x02, 0xbb, 0xa3, 0x70, 0xf4, 0xdf, 0xd6, 0xdb, 0x3e, 0x16, 0xc0, 0x96, 0x12, 0x66, 0x3f,
- 0xa0, 0x62, 0x3d, 0x5f, 0x27, 0xab
+ 0xee, 0x89, 0xf9, 0x20, 0x54, 0x02, 0x82, 0xb6, 0x82, 0x89, 0x08, 0xc4, 0x25, 0x6f, 0x35, 0x01, 0x20, 0x47,
+ 0xf0, 0x24, 0xd1, 0x64, 0xf6, 0x16, 0x21, 0xcb, 0xf6, 0x20, 0x6c, 0xfe, 0x1e, 0xf6, 0x6e, 0x87, 0xc0, 0x28,
+ 0x13, 0x7a, 0x6a, 0x27, 0x7f, 0xff, 0x4b, 0xd3, 0xac, 0x17, 0x25, 0xbf, 0x43, 0x3b, 0xbe, 0x2d, 0x41, 0xb8,
+ 0xc4, 0xa5, 0x91, 0xa3, 0xc0, 0x52, 0xbe, 0x16, 0x34, 0x6f, 0x2f, 0x35, 0x43, 0x8c, 0xcc, 0x5e, 0xbe, 0x48,
+ 0x08, 0x60, 0x0c, 0x83, 0xb7, 0x54, 0x72, 0xc7, 0xf6, 0x18, 0x9c, 0x02, 0xfc, 0x7e, 0x26, 0x52, 0xeb, 0xd7,
+ 0x36, 0x7c, 0xae, 0x7c, 0xb4, 0x17, 0x41, 0xc1, 0x63, 0x7d, 0x59, 0x4d, 0xb6, 0x66, 0xc1, 0xa6, 0x3e, 0x7a,
+ 0x29, 0xc0, 0xd7, 0x17, 0x7d, 0xa8, 0x49, 0x27, 0x02, 0x3e, 0xc4, 0xb4, 0xe3, 0xfd, 0x55, 0xed, 0x66, 0x0a,
+ 0x28, 0x86, 0xbf, 0xa9, 0xff, 0x48, 0xf4, 0x2d, 0xa8, 0x30, 0xdb, 0x37, 0x8d, 0xae, 0xac, 0x7c, 0xa6, 0x00,
+ 0x2a, 0xf3, 0x2c, 0xb9, 0x57, 0x08, 0xd0, 0xaa, 0x6c, 0xa2, 0xc0, 0xb7, 0x26, 0xb7, 0xb2, 0x02, 0x58, 0x20,
+ 0x1c, 0xf4, 0x20, 0xfb, 0x67, 0x69, 0xd9, 0xf3, 0x86, 0x1d, 0x7d, 0xb1, 0xed, 0x4d, 0x75, 0x6b, 0x2e, 0x3f,
+ 0x36, 0xb9, 0xef, 0xda, 0xbd, 0x4a, 0x7f, 0x84, 0xd8, 0xaa, 0xa9, 0xab, 0xd7, 0xde, 0x25, 0x85, 0x36, 0x37,
+ 0x71, 0xc6, 0xe8, 0x4f, 0x72, 0x5a, 0x87, 0xa2, 0xcb, 0x2d, 0x4c, 0x7e, 0x47, 0x61, 0x91, 0xdc, 0xfc, 0x35,
+ 0xe5, 0x61, 0xf3, 0xaa, 0x7b, 0x55, 0x2c, 0xf0, 0x8f, 0xc9, 0x35, 0x29, 0x9e, 0x93, 0x41, 0x21, 0xa0, 0x09,
+ 0x1e, 0x02, 0x3c, 0xc8, 0x48, 0xf3, 0xa3, 0xbf, 0x63, 0xd4, 0x7f, 0xb7, 0x52, 0x22, 0x58, 0x0f, 0x02, 0x86,
+ 0x1b, 0xf7, 0x4d, 0x7e, 0x2a, 0x7c, 0x20, 0x97, 0xf5, 0x4a, 0xaa, 0x8d, 0xa2, 0x8f, 0x9b, 0xb8, 0xc5, 0x2b,
+ 0x02, 0x1a, 0xbd, 0xa1, 0x81, 0x79, 0x1a, 0xb1, 0x0c, 0xc3, 0x60, 0xa1, 0xd8, 0x30, 0xd9, 0x0b, 0x98, 0x3d,
+ 0xe6, 0xb6, 0xf8, 0x64, 0x75, 0xa7, 0xaa, 0x60, 0x2b, 0xcc, 0xc0, 0xa1, 0x35, 0x76, 0x7e, 0x45, 0x25, 0xf5,
+ 0x7f, 0x7e, 0xc5, 0x8d, 0x00, 0x56, 0xb1, 0xe0, 0x59, 0xb0, 0xcc, 0x29, 0x0e, 0x8a, 0x3d, 0x60, 0xff, 0xba,
+ 0xea, 0x80, 0x7a, 0xfc, 0xc5, 0xe7, 0x1b, 0x6b, 0x87, 0x38, 0xe7, 0x26, 0x73, 0x9c, 0x44, 0xdf, 0xb3, 0x7e,
+ 0x51, 0xa3, 0x28, 0x83, 0x8f, 0x9c, 0x06, 0x97, 0x10, 0xfd, 0x22, 0x82, 0x60, 0x31, 0x36, 0x66, 0x2a, 0x23,
+ 0x54, 0xc4, 0x17, 0x58, 0x73, 0x79, 0x70, 0x4f, 0xfa, 0xa3, 0xd1, 0x7c, 0x8e, 0xa8, 0xaf, 0x46, 0xec, 0x2a,
+ 0xa4, 0xe6, 0xa6, 0xa2, 0x4e, 0x09, 0xc3, 0xc2, 0xa6, 0x53, 0x3d, 0x87, 0x6d, 0x2e, 0xfe, 0xbf, 0x47, 0xce,
+ 0x2a, 0xf0, 0x0e, 0xd3, 0x2d, 0x05, 0xfd, 0x2c, 0x0f, 0x04, 0x15, 0xae, 0xca, 0x6c, 0x12, 0xb7, 0x20, 0x0d,
+ 0x06, 0xd5, 0xef, 0xc9, 0x88, 0x2c, 0x93, 0x0a, 0x0e, 0xf7, 0xb6, 0x61, 0xe7, 0xe0, 0x16, 0x30, 0xd1, 0x6e,
+ 0xb9, 0x23, 0xc0, 0x66, 0xd5, 0xae, 0x15, 0xf8, 0x1d, 0x1d, 0x66, 0xbb, 0xe4, 0x30, 0x4c, 0x14, 0x55, 0x47,
+ 0x78, 0x67, 0x99, 0x4f, 0xbf, 0x58, 0xe2, 0x63, 0x0b, 0xa8, 0x0a, 0x67, 0xf4, 0xc6, 0xbd, 0xda, 0x6a, 0x92,
+ 0x67, 0x56, 0x36, 0x0c, 0x89, 0xfc, 0x34, 0x48, 0xbc, 0x7e, 0xcc, 0xb6, 0xa2, 0xfc, 0x31, 0xf9, 0xe9, 0xad,
+ 0x54, 0x32, 0xed, 0x67, 0x91, 0x22, 0x6b, 0x2b, 0x1d, 0x32, 0x0f, 0x02, 0x39, 0x0a, 0xca, 0x5f, 0xcf, 0x53,
+ 0x54, 0x88, 0x28, 0x38, 0xf9, 0x77, 0x7b, 0x40, 0x86, 0x93, 0x9e, 0x58, 0x39, 0xb8, 0x57, 0x60, 0x19, 0x2f,
+ 0xc9, 0xff, 0xe4, 0x2e, 0x24, 0x25, 0x0c, 0x94, 0x1a, 0xbd, 0x0a, 0xdc, 0xb8, 0x32, 0xf4, 0x16, 0xda, 0xea,
+ 0xda, 0x98, 0xdb, 0x47, 0xe6, 0xe1, 0x4f, 0xf8, 0xe0, 0x0c, 0x85, 0xd3, 0x17, 0xbc, 0xae, 0x9e, 0x8a, 0x7c,
+ 0x55, 0xbe, 0xbe, 0xe9, 0x9f, 0x4c, 0xfc, 0x91, 0x5e, 0x57, 0xe4, 0xe5, 0x57, 0x23, 0x5e, 0x71, 0xca, 0xc8,
+ 0x41, 0x78, 0x16, 0x89, 0x1e, 0x71, 0xc0, 0xf5, 0x5c, 0xd1, 0x72, 0x40, 0x23, 0x9d, 0xce, 0xb3, 0x78, 0xf2,
+ 0x37, 0x50, 0x97, 0x3f, 0x8e, 0x89, 0x0c, 0x6a, 0x90, 0xe3, 0x2b, 0x04, 0x82, 0x85, 0x05, 0x65, 0x59, 0xe2,
+ 0x7c, 0x40, 0xe1, 0x29, 0x9e, 0xa6, 0xd5, 0x33, 0x0a, 0x9d, 0xdb, 0x01, 0xe7, 0xc8, 0xe4, 0xc7, 0x0e, 0x24,
+ 0x32, 0xa7, 0x77, 0x5a, 0x22, 0x45, 0x73, 0x1f, 0x23, 0x0e, 0x4f, 0x35, 0x04, 0x44, 0xb5, 0xcc, 0xa4, 0xde,
+ 0x6d, 0xb1, 0x13, 0x6f, 0xb5, 0x75, 0x0e, 0x7f, 0x32, 0x6c, 0x4f, 0xfe, 0x10, 0x10, 0x6d, 0x66, 0xd0, 0x49,
+ 0x36, 0x87, 0xb1, 0xdf, 0x75, 0xb2, 0x7f, 0x68, 0x34, 0xaf, 0xab, 0xb3, 0x2a, 0xfa, 0x19, 0x81, 0x33, 0x85,
+ 0x15, 0x7a, 0x2d, 0x52, 0x24, 0xfe, 0x11, 0x91, 0x95, 0x80, 0x3d, 0xf5, 0x6c, 0x06, 0x3a, 0x3e, 0x50, 0x5a,
+ 0xf7, 0x2b, 0xb4, 0x78, 0xe3, 0xec, 0x6a, 0x3a, 0x0e, 0xf5, 0x61, 0x68, 0x5a, 0x34, 0xda, 0x1b, 0xde, 0x89,
+ 0xa8, 0xe7, 0xec, 0xd0, 0xd4, 0x16, 0x51, 0x2d, 0xad, 0xa9, 0x9c, 0xcf, 0xc9, 0x93, 0x05, 0x95, 0xea, 0x95,
+ 0x74, 0xd5, 0x00, 0x55, 0x90, 0x0c, 0x5c, 0x1d, 0xaa, 0x88, 0xcc, 0xad, 0x82, 0xbc, 0x28, 0xef, 0x1a, 0xf0,
+ 0xb2, 0x32, 0x18, 0x28, 0x71, 0x23, 0x1f, 0x69, 0xf0, 0xeb, 0x96, 0x86, 0x05, 0x6d, 0x2e, 0x0e, 0x4e, 0x14,
+ 0x64, 0x70, 0xa9, 0x35, 0xf4, 0x17, 0x20, 0x23, 0x2c, 0xf1, 0x7a, 0xaf, 0x2b, 0x86, 0x78, 0x9e, 0x37, 0x27,
+ 0x8f, 0xee, 0xb6, 0x55, 0x71, 0xd1, 0x63, 0x48, 0x26, 0x67, 0xd5, 0xf9, 0xdd, 0xb9, 0xbb, 0x75, 0x04, 0x6d,
+ 0x46, 0x3c, 0x72, 0x61, 0x8d, 0x2b, 0x45, 0x27, 0xaf, 0x50, 0xad, 0x7f, 0xde, 0x3f, 0x91, 0xdf, 0x84, 0xf4,
+ 0x29, 0xbf, 0xe5, 0xfd, 0x40, 0x8a, 0xcd, 0x09, 0x8b, 0x20, 0xef, 0xa8, 0xe4, 0xf2, 0xc4, 0xbd, 0x37, 0x93,
+ 0x3b, 0xd1, 0xda, 0x91, 0xc3, 0x65, 0x67, 0xf9, 0x5b, 0x3e, 0xa4, 0xb4, 0xa5, 0x8d, 0xd6, 0x46, 0x0f, 0x42,
+ 0x7e, 0x57, 0xa2, 0xa2, 0x9c, 0x49, 0xc6, 0x1b, 0x78, 0x6c, 0x54, 0x99, 0x39, 0x15, 0x1e, 0x76, 0x07, 0x15,
+ 0x32, 0xf5, 0xc6, 0xe0, 0x1a, 0xd6, 0x81, 0xc9, 0x02, 0x81, 0xb6, 0xf8, 0xd6, 0xb1, 0xc9, 0xed, 0xe1, 0x59,
+ 0x4b, 0xb7, 0xd0, 0x83, 0x4f, 0x37, 0xf4, 0x98, 0xfb, 0xb7, 0xe2, 0x59, 0x15, 0xb1, 0x86, 0x7b, 0xa7, 0xb3,
+ 0xb4, 0x23, 0x92, 0x92, 0x38, 0x35, 0x45, 0xf6, 0x38, 0x84, 0xc1, 0x63, 0xd4, 0x4b, 0x85, 0x57, 0xc6, 0x08,
+ 0x67, 0x3d, 0x9b, 0x0d, 0x16, 0xf0, 0xda, 0xdd, 0xc1, 0x65, 0xff, 0x93, 0x7e, 0xa9, 0xf2, 0xa8, 0x19, 0x10,
+ 0xe5, 0x13, 0xaa, 0x0e, 0x0d, 0xe5, 0xbb, 0x1f, 0x7a, 0xbb, 0x66, 0x93, 0xaa, 0x93, 0xf3, 0xcd, 0x11, 0xc2,
+ 0x61, 0x3c, 0xb5, 0x0e, 0x74, 0x1f, 0xc0, 0x70, 0x15, 0xd1, 0x92, 0x97, 0xb1, 0x03, 0x95, 0x6a, 0xd3, 0xed,
+ 0x5d, 0x06, 0xe7, 0xac, 0xf0, 0x3c, 0xe8, 0x32, 0x44, 0xf4, 0xac, 0xe4, 0x22, 0xf0, 0xda, 0x1c, 0xd3, 0x78,
+ 0x8d, 0xfb, 0xc0, 0x61, 0xb1, 0xd6, 0xf4, 0xbc, 0x26, 0xd7, 0x1c, 0x0b, 0x8d, 0x5f, 0xba, 0xb6, 0xb9, 0xc3,
+ 0xf1, 0xad, 0x5e, 0x59, 0xd3, 0xd7, 0xa2, 0x8d, 0xe1, 0x85, 0x6b, 0x01, 0x10, 0xf3, 0x2e, 0xe8, 0x17, 0xae,
+ 0x0a, 0xdd, 0x88, 0x16, 0xd4, 0x1d, 0xca, 0x1d, 0x37, 0xe9, 0x8e, 0x3d, 0x81, 0x7b, 0xc4, 0xb3, 0xc3, 0x71,
+ 0x32, 0xea, 0x3b, 0xe7, 0x3f, 0x22, 0x8f, 0xed, 0xc0, 0x72, 0x9a, 0x59, 0xa4, 0xc9, 0xba, 0xac, 0x17, 0xc4,
+ 0xc5, 0xef, 0xba, 0xf2, 0x22, 0x42, 0xb2, 0x26, 0x9a, 0x0f, 0x29, 0x11, 0x0b, 0xc0, 0x5d, 0x1a, 0xd6, 0xe0,
+ 0xba, 0xd6, 0xa0, 0x91, 0xeb, 0x0c, 0x93, 0x2d, 0x33, 0x68, 0xf7, 0x3b, 0x4e, 0x12, 0xe0, 0x75, 0xfd, 0xaf,
+ 0xb4, 0x3f, 0x89, 0x5f, 0xdf, 0x29, 0x74, 0x15, 0x2b, 0xbb, 0x53, 0x97, 0x29, 0xbd, 0x8c, 0x58, 0xfa, 0x76,
+ 0x05, 0x27, 0x43, 0xcb, 0xcc, 0x81, 0x79, 0x98, 0xa7, 0x37, 0xbf, 0x47, 0x8e, 0x28, 0x6b, 0xda, 0x8e, 0xc9,
+ 0x8e, 0x60, 0x59, 0xe0, 0x9e, 0x00, 0x71, 0xc4, 0x75, 0x21, 0x6a, 0xcc, 0xb0, 0xa2, 0x2f, 0x4f, 0x1b, 0x37,
+ 0x96, 0x2d, 0x9c, 0xc4, 0xa9, 0x60, 0x1a, 0xd4, 0x16, 0xd0, 0x8a, 0x9d, 0x61, 0x53, 0x67, 0xe2, 0x83, 0xf0,
+ 0xbe, 0xad, 0xe5, 0x1a, 0x76, 0x3c, 0x42, 0x78, 0x99, 0x9d, 0xa4, 0xcf, 0xaa, 0x6a, 0x5b, 0x8d, 0xfd, 0xd5,
+ 0xa4, 0x3f, 0x8a, 0xe7, 0x88, 0x8a, 0x04, 0x4c, 0xdb, 0x90, 0xea, 0x58, 0x16, 0x96, 0xc4, 0x20, 0x20, 0x5b,
+ 0x09, 0xce, 0xb9, 0x8d, 0x1c, 0xc9, 0x47, 0x19, 0x34, 0xbd, 0xd9, 0x62, 0x37, 0x3e, 0x8c, 0x7f, 0x0b, 0xe6,
+ 0xf0, 0xc3, 0xc9, 0x82, 0x5d, 0xb6, 0xa8, 0xe5, 0xfa, 0xe6, 0x15, 0xaa, 0x7b, 0x6a, 0x2a, 0x2e, 0x36, 0x26,
+ 0x2c, 0x37, 0xe6, 0x40, 0x83, 0x6a, 0x72, 0x0e, 0x7f, 0xf4, 0x5c, 0xf4, 0x29, 0x18, 0x1d, 0xf9, 0x99, 0x9c,
+ 0x3f, 0x41, 0x89, 0x54, 0x98, 0xb9, 0x04, 0x81, 0xc8, 0xd5, 0xb8, 0x29, 0x27, 0x09, 0x91, 0x83, 0xfc, 0x64,
+ 0xd1, 0x2a, 0xed, 0x00, 0x18, 0xb2, 0xd2, 0x5c, 0x0b, 0xef, 0xcb, 0x89, 0x56, 0xff, 0xb6, 0x5e, 0xa4, 0x2b,
+ 0xd2, 0x07, 0x42, 0x8e, 0xe8, 0x75, 0xc7, 0x24, 0x13, 0xe5, 0x72, 0x0d, 0xe3, 0xfd, 0xfa, 0x20, 0x32, 0x8d,
+ 0xbe, 0x71, 0xb7, 0xe1, 0xa8, 0x01, 0x7d, 0xeb, 0x5d, 0x86, 0x98, 0x14, 0xe2, 0x94, 0x92, 0x95, 0x1b, 0x34,
+ 0x0d, 0xf4, 0x5a, 0x7f, 0x5d, 0x9c, 0x40, 0xa2, 0x1c, 0x48, 0x98, 0x65, 0x0d, 0xf4, 0x7d, 0xc7, 0x28, 0x88,
+ 0x4c, 0x92, 0xd9, 0x71, 0x31, 0x32, 0xe0, 0xe9, 0x54, 0x46, 0xa8, 0xe0, 0x92, 0xc1, 0x98, 0xfd, 0x32, 0xa7,
+ 0x87, 0xfa, 0xdc, 0x72, 0x48, 0xff, 0xb7, 0xb3, 0x84, 0x0b, 0x3e, 0x57, 0xb8, 0x7b, 0x90, 0x1f, 0x9f, 0xca,
+ 0xff, 0x97, 0xa3, 0xcc, 0x2d, 0x39, 0x68, 0x7e, 0x09, 0xfe, 0xd4, 0xbf, 0x73, 0xdd, 0x95, 0x24, 0x1e, 0xfe,
+ 0x88, 0x9d, 0x1a, 0xc6, 0xc6, 0x32, 0xa4, 0x2a, 0xdc, 0xb6, 0x13, 0x34, 0xe5, 0x99, 0x8f, 0xf9, 0x1e, 0xde,
+ 0xc4, 0x61, 0x83, 0x8e, 0x7d, 0xb2, 0xd9, 0xcc, 0x79, 0xbf, 0x28, 0x70, 0x4f, 0x69, 0xa7, 0xbc, 0xf4, 0x1c,
+ 0xf3, 0xf5, 0xb2, 0xa6, 0xbf, 0xb0, 0xca, 0xeb, 0x63, 0x33, 0xb2, 0x2d, 0x52, 0xb0, 0x4b, 0x4f, 0x13, 0x86,
+ 0x0f, 0x32, 0xac, 0xd4, 0xb2, 0x08, 0x3b, 0xe8, 0x53, 0x32, 0xa6, 0xf1, 0xab, 0x22, 0x0c, 0xee, 0xaf, 0x8c,
+ 0xdb, 0x08, 0x2c, 0x05, 0x1f, 0x22, 0x80, 0x58, 0x0c, 0x20, 0xe6, 0x10, 0x14, 0xf3, 0xeb, 0xd9, 0x36, 0x5f,
+ 0x98, 0x78, 0x73, 0x6e, 0x3a, 0x50, 0x6f, 0x00, 0x87, 0x71, 0xaa, 0x40, 0xc8, 0x5a, 0x4e, 0x9a, 0x69, 0xff,
+ 0xd6, 0x53, 0x72, 0x64, 0x3d, 0xf0, 0xc6, 0x90, 0x2a, 0xf7, 0x50, 0x68, 0xba, 0xae, 0x98, 0xcd, 0x11, 0xbc,
+ 0x65, 0xf3, 0x70, 0xda, 0xa8, 0x0e, 0x16, 0x0e, 0xe3, 0x59, 0xb5, 0x02, 0x37, 0x71, 0x7a, 0x1e, 0xad, 0xbf,
+ 0x0a, 0x87, 0xbd, 0xf6, 0x61, 0xcd, 0x4f, 0x85, 0x83, 0xec, 0x68, 0x2b, 0xe1, 0x09, 0x1f, 0xb9, 0xc9, 0xdf,
+ 0x30, 0x5d, 0xef, 0xf2, 0x53, 0x4d, 0x67, 0x29, 0xf8, 0xa5, 0x5f, 0xf9, 0xcb, 0x7f, 0x2c, 0xac, 0xa6, 0xd0,
+ 0xde, 0x15, 0x71, 0xe2, 0x43, 0x54, 0x5f, 0x75, 0x8f, 0x98, 0x42, 0x0d, 0x87, 0xb1, 0x1e, 0xb6, 0xa9, 0x0d,
+ 0xd5, 0x73, 0xd9, 0x14, 0x4f, 0xb0, 0x0f, 0x6d, 0x6a, 0xe9, 0x4c, 0xed, 0x56, 0xac, 0x87, 0x7a, 0x87, 0xb1,
+ 0xe6, 0x98, 0x13, 0x10, 0xbd, 0x05, 0x9b, 0xc6, 0x56, 0xf5, 0x5e, 0x9c, 0xdc, 0x92, 0x9e, 0xa5, 0x96, 0x09,
+ 0x6d, 0x9d, 0x07, 0x31, 0xac, 0xa0, 0x87, 0x43, 0x0e, 0x3f, 0x9d, 0xd5, 0x1a, 0x87, 0x89, 0xa2, 0x68, 0x7f,
+ 0xfa, 0xdb, 0x3c, 0x74, 0x06, 0x3d, 0xdb, 0xe7, 0x8e, 0xff, 0x46, 0x05, 0x57, 0xe2, 0xdd, 0x12, 0x97, 0x9e,
+ 0xa6, 0x1e, 0x3f, 0x54, 0x2c, 0xbf, 0x1c, 0x1a, 0xb0, 0xb8, 0x4f, 0x4e, 0x35, 0xcd, 0x3a, 0xfd, 0x0b, 0x1f,
+ 0x50, 0x49, 0x9f, 0x13, 0xd7, 0xf8, 0xee, 0x41, 0x77, 0x6c, 0xe5, 0xbe, 0x3a, 0xdf, 0xab, 0xf1, 0x9c, 0x27,
+ 0x42, 0xa7, 0x90, 0x68, 0x44, 0xee, 0x69, 0x7c, 0x24, 0xb4, 0x3b, 0x92, 0xfe, 0xaa, 0x6d, 0x1a, 0x36, 0x81,
+ 0x36, 0x4c, 0x17, 0xc6, 0xa1, 0xe1, 0x8d, 0xe6, 0xb7, 0x56, 0x61, 0xd5, 0xd8, 0x9d, 0x14, 0x11, 0xae, 0x9a,
+ 0x0f, 0x1d, 0x53, 0x74, 0xa0, 0x46, 0x47, 0xe1, 0x32, 0x78, 0x9a, 0x5b, 0x96, 0xf8, 0x4c, 0x5d, 0x6a, 0x23,
+ 0x31, 0x3e, 0x89, 0xe8, 0x30, 0xd4, 0x32, 0x84, 0xda, 0x2b, 0x6c, 0x13, 0x6c, 0x72, 0xe2, 0x3d, 0x1a, 0x8a,
+ 0x7d, 0x23, 0xed, 0x07, 0x24, 0x7f, 0xe9, 0xd9, 0x46, 0x15, 0xad, 0xcd, 0x7b, 0x39, 0x26, 0x8d, 0x56, 0xa1,
+ 0xcf, 0xc8, 0x10, 0x9d, 0x95, 0x0a, 0x41, 0x9f, 0x97, 0x93, 0xd5, 0xc1, 0xb2, 0x3d, 0xd2, 0xd1, 0xac, 0xce,
+ 0x7e, 0xae, 0x83, 0x76, 0xc6, 0x19, 0x35, 0x6b, 0x3e, 0xcf, 0xee, 0xcb, 0x7f, 0xd8, 0x5c, 0x17, 0x2e, 0xae,
+ 0xb2, 0x06, 0xd2, 0xd8, 0x3a, 0xdb, 0x14, 0xb9, 0x7b, 0x27, 0x1b, 0x4b, 0x44, 0x9e, 0xde, 0xff, 0xa5, 0x47,
+ 0x72, 0x3b, 0xb0, 0xa8, 0x27, 0xde, 0xf1, 0x21, 0x47, 0xc6, 0xa1, 0x2c, 0xb6, 0x19, 0x09, 0x29, 0xed, 0xa0,
+ 0xa9, 0x49, 0x95, 0x09, 0x39, 0xaf, 0x3a, 0xbc, 0x7e, 0xee, 0x42, 0x70, 0xdb, 0xe9, 0x78, 0xfc, 0x3f, 0x8d,
+ 0xb6, 0x8b, 0x49, 0x6e, 0xf7, 0x01, 0x32, 0x7c, 0xee, 0x55, 0x4a, 0xc8, 0x15, 0x62, 0x66, 0x23, 0x6d, 0xdb,
+ 0xb4, 0x18, 0x80, 0x3d, 0x26, 0x85, 0x0a, 0xf5, 0xca, 0xe5, 0x95, 0xf8, 0x88, 0x01, 0x22, 0x5d, 0x03, 0x0d,
+ 0x41, 0x08, 0xf0, 0x30, 0x35, 0x28, 0xcf, 0xc2, 0x73, 0xcd, 0xb1, 0x3e, 0xb3, 0xb6, 0x29, 0x03, 0xe4, 0x72,
+ 0xb6, 0x09, 0x46, 0x0d, 0xe3, 0x32, 0x3e, 0x2a, 0xab, 0x8e, 0x96, 0xa4, 0x21, 0x37, 0x99, 0x94, 0xda, 0x08,
+ 0xd4, 0x44, 0x9f, 0xfc, 0xdf, 0x5e, 0x77, 0xe0, 0x82, 0xda, 0xff, 0x84, 0xfe, 0x3c, 0xf6, 0x1b, 0x95, 0x5e,
+ 0x3c, 0x83, 0x6d, 0xb0, 0xdb, 0xea, 0xcd, 0x72, 0xa0, 0x28, 0x93, 0xd9, 0x2e, 0xfe, 0xd1, 0x37, 0xd2, 0xcc,
+ 0xe9, 0xc3, 0x6a, 0x0e, 0x15, 0x1a, 0x24, 0xae, 0x50, 0x66, 0x0f, 0xec, 0x10, 0x8e, 0x8d, 0x3a, 0xbd, 0x53,
+ 0x72, 0x33, 0x38, 0xc7, 0x0f, 0x09, 0x17, 0xe9, 0x8d, 0xcd, 0x2d, 0xff, 0xde, 0xed, 0x3c, 0x4a, 0x1f, 0x72,
+ 0x7a, 0x0a, 0xbb, 0xb7, 0xcb, 0xba, 0x94, 0x18, 0x23, 0xac, 0x8b, 0x37, 0x6a, 0x98, 0xaf, 0x60, 0x05, 0xf6,
+ 0x16, 0xc7, 0x31, 0x1e, 0x2f, 0x3f, 0xc6, 0xf1, 0x60, 0x26, 0x2a, 0x02, 0x10, 0x62, 0xe6, 0x12, 0x2b, 0x40,
+ 0xfe, 0x41, 0x48, 0xb1, 0xb4, 0x84, 0x75, 0x95, 0x06, 0xbe, 0x86, 0x20, 0x64, 0xb5, 0x78, 0x54, 0x22, 0x58,
+ 0x01, 0x2b, 0x09, 0x61, 0xdb, 0x40, 0x7c, 0xc2, 0xb1, 0x62, 0x37, 0x6a, 0x30, 0x88, 0xf0, 0x8e, 0x81, 0x71,
+ 0x5b, 0x99, 0x85, 0xf1, 0xf4, 0xe0, 0xce, 0x29, 0x76, 0x3c, 0x44, 0x27, 0xd2, 0x16, 0x38, 0x45, 0xe5, 0xb3,
+ 0x6d, 0xf2, 0xda, 0x93, 0x65, 0xa0, 0x4e, 0x99, 0xa3, 0x8f, 0x1c, 0x7e, 0xcb, 0xd6, 0xa3, 0xd4, 0x44, 0x79,
+ 0xb9, 0xeb, 0x0d, 0x55, 0x63, 0x9c, 0xce, 0x37, 0x4d, 0xd5, 0x5c, 0xd1, 0xad, 0x9e, 0xac, 0x27, 0xd3, 0xd3,
+ 0x52, 0x6e, 0x01, 0x30, 0x47, 0x43, 0x18, 0x9a, 0x5f, 0x51, 0x39, 0xa2, 0xbf, 0x53, 0x05, 0x8b, 0x30, 0x66,
+ 0x6b, 0xc2, 0xdb, 0x44, 0xe4, 0x4e, 0x67, 0xa4, 0xb5, 0xcf, 0x1b, 0x5b, 0xac, 0x65, 0xbf, 0x31, 0x4f, 0x99,
+ 0xa3, 0x73, 0xcd, 0x8a, 0x1d, 0x41, 0x52, 0xe8, 0x23, 0x75, 0x2f, 0x1e, 0xb4, 0x8d, 0x9e, 0x15, 0xe3, 0x11,
+ 0x9f, 0xbd, 0xea, 0x53, 0xce, 0x7b, 0xe4, 0xd9, 0x0c, 0xe9, 0x31, 0xb1, 0x4d, 0xd5, 0x89, 0x5b, 0x4b, 0x72,
+ 0x78, 0x4f, 0xc2, 0x2e, 0x23, 0xd7, 0xba, 0xf4, 0xbd, 0x12, 0x34, 0xfd, 0x8d, 0x6c, 0x36, 0xff, 0x81, 0x62,
+ 0x9f, 0x7a, 0x2e, 0xf9, 0xd8, 0x5c, 0x35, 0x50, 0x0b, 0x4b, 0x6f, 0x95, 0x7e, 0xae, 0xce, 0x00, 0x0c, 0x05,
+ 0x1f, 0x45, 0x0e, 0xa3, 0x7b, 0x71, 0x00, 0x89, 0x78, 0x90, 0xeb, 0xcd, 0xa0, 0x30, 0x54, 0xaa, 0x1d, 0x40,
+ 0x6b, 0xa7, 0x38, 0x7f, 0xaf, 0x2a, 0x52, 0xd4, 0x90, 0xb3, 0x43, 0x0e, 0x15, 0xd5, 0xf1, 0x87, 0xe9, 0x81,
+ 0x3d, 0x46, 0x9b, 0x07, 0xad, 0xce, 0x03, 0x4a, 0x58, 0x49, 0x4c, 0x7b, 0x17, 0x27, 0x0c, 0xc9, 0xca, 0xb0,
+ 0x5b, 0x0d, 0xaf, 0x3a, 0x32, 0xf4, 0x0f, 0x74, 0x90, 0xca, 0xb0, 0xd2, 0x35, 0x71, 0xf0, 0x78, 0xd4, 0xa1,
+ 0xfe, 0x5c, 0x69, 0x1f, 0xc0, 0x6e, 0xb6, 0x67, 0x1f, 0xc7, 0x53, 0xd3, 0x8f, 0x83, 0xcc, 0xad, 0xb3, 0xff,
+ 0x4a, 0x3c, 0x06, 0x43, 0xff, 0x2b, 0x1a, 0x67, 0xe2, 0x10, 0x89, 0x91, 0xa7, 0x8b, 0x52, 0xb1, 0xaa, 0x0e,
+ 0xd2, 0x57, 0x6b, 0x19, 0x20, 0x8c, 0xc5, 0x3f, 0x96, 0x58, 0xd8, 0x92, 0x59, 0x78, 0x64, 0xf5, 0xba, 0x2d,
+ 0x9c, 0x93, 0xed, 0x93, 0x8c, 0x37, 0x41, 0xe3, 0x33, 0xe4, 0x89, 0xcb, 0x91, 0x60, 0xbe, 0x74, 0xce, 0x7f,
+ 0x10, 0x19, 0xd2, 0x7b, 0x4d, 0x2d, 0x3c, 0x0f, 0x6c, 0xc1, 0x46, 0xf6, 0xb8, 0xb8, 0x5f, 0x0c, 0x18, 0x7a,
+ 0xed, 0x3c, 0x68, 0x44, 0xb7, 0x22, 0xd6, 0x98, 0x53, 0xec, 0x29, 0x44, 0xe6, 0x34, 0x0e, 0x67, 0xd0, 0x79,
+ 0x16, 0x20, 0x7a, 0xc5, 0x6d, 0xa1, 0xe3, 0xcd, 0xb5, 0x90, 0xdb, 0x52, 0xc7, 0x1d, 0x67, 0x97, 0xba, 0xb2,
+ 0x69, 0x68, 0x7c, 0x52, 0x83, 0xf2, 0xa0, 0x69, 0x89, 0x7f, 0xa0, 0x1a, 0x70, 0x54, 0x19, 0x8c, 0xbf, 0x2f,
+ 0x9d, 0x35, 0x80, 0x56, 0x12, 0x7e, 0x85, 0xa2, 0x08, 0xa9, 0x9f, 0x8e, 0xb1, 0x46, 0x60, 0xaf, 0x8e, 0x0a,
+ 0x1b, 0x0c, 0x94, 0xcd, 0x4e, 0x3d, 0x2d, 0x7d, 0x46, 0x3c, 0x06, 0xbc, 0x0b, 0xaf, 0x69, 0x6b, 0xd7, 0xc4,
+ 0x36, 0x4d, 0x1e, 0x52, 0xf9, 0x46, 0xd1, 0x5a, 0x3b, 0x18, 0x09, 0x57, 0x73, 0x47, 0xe9, 0xdd, 0xed, 0xa2,
+ 0xdc, 0x48, 0x10, 0x89, 0x01, 0x82, 0xac, 0xec, 0x3f, 0xad, 0xc0, 0xdd, 0x31, 0xcb, 0x3b, 0x50, 0x5c, 0x94,
+ 0x69, 0x48, 0xad, 0x5a, 0xa2, 0x64, 0x64, 0x82, 0x11, 0x6d, 0xad, 0xe7, 0x63, 0x1c, 0x98, 0x9f, 0xf5, 0xf3,
+ 0x1c, 0x2a, 0x8f, 0x4a, 0x0a, 0x9d, 0xa1, 0x8d, 0x04, 0x0d, 0x74, 0x95, 0x1b, 0x14, 0xd9, 0xa2, 0xe6, 0xa4,
+ 0x3a, 0x83, 0xc3, 0xc2, 0x35, 0x1a, 0xe3, 0x24, 0x0a, 0x0b, 0x05, 0xd3, 0xc0, 0x69, 0xa1, 0xdc, 0x88, 0x67,
+ 0x8f, 0xcb, 0xba, 0xd6, 0xa8, 0xee, 0x5f, 0xd5, 0x9f, 0xff, 0xc9, 0xbb, 0xe1, 0x6d, 0xb8, 0xa4, 0x61, 0x29,
+ 0xcf, 0x4a, 0x25, 0x9a, 0xa4, 0xac, 0xe3, 0x0a, 0x6a, 0xb3, 0x7c, 0xeb, 0x26, 0x26, 0xa2, 0x11, 0x16, 0x09,
+ 0xfb, 0x82, 0x39, 0x73, 0xac, 0xce, 0x2c, 0x8b, 0x1b, 0x64, 0xf3, 0x39, 0x2f, 0xf6, 0xc4, 0xcf, 0x4f, 0xfc,
+ 0x88, 0xdd, 0xfa, 0xd7, 0x20, 0x17, 0x40, 0x6d, 0x05, 0xdb, 0x75, 0xbf, 0x7c, 0x2f, 0xb0, 0x76, 0x4c, 0xc4,
+ 0xc7, 0x06, 0xac, 0x60, 0x54, 0x75, 0x2b, 0x65, 0xf3, 0x40, 0x89, 0x17, 0xe6, 0xa3, 0xd3, 0x8d, 0x53, 0xd8,
+ 0xf2, 0x34, 0x92, 0xb1, 0xc0, 0x81, 0xb2, 0xb4, 0xdf, 0x06, 0x09, 0xb4, 0xcf, 0x02, 0x46, 0x13, 0x7b, 0xbf,
+ 0xdb, 0xdc, 0xe1, 0x93, 0xcd, 0x54, 0x99, 0x4c, 0x40, 0xe8, 0x8b, 0x48, 0xa9, 0x04, 0xc5, 0x6c, 0xd3, 0x3f,
+ 0x9b, 0x7c, 0xe5, 0x8b, 0xd7, 0x14, 0xbc, 0xdb, 0xe6, 0x23, 0x38, 0xd5, 0x3f, 0x17, 0x5c, 0x13, 0x4f, 0x4f,
+ 0x5d, 0xd3, 0x9a, 0xbc, 0xfc, 0xa9, 0xcb, 0xe3, 0x8c, 0x1f, 0x3e, 0xb1, 0x7d, 0x2e, 0xb1, 0xe5, 0x78, 0x34,
+ 0xcd, 0xdf, 0xdb, 0x05, 0x12, 0xc5, 0xc3, 0xf2, 0x49, 0xf4, 0x34, 0xee, 0x0c, 0xa7, 0x08, 0x07, 0x75, 0xdf,
+ 0xc5, 0x0c, 0x73, 0xce, 0xc2, 0xd4, 0x4c, 0x82, 0x56, 0x5b, 0xe7, 0xf8, 0xe3, 0xe5, 0x00, 0xaa, 0x67, 0xa9,
+ 0x71, 0xf8, 0x2d, 0x4e, 0xc4, 0xc5, 0x1a, 0x96, 0x92, 0xf6, 0x9d, 0xd6, 0xce, 0x52, 0x6e, 0x01, 0x77, 0x47,
+ 0x29, 0xaf, 0x04, 0x56, 0x23, 0x63, 0x84, 0x16, 0xb9, 0x7b, 0xc5, 0x25, 0x7b, 0x7a, 0x43, 0xb2, 0x0b, 0x16,
+ 0xa9, 0x62, 0x30, 0xb7, 0x56, 0x77, 0x77, 0xaa, 0x44, 0x2f, 0x9a, 0x18, 0x6a, 0x16, 0xa8, 0x39, 0xd9, 0xf3,
+ 0xc4, 0x8b, 0x17, 0x65, 0x1b, 0x43, 0xc5, 0x36, 0x82, 0x5d, 0xa1, 0x60, 0x57, 0x21, 0xdd, 0x15, 0x62, 0x9a,
+ 0xa3, 0x90, 0x51, 0x8b, 0xbb, 0x70, 0xe3, 0x95, 0xea, 0x37, 0x72, 0x4e, 0xd0, 0x22, 0x15, 0xd7, 0xdb, 0x00,
+ 0x63, 0xaf, 0x41, 0x9b, 0xd5, 0x90, 0x6b, 0x2c, 0x6f, 0xe1, 0xbe, 0x2f, 0xf4, 0xee, 0xd1, 0xbe, 0x39, 0xae,
+ 0x3b, 0x25, 0x23, 0x22, 0x03, 0x80, 0x85, 0x7a, 0xd9, 0x31, 0xb6, 0x31, 0x9b, 0x03, 0xd6, 0x28, 0xa6, 0xdc,
+ 0xf4, 0x2a, 0x72, 0x96, 0x70, 0xce, 0x4a, 0x2b, 0xfc, 0xdc, 0xf3, 0x58, 0x20, 0x8e, 0xee, 0x5e, 0xbb, 0x64,
+ 0x8b, 0x58, 0x04, 0xca, 0x62, 0x4d, 0x36, 0xa9, 0x97, 0x87, 0xa7, 0xf1, 0x19, 0x91, 0xa4, 0xd0, 0x3e, 0xf4,
+ 0x21, 0x1b, 0x1a, 0xe5, 0x4a, 0x04, 0x65, 0x63, 0xdd, 0xc6, 0x9d, 0x47, 0x70, 0x11, 0x40, 0x45, 0x78, 0xed,
+ 0x14, 0xf6, 0x7d, 0x64, 0xa9, 0x83, 0x0f, 0x3c, 0xec, 0x72, 0xf2, 0xa3, 0xd4, 0xcf, 0x63, 0x29, 0xf0, 0x6c,
+ 0xe3, 0xde, 0xbe, 0x6e, 0xd6, 0x74, 0x35, 0x5c, 0x72, 0xbc, 0x0e, 0x19, 0x7c, 0xd8, 0x17, 0x1b, 0x42, 0x3f,
+ 0x75, 0xd4, 0x69, 0x52, 0xc8, 0x8f, 0xa0, 0xfc, 0x50, 0x1d, 0x6d, 0x5e, 0x1d, 0x9a, 0x80, 0xd7, 0xf6, 0x60,
+ 0x96, 0x01, 0x38, 0xbb
};
// context = simple_context_zh
diff --git a/demo/mcu/stm32f769/stm32f769i-disco/Src/main.c b/demo/mcu/stm32f769/stm32f769i-disco/Src/main.c
index 0ce2b5c1a..e8c300fee 100644
--- a/demo/mcu/stm32f769/stm32f769i-disco/Src/main.c
+++ b/demo/mcu/stm32f769/stm32f769i-disco/Src/main.c
@@ -61,8 +61,14 @@ static void inference_callback(pv_inference_t *inference) {
}
static void error_handler(void) {
- while (true)
- ;
+ printf("\r\n");
+ while (true);
+}
+
+void print_error_message(char **message_stack, int32_t message_stack_depth) {
+ for (int32_t i = 0; i < message_stack_depth; i++) {
+ printf("[%ld] %s\n", i, message_stack[i]);
+ }
}
int main(void) {
@@ -98,6 +104,11 @@ int main(void) {
pv_picovoice_t *handle = NULL;
+ char **message_stack = NULL;
+ int32_t message_stack_depth = 0;
+ pv_status_t error_status;
+
+
status = pv_picovoice_init(
ACCESS_KEY,
MEMORY_BUFFER_SIZE,
@@ -115,6 +126,16 @@ int main(void) {
&handle);
if (status != PV_STATUS_SUCCESS) {
printf("Picovoice init failed with '%s'", pv_status_to_string(status));
+
+ error_status = pv_get_error_stack(&message_stack, &message_stack_depth);
+ if (error_status != PV_STATUS_SUCCESS) {
+ printf("Unable to get Picovoice error state with '%s':\n", pv_status_to_string(error_status));
+ error_handler();
+ }
+
+ print_error_message(message_stack, message_stack_depth);
+ pv_free_error_stack(message_stack);
+
error_handler();
}
diff --git a/demo/nodejs/package.json b/demo/nodejs/package.json
index f06916fa2..7fb32b7f4 100644
--- a/demo/nodejs/package.json
+++ b/demo/nodejs/package.json
@@ -1,6 +1,6 @@
{
"name": "@picovoice/picovoice-node-demo",
- "version": "2.2.2",
+ "version": "3.0.0",
"description": "Picovoice SDK for NodeJS file-based and microphone demos",
"scripts": {
"file": "node file.js",
@@ -16,8 +16,8 @@
"author": "Picovoice Inc.",
"license": "Apache-2.0",
"dependencies": {
- "@picovoice/picovoice-node": "2.2.1",
- "@picovoice/pvrecorder-node": "1.2.1",
+ "@picovoice/picovoice-node": "~3.0.0",
+ "@picovoice/pvrecorder-node": "~1.2.1",
"commander": "^6.1.0",
"wavefile": "^11.0.0"
},
@@ -29,7 +29,7 @@
"directory": "demo/nodejs"
},
"engines": {
- "node": ">=12.0.0"
+ "node": ">=16.0.0"
},
"cpu": [
"!ia32",
diff --git a/demo/nodejs/yarn.lock b/demo/nodejs/yarn.lock
index 05209d296..aa52c6613 100644
--- a/demo/nodejs/yarn.lock
+++ b/demo/nodejs/yarn.lock
@@ -2,28 +2,28 @@
# yarn lockfile v1
-"@picovoice/picovoice-node@2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@picovoice/picovoice-node/-/picovoice-node-2.2.1.tgz#62052b18ae276d3fa9467239221182d1755e4165"
- integrity sha512-Ml9tFlJGrep4Dqvk07Nu3JCpCWkJSRmE/bKbO2c1meWRltOwqP//W78R/QiC30zv763nWGKGPwXh95Lvm7YYkA==
+"@picovoice/picovoice-node@~3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/picovoice-node/-/picovoice-node-3.0.0.tgz#6c17d5c7b4ea1885f1f2ca0d11ad46d6e3eaaf3c"
+ integrity sha512-qeWmLg5e9rbLc5a/mRR3h3EjuILemMXHzRxNGwtMTU7StVvVAbHbapJ0pVV+y8dKqEuo6PdU8NpnN7WwJ3KOfg==
dependencies:
- "@picovoice/porcupine-node" "=2.2.1"
- "@picovoice/rhino-node" "=2.2.1"
+ "@picovoice/porcupine-node" "=3.0.0"
+ "@picovoice/rhino-node" "=3.0.1"
-"@picovoice/porcupine-node@=2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@picovoice/porcupine-node/-/porcupine-node-2.2.1.tgz#5055d87c0b7e3039c8835fceb972dde4ea2c27ae"
- integrity sha512-+sc3uY2ZdZabUW7kYZ2wDezg2CZYy729Xy387fMuNw8fa2aoHuU9pcpaUR2KfLDRC+s2hbWdAqnxjCuSvt/NYw==
+"@picovoice/porcupine-node@=3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/porcupine-node/-/porcupine-node-3.0.0.tgz#576fcfdc8a6b98430022e3650b590b5c274b1468"
+ integrity sha512-wkX5+2qmnR7ea9N1/vJZOGdx0W4cBfAABisX78yTAI6XXZivL8UCT3UJcrAMHoXeFN252flyDrRbqA1oH2uHzQ==
-"@picovoice/pvrecorder-node@1.2.1":
+"@picovoice/pvrecorder-node@~1.2.1":
version "1.2.1"
resolved "https://registry.yarnpkg.com/@picovoice/pvrecorder-node/-/pvrecorder-node-1.2.1.tgz#8e112ecc7a4836aa4fa92d62ac7942d8a2366db8"
integrity sha512-7TtRMh04PSVn542Oq1v/MGLFuNPdUrrv+f7qbCGOWRc8y6ox+FATigdQqLRbRey4kZWf40dNHQFdVPCk5ZcXnQ==
-"@picovoice/rhino-node@=2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@picovoice/rhino-node/-/rhino-node-2.2.1.tgz#83c420736d54314c7a842845096873be8c65fb0e"
- integrity sha512-Alh3FrfWxzu4k2rrkls1YZGZVuKHfXiRtXJXh5IBDosvSgBFKYQ/eCclTw/reSr03Cl7BmZaBmISmGIoU1Hwqg==
+"@picovoice/rhino-node@=3.0.1":
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/@picovoice/rhino-node/-/rhino-node-3.0.1.tgz#56e2a736f12dd67ccce08b6f6fdb012899df5e7b"
+ integrity sha512-grsgERwVqaptIp3oHHgcBeUKWmqlXKBimu+Fuzh4ToNmJ13Q6PChtAQsH9kGDqGJyS6BjcdCDcLPP7pX2YoJeQ==
commander@^6.1.0:
version "6.2.1"
diff --git a/demo/python/picovoice_demo_file.py b/demo/python/picovoice_demo_file.py
index b0ccb9957..8aa852715 100644
--- a/demo/python/picovoice_demo_file.py
+++ b/demo/python/picovoice_demo_file.py
@@ -147,7 +147,7 @@ def inference_callback(inference):
require_endpoint=require_endpoint)
except PicovoiceInvalidArgumentError as e:
print("One or more arguments provided to Picovoice is invalid: ", args)
- print("If all other arguments seem valid, ensure that '%s' is a valid AccessKey" % args.access_key)
+ print(e)
raise e
except PicovoiceActivationError as e:
print("AccessKey activation error")
diff --git a/demo/python/picovoice_demo_mic.py b/demo/python/picovoice_demo_mic.py
index b73792c7f..7d534788b 100644
--- a/demo/python/picovoice_demo_mic.py
+++ b/demo/python/picovoice_demo_mic.py
@@ -134,7 +134,7 @@ def inference_callback(inference):
require_endpoint=require_endpoint)
except PicovoiceInvalidArgumentError as e:
print("One or more arguments provided to Picovoice is invalid: ", args)
- print("If all other arguments seem valid, ensure that '%s' is a valid AccessKey" % args.access_key)
+ print(e)
raise e
except PicovoiceActivationError as e:
print("AccessKey activation error")
diff --git a/demo/python/requirements.txt b/demo/python/requirements.txt
index 807b30980..e378f906a 100644
--- a/demo/python/requirements.txt
+++ b/demo/python/requirements.txt
@@ -1,2 +1,2 @@
-picovoice==2.2.1
+picovoice==3.0.0
pvrecorder==1.2.1
diff --git a/demo/python/setup.py b/demo/python/setup.py
index 57e8219be..61e6b2f97 100644
--- a/demo/python/setup.py
+++ b/demo/python/setup.py
@@ -39,7 +39,7 @@
setuptools.setup(
name="picovoicedemo",
- version="2.2.4",
+ version="3.0.0",
author="Picovoice Inc.",
author_email="hello@picovoice.ai",
description="Picovoice demos.",
@@ -47,7 +47,7 @@
long_description_content_type="text/markdown",
url="https://github.com/Picovoice/picovoice",
packages=["picovoicedemo"],
- install_requires=["picovoice==2.2.1", "pvrecorder==1.2.1"],
+ install_requires=["picovoice==3.0.0", "pvrecorder==1.2.1"],
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
diff --git a/demo/react-native-clock/ios/Podfile.lock b/demo/react-native-clock/ios/Podfile.lock
index 1610069bb..1e949151b 100644
--- a/demo/react-native-clock/ios/Podfile.lock
+++ b/demo/react-native-clock/ios/Podfile.lock
@@ -12,10 +12,10 @@ PODS:
- fmt (6.2.1)
- glog (0.3.5)
- ios-voice-processor (1.1.0)
- - Porcupine-iOS (2.2.1):
+ - Porcupine-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - porcupine-react-native (2.2.1):
- - Porcupine-iOS (~> 2.2.1)
+ - porcupine-react-native (3.0.0):
+ - Porcupine-iOS (~> 3.0.0)
- React
- RCT-Folly (2021.06.28.00-v2):
- boost
@@ -224,7 +224,7 @@ PODS:
- React-jsinspector (0.68.7)
- React-logger (0.68.7):
- glog
- - react-native-notification-sounds (0.5.5):
+ - react-native-notification-sounds (0.5.8):
- React
- react-native-voice-processor (1.2.0):
- ios-voice-processor (~> 1.1.0)
@@ -294,11 +294,11 @@ PODS:
- React-jsi (= 0.68.7)
- React-logger (= 0.68.7)
- React-perflogger (= 0.68.7)
- - Rhino-iOS (2.2.2):
+ - Rhino-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - rhino-react-native (2.2.2):
+ - rhino-react-native (3.0.0):
- React
- - Rhino-iOS (~> 2.2.2)
+ - Rhino-iOS (~> 3.0.0)
- RNVectorIcons (8.1.0):
- React-Core
- Yoga (1.14.0)
@@ -432,8 +432,8 @@ SPEC CHECKSUMS:
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
glog: 476ee3e89abb49e07f822b48323c51c57124b572
ios-voice-processor: 8e32d7f980a06d392d128ef1cd19cf6ddcaca3c1
- Porcupine-iOS: df8e4a63d787b6c16bd5f988fd0f2c29a249a4bd
- porcupine-react-native: c0ca3b5112d55af5aa2c2ca0267e082e2dfb4dda
+ Porcupine-iOS: 517158e02ac294dda15b713a3c6f74a9e877090c
+ porcupine-react-native: e74ff3c50f8a1ec956b8aa7a8797821b0f9e8b85
RCT-Folly: 4d8508a426467c48885f1151029bc15fa5d7b3b8
RCTRequired: 530916cd48c5f7cf1fc16966ad5ea01638ca4799
RCTTypeSafety: 5fb4cb3080efd582e5563c3e9a0e459fc51396c5
@@ -447,7 +447,7 @@ SPEC CHECKSUMS:
React-jsiexecutor: 7c0bd030a84f2ec446fb104b7735af2f5ed11eea
React-jsinspector: cab4d37ebde480f84c79ac89568abbf76b916c3e
React-logger: b75b80500ea80457b2cf169427d66de986cdcb29
- react-native-notification-sounds: da78c828fe1bcbb92d8b505d5261890ed315ff39
+ react-native-notification-sounds: 739f8adc4010138e4cd72fd4e3220e7df758473f
react-native-voice-processor: aefb0845641c7d67dd47e69606ba7ebb38aab5cd
React-perflogger: 44436b315d757100a53dfb1ab6b77c58cb646d7d
React-RCTActionSheet: 1888a229684762c40cc96c7ff4716f809655dc09
@@ -461,8 +461,8 @@ SPEC CHECKSUMS:
React-RCTVibration: 2a4bf853281d4981ab471509102300d3c9e6c693
React-runtimeexecutor: 18932e685b4893be88d1efc18f5f8ca1c9cd39d8
ReactCommon: 29bb6fad3242e30e9d049bc9d592736fa3da9e50
- Rhino-iOS: 0fad86b28d35f67ccb6bd0a2efbbcc0d88b05124
- rhino-react-native: b097ae57f636a07f72cd80b5079557ee09721792
+ Rhino-iOS: b92978104bfad32da25b9eeaa4f0628b86ffcee9
+ rhino-react-native: 3954bad7e47e21256a0874999cbb0d2acf599186
RNVectorIcons: 31cebfcf94e8cf8686eb5303ae0357da64d7a5a4
Yoga: 0bc4b37c3b8a345336ff601e2cf7d9704bab7e93
diff --git a/demo/react-native-clock/package.json b/demo/react-native-clock/package.json
index 704080efd..68fd0ce60 100644
--- a/demo/react-native-clock/package.json
+++ b/demo/react-native-clock/package.json
@@ -1,6 +1,6 @@
{
"name": "react-native-clock",
- "version": "2.2.0",
+ "version": "3.0.0",
"private": true,
"scripts": {
"copy": "node copy.js",
@@ -14,10 +14,10 @@
"ios-bundle": "react-native bundle --dev false --platform ios --entry-file index.js --bundle-output ios/app.jsbundle"
},
"dependencies": {
- "@picovoice/picovoice-react-native": "=2.2.2",
- "@picovoice/porcupine-react-native": "=2.2.1",
- "@picovoice/react-native-voice-processor": "=1.2.0",
- "@picovoice/rhino-react-native": "=2.2.2",
+ "@picovoice/picovoice-react-native": "^3.0.0",
+ "@picovoice/porcupine-react-native": "^3.0.0",
+ "@picovoice/react-native-voice-processor": "^1.2.0",
+ "@picovoice/rhino-react-native": "^3.0.0",
"moment": "^2.29.1",
"prettier": "^2.8.0",
"react": "^17.0.2",
diff --git a/demo/react-native-clock/yarn.lock b/demo/react-native-clock/yarn.lock
index a85d9fcab..3be952057 100644
--- a/demo/react-native-clock/yarn.lock
+++ b/demo/react-native-clock/yarn.lock
@@ -2,272 +2,260 @@
# yarn lockfile v1
-"@ampproject/remapping@^2.1.0":
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
- integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==
+"@ampproject/remapping@^2.2.0":
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
+ integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
dependencies:
- "@jridgewell/gen-mapping" "^0.1.0"
+ "@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
- integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.13":
+ version "7.22.13"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e"
+ integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==
dependencies:
- "@babel/highlight" "^7.18.6"
+ "@babel/highlight" "^7.22.13"
+ chalk "^2.4.2"
-"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"
- integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==
+"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.2.tgz#6a12ced93455827037bfb5ed8492820d60fc32cc"
+ integrity sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==
"@babel/core@^7.0.0", "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.13.8", "@babel/core@^7.14.0":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.7.tgz#37072f951bd4d28315445f66e0ec9f6ae0c8c35f"
- integrity sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw==
- dependencies:
- "@ampproject/remapping" "^2.1.0"
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.7"
- "@babel/helper-compilation-targets" "^7.20.7"
- "@babel/helper-module-transforms" "^7.20.7"
- "@babel/helpers" "^7.20.7"
- "@babel/parser" "^7.20.7"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
- "@babel/types" "^7.20.7"
- convert-source-map "^1.7.0"
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.2.tgz#ed10df0d580fff67c5f3ee70fd22e2e4c90a9f94"
+ integrity sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==
+ dependencies:
+ "@ampproject/remapping" "^2.2.0"
+ "@babel/code-frame" "^7.22.13"
+ "@babel/generator" "^7.23.0"
+ "@babel/helper-compilation-targets" "^7.22.15"
+ "@babel/helper-module-transforms" "^7.23.0"
+ "@babel/helpers" "^7.23.2"
+ "@babel/parser" "^7.23.0"
+ "@babel/template" "^7.22.15"
+ "@babel/traverse" "^7.23.2"
+ "@babel/types" "^7.23.0"
+ convert-source-map "^2.0.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
- json5 "^2.2.1"
- semver "^6.3.0"
+ json5 "^2.2.3"
+ semver "^6.3.1"
-"@babel/generator@^7.14.0", "@babel/generator@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.7.tgz#f8ef57c8242665c5929fe2e8d82ba75460187b4a"
- integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==
+"@babel/generator@^7.14.0", "@babel/generator@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420"
+ integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==
dependencies:
- "@babel/types" "^7.20.7"
+ "@babel/types" "^7.23.0"
"@jridgewell/gen-mapping" "^0.3.2"
+ "@jridgewell/trace-mapping" "^0.3.17"
jsesc "^2.5.1"
-"@babel/helper-annotate-as-pure@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"
- integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==
+"@babel/helper-annotate-as-pure@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882"
+ integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/types" "^7.22.5"
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb"
- integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956"
+ integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==
dependencies:
- "@babel/helper-explode-assignable-expression" "^7.18.6"
- "@babel/types" "^7.18.9"
+ "@babel/types" "^7.22.15"
-"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb"
- integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==
+"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52"
+ integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==
dependencies:
- "@babel/compat-data" "^7.20.5"
- "@babel/helper-validator-option" "^7.18.6"
- browserslist "^4.21.3"
+ "@babel/compat-data" "^7.22.9"
+ "@babel/helper-validator-option" "^7.22.15"
+ browserslist "^4.21.9"
lru-cache "^5.1.1"
- semver "^6.3.0"
-
-"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.7.tgz#d0e1f8d7e4ed5dac0389364d9c0c191d948ade6f"
- integrity sha512-LtoWbDXOaidEf50hmdDqn9g8VEzsorMexoWMQdQODbvmqYmaF23pBP5VNPAGIFHsFQCIeKokDiz3CH5Y2jlY6w==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-member-expression-to-functions" "^7.20.7"
- "@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/helper-replace-supers" "^7.20.7"
- "@babel/helper-split-export-declaration" "^7.18.6"
-
-"@babel/helper-create-regexp-features-plugin@^7.18.6":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz#5ea79b59962a09ec2acf20a963a01ab4d076ccca"
- integrity sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.18.6"
- regexpu-core "^5.2.1"
-
-"@babel/helper-define-polyfill-provider@^0.3.3":
- version "0.3.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a"
- integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==
+ semver "^6.3.1"
+
+"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.15":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz#97a61b385e57fe458496fad19f8e63b63c867de4"
+ integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-member-expression-to-functions" "^7.22.15"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.9"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ semver "^6.3.1"
+
+"@babel/helper-create-regexp-features-plugin@^7.22.5":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1"
+ integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ regexpu-core "^5.3.1"
+ semver "^6.3.1"
+
+"@babel/helper-define-polyfill-provider@^0.4.3":
+ version "0.4.3"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz#a71c10f7146d809f4a256c373f462d9bba8cf6ba"
+ integrity sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==
dependencies:
- "@babel/helper-compilation-targets" "^7.17.7"
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-compilation-targets" "^7.22.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
debug "^4.1.1"
lodash.debounce "^4.0.8"
resolve "^1.14.2"
- semver "^6.1.2"
-
-"@babel/helper-environment-visitor@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
- integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
-
-"@babel/helper-explode-assignable-expression@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096"
- integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==
- dependencies:
- "@babel/types" "^7.18.6"
-
-"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c"
- integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==
- dependencies:
- "@babel/template" "^7.18.10"
- "@babel/types" "^7.19.0"
-"@babel/helper-hoist-variables@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678"
- integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==
- dependencies:
- "@babel/types" "^7.18.6"
+"@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
+ integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
-"@babel/helper-member-expression-to-functions@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz#a6f26e919582275a93c3aa6594756d71b0bb7f05"
- integrity sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==
+"@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759"
+ integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
dependencies:
- "@babel/types" "^7.20.7"
+ "@babel/template" "^7.22.15"
+ "@babel/types" "^7.23.0"
-"@babel/helper-module-imports@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
- integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
+"@babel/helper-hoist-variables@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
+ integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/types" "^7.22.5"
-"@babel/helper-module-transforms@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.7.tgz#7a6c9a1155bef55e914af574153069c9d9470c43"
- integrity sha512-FNdu7r67fqMUSVuQpFQGE6BPdhJIhitoxhGzDbAXNcA07uoVG37fOiMk3OSV8rEICuyG6t8LGkd9EE64qIEoIA==
- dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-simple-access" "^7.20.2"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/helper-validator-identifier" "^7.19.1"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
- "@babel/types" "^7.20.7"
-
-"@babel/helper-optimise-call-expression@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe"
- integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==
+"@babel/helper-member-expression-to-functions@^7.22.15":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366"
+ integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/types" "^7.23.0"
+
+"@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0"
+ integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==
+ dependencies:
+ "@babel/types" "^7.22.15"
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629"
- integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==
-
-"@babel/helper-remap-async-to-generator@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519"
- integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==
+"@babel/helper-module-transforms@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz#3ec246457f6c842c0aee62a01f60739906f7047e"
+ integrity sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-module-imports" "^7.22.15"
+ "@babel/helper-simple-access" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@babel/helper-validator-identifier" "^7.22.20"
+
+"@babel/helper-optimise-call-expression@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e"
+ integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
+ integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
+
+"@babel/helper-remap-async-to-generator@^7.22.5":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0"
+ integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-wrap-function" "^7.22.20"
+
+"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793"
+ integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-member-expression-to-functions" "^7.22.15"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+
+"@babel/helper-simple-access@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de"
+ integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847"
+ integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-split-export-declaration@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
+ integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-string-parser@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
+ integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
+
+"@babel/helper-validator-identifier@^7.22.20":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
+ integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
+
+"@babel/helper-validator-option@^7.22.15":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040"
+ integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==
+
+"@babel/helper-wrap-function@^7.22.20":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz#15352b0b9bfb10fc9c76f79f6342c00e3411a569"
+ integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==
+ dependencies:
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/template" "^7.22.15"
+ "@babel/types" "^7.22.19"
+
+"@babel/helpers@^7.23.2":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.2.tgz#2832549a6e37d484286e15ba36a5330483cac767"
+ integrity sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-wrap-function" "^7.18.9"
- "@babel/types" "^7.18.9"
-
-"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz#243ecd2724d2071532b2c8ad2f0f9f083bcae331"
- integrity sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==
- dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-member-expression-to-functions" "^7.20.7"
- "@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
- "@babel/types" "^7.20.7"
-
-"@babel/helper-simple-access@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9"
- integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==
- dependencies:
- "@babel/types" "^7.20.2"
-
-"@babel/helper-skip-transparent-expression-wrappers@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684"
- integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==
- dependencies:
- "@babel/types" "^7.20.0"
-
-"@babel/helper-split-export-declaration@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075"
- integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==
- dependencies:
- "@babel/types" "^7.18.6"
-
-"@babel/helper-string-parser@^7.19.4":
- version "7.19.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
- integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
-
-"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
- version "7.19.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
- integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
-
-"@babel/helper-validator-option@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
- integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
-
-"@babel/helper-wrap-function@^7.18.9":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3"
- integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==
- dependencies:
- "@babel/helper-function-name" "^7.19.0"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.5"
- "@babel/types" "^7.20.5"
-
-"@babel/helpers@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.7.tgz#04502ff0feecc9f20ecfaad120a18f011a8e6dce"
- integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==
- dependencies:
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
- "@babel/types" "^7.20.7"
-
-"@babel/highlight@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
- integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
- dependencies:
- "@babel/helper-validator-identifier" "^7.18.6"
- chalk "^2.0.0"
+ "@babel/template" "^7.22.15"
+ "@babel/traverse" "^7.23.2"
+ "@babel/types" "^7.23.0"
+
+"@babel/highlight@^7.22.13":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54"
+ integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.22.20"
+ chalk "^2.4.2"
js-tokens "^4.0.0"
-"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b"
- integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==
+"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.15", "@babel/parser@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719"
+ integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==
"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0":
version "7.18.6"
@@ -278,12 +266,12 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-proposal-export-default-from@^7.0.0":
- version "7.18.10"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.18.10.tgz#091f4794dbce4027c03cf4ebc64d3fb96b75c206"
- integrity sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==
+ version "7.22.17"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.22.17.tgz#91b60cd338f501cccdf549af2308768911ec5fbb"
+ integrity sha512-cop/3quQBVvdz6X5SJC6AhUv3C9DrVTM06LUEXimEdWAhCSyOJIr9NiZDU9leHZ0/aiG0Sh7Zmvaku5TWYNgbA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
- "@babel/plugin-syntax-export-default-from" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-export-default-from" "^7.22.5"
"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8":
version "7.18.6"
@@ -313,9 +301,9 @@
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
"@babel/plugin-proposal-optional-chaining@^7.0.0", "@babel/plugin-proposal-optional-chaining@^7.13.12":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz#49f2b372519ab31728cc14115bb0998b15bfda55"
- integrity sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea"
+ integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
@@ -349,19 +337,19 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.18.6.tgz#8df076711a4818c4ce4f23e61d622b0ba2ff84bc"
- integrity sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==
+"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.22.5.tgz#ac3a24b362a04415a017ab96b9b4483d0e2a6e44"
+ integrity sha512-ODAqWWXB/yReh/jVQDag/3/tl6lgBueQkk/TcfW/59Oykm4c8a55XloX0CTk2k2VJiFWMgHby9xNX29IbCv9dQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.18.6", "@babel/plugin-syntax-flow@^7.2.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz#774d825256f2379d06139be0c723c4dd444f3ca1"
- integrity sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==
+"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.2.0", "@babel/plugin-syntax-flow@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz#163b820b9e7696ce134df3ee716d9c0c98035859"
+ integrity sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-import-meta@^7.8.3":
version "7.10.4"
@@ -377,12 +365,12 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0"
- integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==
+"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918"
+ integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
version "7.10.4"
@@ -433,277 +421,280 @@
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
-"@babel/plugin-syntax-typescript@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz#4e9a0cfc769c85689b77a2e642d24e9f697fc8c7"
- integrity sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==
+"@babel/plugin-syntax-typescript@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272"
+ integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-arrow-functions@^7.0.0":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz#bea332b0e8b2dab3dafe55a163d8227531ab0551"
- integrity sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958"
+ integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-async-to-generator@^7.0.0":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz#dfee18623c8cb31deb796aa3ca84dda9cea94354"
- integrity sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775"
+ integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==
dependencies:
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-remap-async-to-generator" "^7.18.9"
+ "@babel/helper-module-imports" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-remap-async-to-generator" "^7.22.5"
"@babel/plugin-transform-block-scoped-functions@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8"
- integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024"
+ integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-block-scoping@^7.0.0":
- version "7.20.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.8.tgz#ad142bce04ae32225e2379ca54f06d5cea92fdb8"
- integrity sha512-ztBCIWJvcWJvtxhMqIrItLmGlbxaa/5hl7HlZvV4f9oS08wWn/mEtf5D35qxFp3rTK8KjV9TePEoeal8z02gzA==
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz#8744d02c6c264d82e1a4bc5d2d501fd8aff6f022"
+ integrity sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-classes@^7.0.0":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz#f438216f094f6bb31dc266ebfab8ff05aecad073"
- integrity sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-compilation-targets" "^7.20.7"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-replace-supers" "^7.20.7"
- "@babel/helper-split-export-declaration" "^7.18.6"
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz#aaf4753aee262a232bbc95451b4bdf9599c65a0b"
+ integrity sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-compilation-targets" "^7.22.15"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.9"
+ "@babel/helper-split-export-declaration" "^7.22.6"
globals "^11.1.0"
"@babel/plugin-transform-computed-properties@^7.0.0":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz#704cc2fd155d1c996551db8276d55b9d46e4d0aa"
- integrity sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869"
+ integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/template" "^7.20.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/template" "^7.22.5"
"@babel/plugin-transform-destructuring@^7.0.0":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz#8bda578f71620c7de7c93af590154ba331415454"
- integrity sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz#6447aa686be48b32eaf65a73e0e2c0bd010a266c"
+ integrity sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-exponentiation-operator@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd"
- integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a"
+ integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==
dependencies:
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-flow-strip-types@^7.0.0", "@babel/plugin-transform-flow-strip-types@^7.18.6":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz#e9e8606633287488216028719638cbbb2f2dde8f"
- integrity sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==
+"@babel/plugin-transform-flow-strip-types@^7.0.0", "@babel/plugin-transform-flow-strip-types@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz#0bb17110c7bf5b35a60754b2f00c58302381dee2"
+ integrity sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/plugin-syntax-flow" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-flow" "^7.22.5"
"@babel/plugin-transform-for-of@^7.0.0":
- version "7.18.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1"
- integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz#f64b4ccc3a4f131a996388fae7680b472b306b29"
+ integrity sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-function-name@^7.0.0":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0"
- integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143"
+ integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==
dependencies:
- "@babel/helper-compilation-targets" "^7.18.9"
- "@babel/helper-function-name" "^7.18.9"
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-compilation-targets" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-literals@^7.0.0":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc"
- integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920"
+ integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-member-expression-literals@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e"
- integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def"
+ integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.7.tgz#abb5f84695e74d46acf48244082f6cbf8bb23120"
- integrity sha512-76jqqFiFdCD+RJwEdtBHUG2/rEKQAmpejPbAKyQECEE3/y4U5CMPc9IXvipS990vgQhzq+ZRw6WJ+q4xJ/P24w==
+"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz#b3dba4757133b2762c00f4f94590cf6d52602481"
+ integrity sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==
dependencies:
- "@babel/helper-module-transforms" "^7.20.7"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-simple-access" "^7.20.2"
+ "@babel/helper-module-transforms" "^7.23.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-simple-access" "^7.22.5"
"@babel/plugin-transform-object-assign@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.18.6.tgz#7830b4b6f83e1374a5afb9f6111bcfaea872cdd2"
- integrity sha512-mQisZ3JfqWh2gVXvfqYCAAyRs6+7oev+myBsTwW5RnPhYXOTuCEw2oe3YgxlXMViXUS53lG8koulI7mJ+8JE+A==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.22.5.tgz#290c1b9555dcea48bb2c29ad94237777600d04f9"
+ integrity sha512-iDhx9ARkXq4vhZ2CYOSnQXkmxkDgosLi3J8Z17mKz7LyzthtkdVchLD7WZ3aXeCuvJDOW3+1I5TpJmwIbF9MKQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-object-super@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c"
- integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c"
+ integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-replace-supers" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.5"
"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz#0ee349e9d1bc96e78e3b37a7af423a4078a7083f"
- integrity sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz#719ca82a01d177af358df64a514d64c2e3edb114"
+ integrity sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-property-literals@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3"
- integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766"
+ integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-react-display-name@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz#8b1125f919ef36ebdfff061d664e266c666b9415"
- integrity sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz#3c4326f9fce31c7968d6cb9debcaf32d9e279a2b"
+ integrity sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-react-jsx-self@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz#3849401bab7ae8ffa1e3e5687c94a753fc75bda7"
- integrity sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.22.5.tgz#ca2fdc11bc20d4d46de01137318b13d04e481d8e"
+ integrity sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-react-jsx-source@^7.0.0":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz#88578ae8331e5887e8ce28e4c9dc83fb29da0b86"
- integrity sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.22.5.tgz#49af1615bfdf6ed9d3e9e43e425e0b2b65d15b6c"
+ integrity sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-react-jsx@^7.0.0":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.7.tgz#025d85a1935fd7e19dfdcb1b1d4df34d4da484f7"
- integrity sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz#7e6266d88705d7c49f11c98db8b9464531289cd6"
+ integrity sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/plugin-syntax-jsx" "^7.18.6"
- "@babel/types" "^7.20.7"
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-module-imports" "^7.22.15"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-jsx" "^7.22.5"
+ "@babel/types" "^7.22.15"
"@babel/plugin-transform-regenerator@^7.0.0":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz#57cda588c7ffb7f4f8483cc83bdcea02a907f04d"
- integrity sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==
+ version "7.22.10"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca"
+ integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
- regenerator-transform "^0.15.1"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ regenerator-transform "^0.15.2"
"@babel/plugin-transform-runtime@^7.0.0":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz#9d2a9dbf4e12644d6f46e5e75bfbf02b5d6e9194"
- integrity sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==
- dependencies:
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.19.0"
- babel-plugin-polyfill-corejs2 "^0.3.3"
- babel-plugin-polyfill-corejs3 "^0.6.0"
- babel-plugin-polyfill-regenerator "^0.4.1"
- semver "^6.3.0"
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.2.tgz#c956a3f8d1aa50816ff6c30c6288d66635c12990"
+ integrity sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==
+ dependencies:
+ "@babel/helper-module-imports" "^7.22.15"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ babel-plugin-polyfill-corejs2 "^0.4.6"
+ babel-plugin-polyfill-corejs3 "^0.8.5"
+ babel-plugin-polyfill-regenerator "^0.5.3"
+ semver "^6.3.1"
"@babel/plugin-transform-shorthand-properties@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9"
- integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624"
+ integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-spread@^7.0.0":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e"
- integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b"
+ integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
"@babel/plugin-transform-sticky-regex@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc"
- integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa"
+ integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-template-literals@^7.0.0":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e"
- integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff"
+ integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-typescript@^7.18.6", "@babel/plugin-transform-typescript@^7.5.0":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.7.tgz#673f49499cd810ae32a1ea5f3f8fab370987e055"
- integrity sha512-m3wVKEvf6SoszD8pu4NZz3PvfKRCMgk6D6d0Qi9hNnlM5M6CFS92EgF4EiHVLKbU0r/r7ty1hg7NPZwE7WRbYw==
+"@babel/plugin-transform-typescript@^7.22.15", "@babel/plugin-transform-typescript@^7.5.0":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz#15adef906451d86349eb4b8764865c960eb54127"
+ integrity sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.20.7"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/plugin-syntax-typescript" "^7.20.0"
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-create-class-features-plugin" "^7.22.15"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-typescript" "^7.22.5"
"@babel/plugin-transform-unicode-regex@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca"
- integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183"
+ integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/preset-flow@^7.13.13":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.18.6.tgz#83f7602ba566e72a9918beefafef8ef16d2810cb"
- integrity sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.22.15.tgz#30318deb9b3ebd9f5738e96da03a531e0cd3165d"
+ integrity sha512-dB5aIMqpkgbTfN5vDdTRPzjqtWiZcRESNR88QYnoPR+bmdYoluOzMX9tQerTv0XzSgZYctPfO1oc0N5zdog1ew==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-validator-option" "^7.18.6"
- "@babel/plugin-transform-flow-strip-types" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-validator-option" "^7.22.15"
+ "@babel/plugin-transform-flow-strip-types" "^7.22.5"
"@babel/preset-typescript@^7.13.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz#ce64be3e63eddc44240c6358daefac17b3186399"
- integrity sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.23.2.tgz#c8de488130b7081f7e1482936ad3de5b018beef4"
+ integrity sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-validator-option" "^7.18.6"
- "@babel/plugin-transform-typescript" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-validator-option" "^7.22.15"
+ "@babel/plugin-syntax-jsx" "^7.22.5"
+ "@babel/plugin-transform-modules-commonjs" "^7.23.0"
+ "@babel/plugin-transform-typescript" "^7.22.15"
"@babel/register@^7.13.16":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.18.9.tgz#1888b24bc28d5cc41c412feb015e9ff6b96e439c"
- integrity sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.22.15.tgz#c2c294a361d59f5fa7bcc8b97ef7319c32ecaec7"
+ integrity sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==
dependencies:
clone-deep "^4.0.1"
find-cache-dir "^2.0.0"
@@ -711,45 +702,50 @@
pirates "^4.0.5"
source-map-support "^0.5.16"
-"@babel/runtime@^7.13.9", "@babel/runtime@^7.8.4":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.7.tgz#fcb41a5a70550e04a7b708037c7c32f7f356d8fd"
- integrity sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==
- dependencies:
- regenerator-runtime "^0.13.11"
-
-"@babel/template@^7.0.0", "@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.3.3":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8"
- integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==
- dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/parser" "^7.20.7"
- "@babel/types" "^7.20.7"
+"@babel/regjsgen@^0.8.0":
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
+ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
-"@babel/traverse@^7.14.0", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7":
- version "7.20.8"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.8.tgz#e3a23eb04af24f8bbe8a8ba3eef6155b77df0b08"
- integrity sha512-/RNkaYDeCy4MjyV70+QkSHhxbvj2JO/5Ft2Pa880qJOG8tWrqcT/wXUuCCv43yogfqPzHL77Xu101KQPf4clnQ==
- dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.7"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-hoist-variables" "^7.18.6"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.20.7"
- "@babel/types" "^7.20.7"
+"@babel/runtime@^7.13.9", "@babel/runtime@^7.8.4":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.2.tgz#062b0ac103261d68a966c4c7baf2ae3e62ec3885"
+ integrity sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==
+ dependencies:
+ regenerator-runtime "^0.14.0"
+
+"@babel/template@^7.0.0", "@babel/template@^7.22.15", "@babel/template@^7.22.5", "@babel/template@^7.3.3":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38"
+ integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==
+ dependencies:
+ "@babel/code-frame" "^7.22.13"
+ "@babel/parser" "^7.22.15"
+ "@babel/types" "^7.22.15"
+
+"@babel/traverse@^7.14.0", "@babel/traverse@^7.23.2":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8"
+ integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==
+ dependencies:
+ "@babel/code-frame" "^7.22.13"
+ "@babel/generator" "^7.23.0"
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-function-name" "^7.23.0"
+ "@babel/helper-hoist-variables" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@babel/parser" "^7.23.0"
+ "@babel/types" "^7.23.0"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f"
- integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==
+"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.3.3":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb"
+ integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==
dependencies:
- "@babel/helper-string-parser" "^7.19.4"
- "@babel/helper-validator-identifier" "^7.19.1"
+ "@babel/helper-string-parser" "^7.22.5"
+ "@babel/helper-validator-identifier" "^7.22.20"
to-fast-properties "^2.0.0"
"@cnakazawa/watch@^1.0.3":
@@ -838,65 +834,57 @@
"@types/yargs" "^16.0.0"
chalk "^4.0.0"
-"@jridgewell/gen-mapping@^0.1.0":
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996"
- integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==
- dependencies:
- "@jridgewell/set-array" "^1.0.0"
- "@jridgewell/sourcemap-codec" "^1.4.10"
-
-"@jridgewell/gen-mapping@^0.3.2":
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9"
- integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==
+"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098"
+ integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
-"@jridgewell/resolve-uri@3.1.0":
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
- integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
+"@jridgewell/resolve-uri@^3.1.0":
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721"
+ integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==
-"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
+"@jridgewell/set-array@^1.0.1":
version "1.1.2"
resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
-"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10":
- version "1.4.14"
- resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
- integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
+"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
+ version "1.4.15"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
+ integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
-"@jridgewell/trace-mapping@^0.3.9":
- version "0.3.17"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985"
- integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==
+"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
+ version "0.3.20"
+ resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f"
+ integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==
dependencies:
- "@jridgewell/resolve-uri" "3.1.0"
- "@jridgewell/sourcemap-codec" "1.4.14"
+ "@jridgewell/resolve-uri" "^3.1.0"
+ "@jridgewell/sourcemap-codec" "^1.4.14"
-"@picovoice/picovoice-react-native@=2.2.2":
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/@picovoice/picovoice-react-native/-/picovoice-react-native-2.2.2.tgz#b80f6134b59d16af48b4ef7f8463921cf52bb35b"
- integrity sha512-YxycAYwxODnTLvDsw5XzcjdOvPF1dY5vsw7fbqyiE49Ntm0FGKQyyZ42r+FY19oNqW+1o2vpefYV0I5sjHqzAg==
+"@picovoice/picovoice-react-native@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/picovoice-react-native/-/picovoice-react-native-3.0.0.tgz#97fece58243b2bec83a521cfdc17c25b47f44b45"
+ integrity sha512-XdOB+ShXWqsFxIvr1FlVUgKzAZaQymDobGs2lrerKmqL/117CqYMCwqdH66IB7iujBE0QREWhg5BWdoulZ09gg==
-"@picovoice/porcupine-react-native@=2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@picovoice/porcupine-react-native/-/porcupine-react-native-2.2.1.tgz#734327d9bf8791fa5a8e8241b14c23fdc5a7e8c8"
- integrity sha512-d4JC/PX9KmHLbEB/h1LD39UvJdr2D9YZ3Jtn1AwStw4WonRKpNTJA07zXRDdJDb3UsZFRcT+4Ay96PiLYTrRyg==
+"@picovoice/porcupine-react-native@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/porcupine-react-native/-/porcupine-react-native-3.0.0.tgz#f9e670d317b42de53984338d86350ffd1d2ac6a0"
+ integrity sha512-sMw4UwwzCnWyXpqlRYTiWaPlLoHoK/RqW4t+wUBAg8GxAlSD9JkRv6hWc1B5i2FPqWD0Txqm7nFDoDL6EEvNsw==
-"@picovoice/react-native-voice-processor@=1.2.0":
+"@picovoice/react-native-voice-processor@^1.2.0":
version "1.2.0"
resolved "https://registry.yarnpkg.com/@picovoice/react-native-voice-processor/-/react-native-voice-processor-1.2.0.tgz#82a98b41d9236ababe330dae873062ee0e1b24c3"
integrity sha512-zolTEo3qsqeUwY7JRslV/yhiA+oBrkeogOTxjHIEJ//yEsr7YKlI1PcqTbU5/xjmUiukh62gmwTXhosnQYdasQ==
-"@picovoice/rhino-react-native@=2.2.2":
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/@picovoice/rhino-react-native/-/rhino-react-native-2.2.2.tgz#8d18e255eb53a94f8842bee6c19ebcf577931d1e"
- integrity sha512-f54WoYWgnSIkJRpAW+0ZKMQVEZ+he1YM136CXjVPWDtNzT3tsNZGSATGtKedAKr7zon3ko6FlXT0gsHPXjl8YQ==
+"@picovoice/rhino-react-native@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/rhino-react-native/-/rhino-react-native-3.0.0.tgz#0f73d3f493cc4e3e73138bfd946c9cacb9859339"
+ integrity sha512-2oSsn8/8hLo4ke2vHg9gF7e4CNDKorgdbh+gVudfiq7eiiZhgt7KL+vj0/a4V5N2maozAHMPvrog6ecAOddgiw==
"@react-native-community/cli-debugger-ui@^7.0.3":
version "7.0.3"
@@ -1094,7 +1082,7 @@
dependencies:
"@hapi/hoek" "^9.0.0"
-"@sideway/formula@^3.0.0":
+"@sideway/formula@^3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f"
integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==
@@ -1105,114 +1093,121 @@
integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==
"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7":
- version "7.1.20"
- resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.20.tgz#e168cdd612c92a2d335029ed62ac94c95b362359"
- integrity sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==
+ version "7.20.3"
+ resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.3.tgz#d5625a50b6f18244425a1359a858c73d70340778"
+ integrity sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==
dependencies:
- "@babel/parser" "^7.1.0"
- "@babel/types" "^7.0.0"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
"@types/babel__generator" "*"
"@types/babel__template" "*"
"@types/babel__traverse" "*"
"@types/babel__generator@*":
- version "7.6.4"
- resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7"
- integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==
+ version "7.6.6"
+ resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.6.tgz#676f89f67dc8ddaae923f70ebc5f1fa800c031a8"
+ integrity sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w==
dependencies:
"@babel/types" "^7.0.0"
"@types/babel__template@*":
- version "7.4.1"
- resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969"
- integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==
+ version "7.4.3"
+ resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.3.tgz#db9ac539a2fe05cfe9e168b24f360701bde41f5f"
+ integrity sha512-ciwyCLeuRfxboZ4isgdNZi/tkt06m8Tw6uGbBSBgWrnnZGNXiEyM27xc/PjXGQLqlZ6ylbgHMnm7ccF9tCkOeQ==
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
- version "7.18.3"
- resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.3.tgz#dfc508a85781e5698d5b33443416b6268c4b3e8d"
- integrity sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==
+ version "7.20.3"
+ resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.3.tgz#a971aa47441b28ef17884ff945d0551265a2d058"
+ integrity sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==
dependencies:
- "@babel/types" "^7.3.0"
+ "@babel/types" "^7.20.7"
"@types/graceful-fs@^4.1.2":
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15"
- integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==
+ version "4.1.8"
+ resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.8.tgz#417e461e4dc79d957dc3107f45fe4973b09c2915"
+ integrity sha512-NhRH7YzWq8WiNKVavKPBmtLYZHxNY19Hh+az28O/phfp68CF45pMFud+ZzJ8ewnxnC5smIdF3dqFeiSUQ5I+pw==
dependencies:
"@types/node" "*"
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0":
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44"
- integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#fdfdd69fa16d530047d9963635bd77c71a08c068"
+ integrity sha512-zONci81DZYCZjiLe0r6equvZut0b+dBRPBN5kBDjsONnutYNtJMoWQ9uR2RkL1gLG9NMTzvf+29e5RFfPbeKhQ==
"@types/istanbul-lib-report@*":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
- integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.2.tgz#394798d5f727402eb5ec99eb9618ffcd2b7645a1"
+ integrity sha512-8toY6FgdltSdONav1XtUHl4LN1yTmLza+EuDazb/fEmRNCwjyqNVIQWs2IfC74IqjHkREs/nQ2FWq5kZU9IC0w==
dependencies:
"@types/istanbul-lib-coverage" "*"
"@types/istanbul-reports@^3.0.0":
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff"
- integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.3.tgz#0313e2608e6d6955d195f55361ddeebd4b74c6e7"
+ integrity sha512-1nESsePMBlf0RPRffLZi5ujYh7IH1BWL4y9pr+Bn3cJBdxz+RTP8bUFljLz9HvzhhOSWKdyBZ4DIivdL6rvgZg==
dependencies:
"@types/istanbul-lib-report" "*"
"@types/node@*":
- version "18.11.17"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.17.tgz#5c009e1d9c38f4a2a9d45c0b0c493fe6cdb4bcb5"
- integrity sha512-HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng==
+ version "20.8.7"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.7.tgz#ad23827850843de973096edfc5abc9e922492a25"
+ integrity sha512-21TKHHh3eUHIi2MloeptJWALuCu5H7HQTdTrWIFReA8ad+aggoX+lRes3ex7/FtpC+sVUpFMQ+QTfYr74mruiQ==
+ dependencies:
+ undici-types "~5.25.1"
"@types/prop-types@*":
- version "15.7.5"
- resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf"
- integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==
+ version "15.7.9"
+ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.9.tgz#b6f785caa7ea1fe4414d9df42ee0ab67f23d8a6d"
+ integrity sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==
"@types/react-native@^0.68.7":
- version "0.68.15"
- resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.68.15.tgz#605aa76c70e41edd24675de34dc8036725db5dd3"
- integrity sha512-NGEBnRm3eFqz/gZXTw06Ad6S0AnLAUivcepdCBTP96NL1eh9eTI3nGpe0w5mlynlHRrEXYBhXrUVDhfMBl4OPA==
+ version "0.68.17"
+ resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.68.17.tgz#58a086c43f7c1ca5a0ac46f305a494d55ea32c74"
+ integrity sha512-EYHfFZjuVNyNwLFMU8OT2vx6m/gIfyfm/fJWL3RhyC5JvGXi7bu6kHQNe9k6Z5FCEZqokth46IcJ3NadGuGdgg==
dependencies:
"@types/react" "^17"
"@types/react@^17", "@types/react@^17.0.35":
- version "17.0.52"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.52.tgz#10d8b907b5c563ac014a541f289ae8eaa9bf2e9b"
- integrity sha512-vwk8QqVODi0VaZZpDXQCmEmiOuyjEFPY7Ttaw5vjM112LOq37yz1CDJGrRJwA1fYEq4Iitd5rnjd1yWAc/bT+A==
+ version "17.0.69"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.69.tgz#245a0cf2f5b0fb1d645691d3083e3c7d4409b98f"
+ integrity sha512-klEeru//GhiQvXUBayz0Q4l3rKHWsBR/EUOhOeow6hK2jV7MlO44+8yEk6+OtPeOlRfnpUnrLXzGK+iGph5aeg==
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
csstype "^3.0.2"
"@types/scheduler@*":
- version "0.16.2"
- resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
- integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
+ version "0.16.5"
+ resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.5.tgz#4751153abbf8d6199babb345a52e1eb4167d64af"
+ integrity sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw==
"@types/yargs-parser@*":
- version "21.0.0"
- resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b"
- integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==
+ version "21.0.2"
+ resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.2.tgz#7bd04c5da378496ef1695a1008bf8f71847a8b8b"
+ integrity sha512-5qcvofLPbfjmBfKaLfj/+f+Sbd6pN4zl7w7VSVI5uz7m9QZTuB2aZAa2uo1wHFBNN2x6g/SoTkXmd8mQnQF2Cw==
"@types/yargs@^15.0.0":
- version "15.0.14"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.14.tgz#26d821ddb89e70492160b66d10a0eb6df8f6fb06"
- integrity sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==
+ version "15.0.17"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.17.tgz#bea870ba551b43831bfaa75de2e4a3849c39322b"
+ integrity sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==
dependencies:
"@types/yargs-parser" "*"
"@types/yargs@^16.0.0":
- version "16.0.4"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977"
- integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==
+ version "16.0.7"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.7.tgz#b0d0502cb5f6c17994df72a600049f10bbf17203"
+ integrity sha512-lQcYmxWuOfJq4IncK88/nwud9rwr1F04CFc5xzk0k4oKVyz/AI35TfsXmhjf6t8zp8mpCOi17BfvuNWx+zrYkg==
dependencies:
"@types/yargs-parser" "*"
+"@xmldom/xmldom@^0.8.8":
+ version "0.8.10"
+ resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99"
+ integrity sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==
+
abort-controller@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392"
@@ -1398,29 +1393,29 @@ babel-plugin-jest-hoist@^26.6.2:
"@types/babel__core" "^7.0.0"
"@types/babel__traverse" "^7.0.6"
-babel-plugin-polyfill-corejs2@^0.3.3:
- version "0.3.3"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122"
- integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==
+babel-plugin-polyfill-corejs2@^0.4.6:
+ version "0.4.6"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz#b2df0251d8e99f229a8e60fc4efa9a68b41c8313"
+ integrity sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==
dependencies:
- "@babel/compat-data" "^7.17.7"
- "@babel/helper-define-polyfill-provider" "^0.3.3"
- semver "^6.1.1"
+ "@babel/compat-data" "^7.22.6"
+ "@babel/helper-define-polyfill-provider" "^0.4.3"
+ semver "^6.3.1"
-babel-plugin-polyfill-corejs3@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a"
- integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==
+babel-plugin-polyfill-corejs3@^0.8.5:
+ version "0.8.5"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.5.tgz#a75fa1b0c3fc5bd6837f9ec465c0f48031b8cab1"
+ integrity sha512-Q6CdATeAvbScWPNLB8lzSO7fgUVBkQt6zLgNlfyeCr/EQaEQR+bWiBYYPYAFyE528BMjRhL+1QBMOI4jc/c5TA==
dependencies:
- "@babel/helper-define-polyfill-provider" "^0.3.3"
- core-js-compat "^3.25.1"
+ "@babel/helper-define-polyfill-provider" "^0.4.3"
+ core-js-compat "^3.32.2"
-babel-plugin-polyfill-regenerator@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747"
- integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==
+babel-plugin-polyfill-regenerator@^0.5.3:
+ version "0.5.3"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz#d4c49e4b44614607c13fb769bcd85c72bb26a4a5"
+ integrity sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==
dependencies:
- "@babel/helper-define-polyfill-provider" "^0.3.3"
+ "@babel/helper-define-polyfill-provider" "^0.4.3"
babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0:
version "7.0.0-beta.0"
@@ -1568,15 +1563,15 @@ braces@^3.0.2:
dependencies:
fill-range "^7.0.1"
-browserslist@^4.21.3, browserslist@^4.21.4:
- version "4.21.4"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987"
- integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==
+browserslist@^4.21.9, browserslist@^4.22.1:
+ version "4.22.1"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.1.tgz#ba91958d1a59b87dab6fed8dfbcb3da5e2e9c619"
+ integrity sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==
dependencies:
- caniuse-lite "^1.0.30001400"
- electron-to-chromium "^1.4.251"
- node-releases "^2.0.6"
- update-browserslist-db "^1.0.9"
+ caniuse-lite "^1.0.30001541"
+ electron-to-chromium "^1.4.535"
+ node-releases "^2.0.13"
+ update-browserslist-db "^1.0.13"
bser@2.1.1:
version "2.1.1"
@@ -1647,10 +1642,10 @@ camelcase@^6.0.0:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
-caniuse-lite@^1.0.30001400:
- version "1.0.30001441"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz#987437b266260b640a23cd18fbddb509d7f69f3e"
- integrity sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==
+caniuse-lite@^1.0.30001541:
+ version "1.0.30001551"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001551.tgz#1f2cfa8820bd97c971a57349d7fd8f6e08664a3e"
+ integrity sha512-vtBAez47BoGMMzlbYhfXrMV1kvRF2WP/lqiMuDu1Sb4EE4LKEgjopFDSRtZfdVnslNRpOqV/woE+Xgrwj6VQlg==
capture-exit@^2.0.0:
version "2.0.0"
@@ -1659,7 +1654,7 @@ capture-exit@^2.0.0:
dependencies:
rsvp "^4.8.4"
-chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2:
+chalk@^2.0.1, chalk@^2.4.2:
version "2.4.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@@ -1682,9 +1677,9 @@ ci-info@^2.0.0:
integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
ci-info@^3.2.0:
- version "3.7.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.7.0.tgz#6d01b3696c59915b6ce057e4aa4adfc2fa25f5ef"
- integrity sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==
+ version "3.9.0"
+ resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4"
+ integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==
class-utils@^0.3.5:
version "0.3.6"
@@ -1711,9 +1706,9 @@ cli-cursor@^3.1.0:
restore-cursor "^3.1.0"
cli-spinners@^2.0.0, cli-spinners@^2.5.0:
- version "2.7.0"
- resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.7.0.tgz#f815fd30b5f9eaac02db604c7a231ed7cb2f797a"
- integrity sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==
+ version "2.9.1"
+ resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.1.tgz#9c0b9dad69a6d47cbb4333c14319b060ed395a35"
+ integrity sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==
cliui@^6.0.0:
version "6.0.0"
@@ -1844,22 +1839,27 @@ connect@^3.6.5:
parseurl "~1.3.3"
utils-merge "1.0.1"
-convert-source-map@^1.4.0, convert-source-map@^1.7.0:
+convert-source-map@^1.4.0:
version "1.9.0"
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
+convert-source-map@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
+ integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
+
copy-descriptor@^0.1.0:
version "0.1.1"
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==
-core-js-compat@^3.25.1:
- version "3.26.1"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.26.1.tgz#0e710b09ebf689d719545ac36e49041850f943df"
- integrity sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==
+core-js-compat@^3.32.2:
+ version "3.33.1"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.33.1.tgz#debe80464107d75419e00c2ee29f35982118ff84"
+ integrity sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==
dependencies:
- browserslist "^4.21.4"
+ browserslist "^4.22.1"
core-util-is@~1.0.0:
version "1.0.3"
@@ -1888,14 +1888,14 @@ cross-spawn@^6.0.0:
which "^1.2.9"
csstype@^3.0.2:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9"
- integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b"
+ integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
dayjs@^1.8.15:
- version "1.11.7"
- resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.7.tgz#4b296922642f70999544d1144a2c25730fce63e2"
- integrity sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==
+ version "1.11.10"
+ resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.10.tgz#68acea85317a6e164457d6d6947564029a6a16a0"
+ integrity sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==
debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
version "2.6.9"
@@ -1984,10 +1984,10 @@ ee-first@1.1.1:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
-electron-to-chromium@^1.4.251:
- version "1.4.284"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592"
- integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==
+electron-to-chromium@^1.4.535:
+ version "1.4.561"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.561.tgz#816f31d9ae01fe58abbf469fca7e125b16befd85"
+ integrity sha512-eS5t4ulWOBfVHdq9SW2dxEaFarj1lPjvJ8PaYMOjY0DecBaj/t4ARziL2IPpDr4atyWwjLFGQ2vo/VCgQFezVQ==
emoji-regex@^8.0.0:
version "8.0.0"
@@ -2007,9 +2007,9 @@ end-of-stream@^1.1.0:
once "^1.4.0"
envinfo@^7.7.2:
- version "7.8.1"
- resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475"
- integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==
+ version "7.10.0"
+ resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.10.0.tgz#55146e3909cc5fe63c22da63fb15b05aeac35b13"
+ integrity sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==
error-ex@^1.3.1:
version "1.3.2"
@@ -2190,9 +2190,9 @@ find-up@^4.1.0:
path-exists "^4.0.0"
flow-parser@0.*:
- version "0.196.3"
- resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.196.3.tgz#dd923f29a6c194770a4f999f8026ef1da79d428b"
- integrity sha512-R8wj12eHW6og+IBWeRS6aihkdac1Prh4zw1bfxtt/aeu8r5OFmQEZjnmINcjO/5Q+OKvI4Eg367ygz2SHvtH+w==
+ version "0.219.2"
+ resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.219.2.tgz#4d5d2d6784d5d8c856b2fd49f31ed44b06b50b01"
+ integrity sha512-OqzmNECXX85x/5L/OP9TfHErdDoSUoKR4y1sTTy/A5K2arwl7s5EmX0XTkkcJPlCAHYkElWj5Se+ZwNN/6ry2Q==
flow-parser@^0.121.0:
version "0.121.0"
@@ -2240,14 +2240,9 @@ fs.realpath@^1.0.0:
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
fsevents@^2.1.2, fsevents@^2.3.2:
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
- integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
-
-function-bind@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
- integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
+ integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
gensync@^1.0.0-beta.2:
version "1.0.0-beta.2"
@@ -2294,9 +2289,9 @@ globals@^11.1.0:
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
- version "4.2.10"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
- integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
+ version "4.2.11"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
+ integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
has-flag@^3.0.0:
version "3.0.0"
@@ -2340,11 +2335,9 @@ has-values@^1.0.0:
kind-of "^4.0.0"
has@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
- integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
- dependencies:
- function-bind "^1.1.1"
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/has/-/has-1.0.4.tgz#2eb2860e000011dae4f1406a86fe80e530fb2ec6"
+ integrity sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==
hermes-engine@~0.11.0:
version "0.11.0"
@@ -2460,10 +2453,10 @@ is-ci@^2.0.0:
dependencies:
ci-info "^2.0.0"
-is-core-module@^2.9.0:
- version "2.11.0"
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144"
- integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==
+is-core-module@^2.13.0:
+ version "2.13.0"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db"
+ integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==
dependencies:
has "^1.0.3"
@@ -2745,14 +2738,14 @@ jetifier@^1.6.2:
integrity sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw==
joi@^17.2.1:
- version "17.7.0"
- resolved "https://registry.yarnpkg.com/joi/-/joi-17.7.0.tgz#591a33b1fe1aca2bc27f290bcad9b9c1c570a6b3"
- integrity sha512-1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg==
+ version "17.11.0"
+ resolved "https://registry.yarnpkg.com/joi/-/joi-17.11.0.tgz#aa9da753578ec7720e6f0ca2c7046996ed04fc1a"
+ integrity sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==
dependencies:
"@hapi/hoek" "^9.0.0"
"@hapi/topo" "^5.0.0"
"@sideway/address" "^4.1.3"
- "@sideway/formula" "^3.0.0"
+ "@sideway/formula" "^3.0.1"
"@sideway/pinpoint" "^2.0.0"
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
@@ -2813,10 +2806,10 @@ json-parse-better-errors@^1.0.1:
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
-json5@^2.2.1:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.2.tgz#64471c5bdcc564c18f7c1d4df2e2297f2457c5ab"
- integrity sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==
+json5@^2.2.3:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
+ integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
jsonfile@^2.1.0:
version "2.4.0"
@@ -3382,9 +3375,9 @@ minimatch@^3.0.2, minimatch@^3.0.4, minimatch@^3.1.1:
brace-expansion "^1.1.7"
minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.6:
- version "1.2.7"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18"
- integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
+ integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
mixin-deep@^1.2.0:
version "1.3.2"
@@ -3466,9 +3459,9 @@ node-dir@^0.1.17:
minimatch "^3.0.2"
node-fetch@^2.2.0, node-fetch@^2.6.0:
- version "2.6.7"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad"
- integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d"
+ integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==
dependencies:
whatwg-url "^5.0.0"
@@ -3477,10 +3470,10 @@ node-int64@^0.4.0:
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
-node-releases@^2.0.6:
- version "2.0.8"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.8.tgz#0f349cdc8fcfa39a92ac0be9bc48b7706292b9ae"
- integrity sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==
+node-releases@^2.0.13:
+ version "2.0.13"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d"
+ integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==
node-stream-zip@^1.9.1:
version "1.15.0"
@@ -3713,9 +3706,9 @@ pify@^4.0.1:
integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
pirates@^4.0.1, pirates@^4.0.5:
- version "4.0.5"
- resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b"
- integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==
+ version "4.0.6"
+ resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9"
+ integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==
pkg-dir@^3.0.0:
version "3.0.0"
@@ -3725,10 +3718,11 @@ pkg-dir@^3.0.0:
find-up "^3.0.0"
plist@^3.0.2, plist@^3.0.5:
- version "3.0.6"
- resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.6.tgz#7cfb68a856a7834bca6dbfe3218eb9c7740145d3"
- integrity sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA==
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz#797a516a93e62f5bde55e0b9cc9c967f860893c9"
+ integrity sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==
dependencies:
+ "@xmldom/xmldom" "^0.8.8"
base64-js "^1.5.1"
xmlbuilder "^15.1.1"
@@ -3738,9 +3732,9 @@ posix-character-classes@^0.1.0:
integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==
prettier@^2.8.0:
- version "2.8.4"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.4.tgz#34dd2595629bfbb79d344ac4a91ff948694463c3"
- integrity sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==
+ version "2.8.8"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
+ integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
pretty-format@^26.5.2, pretty-format@^26.6.2:
version "26.6.2"
@@ -3795,9 +3789,9 @@ range-parser@~1.2.1:
integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
react-devtools-core@^4.23.0:
- version "4.27.1"
- resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.27.1.tgz#167aa174383c65786cbb7e965a5b39c702f0a2d3"
- integrity sha512-qXhcxxDWiFmFAOq48jts9YQYe1+wVoUXzJTlY4jbaATzyio6dd6CUGu3dXBhREeVgpZ+y4kg6vFJzIOZh6vY2w==
+ version "4.28.4"
+ resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.28.4.tgz#fb8183eada77093f4c2f9830e664bf22255abe27"
+ integrity sha512-IUZKLv3CimeM07G3vX4H4loxVpByrzq3HvfTX7v9migalwvLs9ZY5D3S3pKR33U+GguYfBBdMMZyToFhsSE/iQ==
dependencies:
shell-quote "^1.6.1"
ws "^7"
@@ -3818,9 +3812,9 @@ react-is@^16.13.1:
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
react-moment@^1.1.1:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/react-moment/-/react-moment-1.1.2.tgz#a9b157c58ddd226a2f746e5ca43415b24a17b6af"
- integrity sha512-lfb+shYXI2tXlQrNUpNr05/1D/kzFj8Isbfp89DQrpZk0fs2JIAnLHWETR0hQS9zvtzwLWlVv0wKLffbue5HoA==
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/react-moment/-/react-moment-1.1.3.tgz#829b21dfb279aa6db47ce4f1ac2555af17a1bcdc"
+ integrity sha512-8EPvlUL8u6EknPp1ISF5MQ3wx2OHJVXIP/iZc4wRh3iV3XozftZERDv9ANZeAtMlhNNQHdFoqcZHFUkBSTONfA==
react-native-codegen@^0.0.18:
version "0.0.18"
@@ -3845,9 +3839,9 @@ react-native-material-bottom-navigation@^1.0.5:
prop-types "^15.6.1"
react-native-notification-sounds@^0.5.5:
- version "0.5.5"
- resolved "https://registry.yarnpkg.com/react-native-notification-sounds/-/react-native-notification-sounds-0.5.5.tgz#12b43e347c168bcec18b99f3ae20ccdef9429ef6"
- integrity sha512-Pw4mRDbusYVmi8+Cwxcpx1BI9gwFY4CpWx8N+gMNDd1n7WRJS/Shi3Igo1luo3zLPkVVrpyZbpuZaE8cG9Q3Cg==
+ version "0.5.8"
+ resolved "https://registry.yarnpkg.com/react-native-notification-sounds/-/react-native-notification-sounds-0.5.8.tgz#f65f6da1a7c453a3a4f5212629cbe97731d305fb"
+ integrity sha512-pvqJPwCGMvJzeCXMGlkIfbZP3t5vVJw2+8H83SN08g9L3l528BMnlRf99MArJN0qJwusxGFvKat6srNzPayAnA==
react-native-vector-icons@^8.1.0:
version "8.1.0"
@@ -3941,18 +3935,18 @@ react@^17.0.2:
object-assign "^4.1.1"
readable-stream@^3.4.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
- integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
+ version "3.6.2"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
+ integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
dependencies:
inherits "^2.0.3"
string_decoder "^1.1.1"
util-deprecate "^1.0.1"
readable-stream@~2.3.6:
- version "2.3.7"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
- integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
+ version "2.3.8"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b"
+ integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
dependencies:
core-util-is "~1.0.0"
inherits "~2.0.3"
@@ -3978,9 +3972,9 @@ recast@^0.20.4:
tslib "^2.0.1"
regenerate-unicode-properties@^10.1.0:
- version "10.1.0"
- resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
- integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==
+ version "10.1.1"
+ resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480"
+ integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==
dependencies:
regenerate "^1.4.2"
@@ -3989,15 +3983,20 @@ regenerate@^1.4.2:
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
-regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.2:
+regenerator-runtime@^0.13.2:
version "0.13.11"
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
-regenerator-transform@^0.15.1:
- version "0.15.1"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56"
- integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==
+regenerator-runtime@^0.14.0:
+ version "0.14.0"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45"
+ integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==
+
+regenerator-transform@^0.15.2:
+ version "0.15.2"
+ resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4"
+ integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==
dependencies:
"@babel/runtime" "^7.8.4"
@@ -4009,23 +4008,18 @@ regex-not@^1.0.0, regex-not@^1.0.2:
extend-shallow "^3.0.2"
safe-regex "^1.1.0"
-regexpu-core@^5.2.1:
- version "5.2.2"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.2.2.tgz#3e4e5d12103b64748711c3aad69934d7718e75fc"
- integrity sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==
+regexpu-core@^5.3.1:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b"
+ integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==
dependencies:
+ "@babel/regjsgen" "^0.8.0"
regenerate "^1.4.2"
regenerate-unicode-properties "^10.1.0"
- regjsgen "^0.7.1"
regjsparser "^0.9.1"
unicode-match-property-ecmascript "^2.0.0"
unicode-match-property-value-ecmascript "^2.1.0"
-regjsgen@^0.7.1:
- version "0.7.1"
- resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.7.1.tgz#ee5ef30e18d3f09b7c369b76e7c2373ed25546f6"
- integrity sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==
-
regjsparser@^0.9.1:
version "0.9.1"
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709"
@@ -4074,11 +4068,11 @@ resolve-url@^0.2.1:
integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==
resolve@^1.14.2:
- version "1.22.1"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
- integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
+ version "1.22.8"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
+ integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
dependencies:
- is-core-module "^2.9.0"
+ is-core-module "^2.13.0"
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
@@ -4160,9 +4154,9 @@ sane@^4.0.3:
walker "~1.0.5"
sax@^1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
- integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/sax/-/sax-1.3.0.tgz#a5dbe77db3be05c9d1ee7785dbd3ea9de51593d0"
+ integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==
scheduler@^0.20.2:
version "0.20.2"
@@ -4177,7 +4171,7 @@ semver@^5.5.0, semver@^5.6.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
-semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
+semver@^6.3.0, semver@^6.3.1:
version "6.3.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
@@ -4256,9 +4250,9 @@ shebang-regex@^1.0.0:
integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==
shell-quote@^1.6.1, shell-quote@^1.7.3:
- version "1.7.4"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.4.tgz#33fe15dee71ab2a81fcbd3a52106c5cfb9fb75d8"
- integrity sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680"
+ integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==
signal-exit@^3.0.0, signal-exit@^3.0.2:
version "3.0.7"
@@ -4572,9 +4566,9 @@ tr46@~0.0.3:
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
tslib@^2.0.1:
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e"
- integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
+ integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
type-fest@^0.7.1:
version "0.7.1"
@@ -4589,9 +4583,9 @@ typedarray-to-buffer@^3.1.5:
is-typedarray "^1.0.0"
typescript@^4.9.3:
- version "4.9.4"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
- integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==
+ version "4.9.5"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
+ integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
uglify-es@^3.1.9:
version "3.3.9"
@@ -4601,6 +4595,11 @@ uglify-es@^3.1.9:
commander "~2.13.0"
source-map "~0.6.1"
+undici-types@~5.25.1:
+ version "5.25.3"
+ resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.25.3.tgz#e044115914c85f0bcbb229f346ab739f064998c3"
+ integrity sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==
+
unicode-canonical-property-names-ecmascript@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
@@ -4652,10 +4651,10 @@ unset-value@^1.0.0:
has-value "^0.3.1"
isobject "^3.0.0"
-update-browserslist-db@^1.0.9:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
- integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
+update-browserslist-db@^1.0.13:
+ version "1.0.13"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4"
+ integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==
dependencies:
escalade "^3.1.1"
picocolors "^1.0.0"
@@ -4722,9 +4721,9 @@ webidl-conversions@^3.0.0:
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
whatwg-fetch@^3.0.0:
- version "3.6.2"
- resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c"
- integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==
+ version "3.6.19"
+ resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.19.tgz#caefd92ae630b91c07345537e67f8354db470973"
+ integrity sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==
whatwg-url@^5.0.0:
version "5.0.0"
@@ -4735,9 +4734,9 @@ whatwg-url@^5.0.0:
webidl-conversions "^3.0.0"
which-module@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
- integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409"
+ integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==
which@^1.2.9:
version "1.3.1"
@@ -4814,9 +4813,9 @@ xmlbuilder@^15.1.1:
integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==
xmldoc@^1.1.2:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-1.2.0.tgz#7554371bfd8c138287cff01841ae4566d26e5541"
- integrity sha512-2eN8QhjBsMW2uVj7JHLHkMytpvGHLHxKXBy4J3fAT/HujsEtM6yU84iGjpESYGHg6XwK0Vu4l+KgqQ2dv2cCqg==
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-1.3.0.tgz#7823225b096c74036347c9ec5924d06b6a3cebab"
+ integrity sha512-y7IRWW6PvEnYQZNZFMRLNJw+p3pezM4nKYPfr15g4OOW9i8VpeydycFuipE2297OvZnh3jSb2pxOt9QpkZUVng==
dependencies:
sax "^1.2.4"
diff --git a/demo/react-native/App.tsx b/demo/react-native/App.tsx
index 21593e0d1..37542b40e 100644
--- a/demo/react-native/App.tsx
+++ b/demo/react-native/App.tsx
@@ -60,21 +60,45 @@ export default class App extends Component {
if (language !== 'en') {
rhnModelPath = `models/rhino_params_${language}.pv`;
}
-
- this._picovoiceManager = PicovoiceManager.create(
- this._accessKey,
- wakeWordPath,
- this._wakeWordCallback.bind(this),
- contextPath,
- this._inferenceCallback.bind(this),
- (error: PicovoiceErrors.PicovoiceError) => {
- this._errorCallback(error.message);
- },
- 0.5,
- 0.5,
- ppnModelPath,
- rhnModelPath,
- );
+ try {
+ this._picovoiceManager = await PicovoiceManager.create(
+ this._accessKey,
+ wakeWordPath,
+ this._wakeWordCallback.bind(this),
+ contextPath,
+ this._inferenceCallback.bind(this),
+ (error: PicovoiceErrors.PicovoiceError) => {
+ this._errorCallback(error.message);
+ },
+ 0.5,
+ 0.5,
+ ppnModelPath,
+ rhnModelPath,
+ );
+ this.setState({
+ contextInfo: this._picovoiceManager?.contextInfo,
+ });
+ } catch (err) {
+ let errorMessage: string;
+ if (err instanceof PicovoiceErrors.PicovoiceInvalidArgumentError) {
+ errorMessage = err.message;
+ } else if (err instanceof PicovoiceErrors.PicovoiceActivationError) {
+ errorMessage = 'AccessKey activation error';
+ } else if (err instanceof PicovoiceErrors.PicovoiceActivationLimitError) {
+ errorMessage = 'AccessKey reached its device limit';
+ } else if (
+ err instanceof PicovoiceErrors.PicovoiceActivationRefusedError
+ ) {
+ errorMessage = 'AccessKey refused';
+ } else if (
+ err instanceof PicovoiceErrors.PicovoiceActivationThrottledError
+ ) {
+ errorMessage = 'AccessKey has been throttled';
+ } else {
+ errorMessage = err.toString();
+ }
+ this._errorCallback(errorMessage);
+ }
}
async componentWillUnmount() {
@@ -137,7 +161,7 @@ export default class App extends Component {
});
try {
- await this._startPicovoice();
+ await this._picovoiceManager?.start();
this.setState({
buttonText: 'Stop',
buttonDisabled: false,
@@ -149,37 +173,6 @@ export default class App extends Component {
}
}
- async _startPicovoice() {
- try {
- await this._picovoiceManager?.start();
- this.setState({
- contextInfo: this._picovoiceManager?.contextInfo,
- });
- } catch (err) {
- let errorMessage: string;
- if (err instanceof PicovoiceErrors.PicovoiceInvalidArgumentError) {
- errorMessage = `${err.message}\nPlease make sure your accessKey '${this._accessKey}'' is a valid access key.`;
- } else if (err instanceof PicovoiceErrors.PicovoiceActivationError) {
- errorMessage = 'AccessKey activation error';
- } else if (err instanceof PicovoiceErrors.PicovoiceActivationLimitError) {
- errorMessage = 'AccessKey reached its device limit';
- } else if (
- err instanceof PicovoiceErrors.PicovoiceActivationRefusedError
- ) {
- errorMessage = 'AccessKey refused';
- } else if (
- err instanceof PicovoiceErrors.PicovoiceActivationThrottledError
- ) {
- errorMessage = 'AccessKey has been throttled';
- } else {
- errorMessage = err.toString();
- }
- this._errorCallback(errorMessage);
- }
-
- return false;
- }
-
async _stopProcessing() {
this.setState({
buttonDisabled: true,
@@ -211,10 +204,6 @@ export default class App extends Component {
}
async showContextInfo() {
- if (!this.state.contextInfo) {
- await this._startPicovoice();
- await this._stopProcessing();
- }
if (!this.state.isError) {
this.setState({ showContextInfo: true });
}
diff --git a/demo/react-native/ios/Podfile.lock b/demo/react-native/ios/Podfile.lock
index 3209792cc..578681eb0 100644
--- a/demo/react-native/ios/Podfile.lock
+++ b/demo/react-native/ios/Podfile.lock
@@ -12,10 +12,10 @@ PODS:
- fmt (6.2.1)
- glog (0.3.5)
- ios-voice-processor (1.1.0)
- - Porcupine-iOS (2.2.1):
+ - Porcupine-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - porcupine-react-native (2.2.1):
- - Porcupine-iOS (~> 2.2.1)
+ - porcupine-react-native (3.0.0):
+ - Porcupine-iOS (~> 3.0.0)
- React
- RCT-Folly (2021.06.28.00-v2):
- boost
@@ -292,11 +292,11 @@ PODS:
- React-jsi (= 0.68.7)
- React-logger (= 0.68.7)
- React-perflogger (= 0.68.7)
- - Rhino-iOS (2.2.2):
+ - Rhino-iOS (3.0.0):
- ios-voice-processor (~> 1.1.0)
- - rhino-react-native (2.2.2):
+ - rhino-react-native (3.0.0):
- React
- - Rhino-iOS (~> 2.2.2)
+ - Rhino-iOS (~> 3.0.0)
- Yoga (1.14.0)
DEPENDENCIES:
@@ -422,8 +422,8 @@ SPEC CHECKSUMS:
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
glog: 476ee3e89abb49e07f822b48323c51c57124b572
ios-voice-processor: 8e32d7f980a06d392d128ef1cd19cf6ddcaca3c1
- Porcupine-iOS: df8e4a63d787b6c16bd5f988fd0f2c29a249a4bd
- porcupine-react-native: c0ca3b5112d55af5aa2c2ca0267e082e2dfb4dda
+ Porcupine-iOS: 517158e02ac294dda15b713a3c6f74a9e877090c
+ porcupine-react-native: e74ff3c50f8a1ec956b8aa7a8797821b0f9e8b85
RCT-Folly: 4d8508a426467c48885f1151029bc15fa5d7b3b8
RCTRequired: 530916cd48c5f7cf1fc16966ad5ea01638ca4799
RCTTypeSafety: 5fb4cb3080efd582e5563c3e9a0e459fc51396c5
@@ -450,8 +450,8 @@ SPEC CHECKSUMS:
React-RCTVibration: 2a4bf853281d4981ab471509102300d3c9e6c693
React-runtimeexecutor: 18932e685b4893be88d1efc18f5f8ca1c9cd39d8
ReactCommon: 29bb6fad3242e30e9d049bc9d592736fa3da9e50
- Rhino-iOS: 0fad86b28d35f67ccb6bd0a2efbbcc0d88b05124
- rhino-react-native: b097ae57f636a07f72cd80b5079557ee09721792
+ Rhino-iOS: b92978104bfad32da25b9eeaa4f0628b86ffcee9
+ rhino-react-native: 3954bad7e47e21256a0874999cbb0d2acf599186
Yoga: 0bc4b37c3b8a345336ff601e2cf7d9704bab7e93
PODFILE CHECKSUM: 01013a1f5997e930862476da5284b4ac9e764646
diff --git a/demo/react-native/package.json b/demo/react-native/package.json
index 2a442a824..7f4871eec 100644
--- a/demo/react-native/package.json
+++ b/demo/react-native/package.json
@@ -1,6 +1,6 @@
{
"name": "picovoice-react-native-demo",
- "version": "2.2.0",
+ "version": "3.0.0",
"private": true,
"scripts": {
"start": "react-native start",
@@ -14,10 +14,10 @@
"ios-bundle": "node scripts/run_demo.js bundle --dev false --platform ios --entry-file index.js --bundle-output ios/app.jsbundle"
},
"dependencies": {
- "@picovoice/picovoice-react-native": "=2.2.2",
- "@picovoice/porcupine-react-native": "=2.2.1",
+ "@picovoice/picovoice-react-native": "^3.0.0",
+ "@picovoice/porcupine-react-native": "^3.0.0",
"@picovoice/react-native-voice-processor": "^1.2.0",
- "@picovoice/rhino-react-native": "=2.2.2",
+ "@picovoice/rhino-react-native": "^3.0.0",
"react": "^17.0.2",
"react-native": "^0.68.7"
},
diff --git a/demo/react-native/yarn.lock b/demo/react-native/yarn.lock
index 6d02e43c2..ebd205c01 100644
--- a/demo/react-native/yarn.lock
+++ b/demo/react-native/yarn.lock
@@ -2,489 +2,276 @@
# yarn lockfile v1
-"@ampproject/remapping@^2.1.0":
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
- integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==
+"@aashutoshrathi/word-wrap@^1.2.3":
+ version "1.2.6"
+ resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf"
+ integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==
+
+"@ampproject/remapping@^2.2.0":
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
+ integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
dependencies:
- "@jridgewell/gen-mapping" "^0.1.0"
+ "@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"
- integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.13":
+ version "7.22.13"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e"
+ integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==
dependencies:
- "@babel/highlight" "^7.16.7"
-
-"@babel/code-frame@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
- integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
- dependencies:
- "@babel/highlight" "^7.18.6"
-
-"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.17.10":
- version "7.18.5"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.5.tgz#acac0c839e317038c73137fbb6ef71a1d6238471"
- integrity sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg==
-
-"@babel/compat-data@^7.20.5":
- version "7.20.5"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"
- integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==
-
-"@babel/core@^7.0.0", "@babel/core@^7.12.3", "@babel/core@^7.14.0":
- version "7.18.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.5.tgz#c597fa680e58d571c28dda9827669c78cdd7f000"
- integrity sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ==
- dependencies:
- "@ampproject/remapping" "^2.1.0"
- "@babel/code-frame" "^7.16.7"
- "@babel/generator" "^7.18.2"
- "@babel/helper-compilation-targets" "^7.18.2"
- "@babel/helper-module-transforms" "^7.18.0"
- "@babel/helpers" "^7.18.2"
- "@babel/parser" "^7.18.5"
- "@babel/template" "^7.16.7"
- "@babel/traverse" "^7.18.5"
- "@babel/types" "^7.18.4"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.2"
- json5 "^2.2.1"
- semver "^6.3.0"
+ "@babel/highlight" "^7.22.13"
+ chalk "^2.4.2"
-"@babel/core@^7.13.16":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.7.tgz#37072f951bd4d28315445f66e0ec9f6ae0c8c35f"
- integrity sha512-t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw==
- dependencies:
- "@ampproject/remapping" "^2.1.0"
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.7"
- "@babel/helper-compilation-targets" "^7.20.7"
- "@babel/helper-module-transforms" "^7.20.7"
- "@babel/helpers" "^7.20.7"
- "@babel/parser" "^7.20.7"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
- "@babel/types" "^7.20.7"
- convert-source-map "^1.7.0"
+"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.2.tgz#6a12ced93455827037bfb5ed8492820d60fc32cc"
+ integrity sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==
+
+"@babel/core@^7.0.0", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.14.0":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.2.tgz#ed10df0d580fff67c5f3ee70fd22e2e4c90a9f94"
+ integrity sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==
+ dependencies:
+ "@ampproject/remapping" "^2.2.0"
+ "@babel/code-frame" "^7.22.13"
+ "@babel/generator" "^7.23.0"
+ "@babel/helper-compilation-targets" "^7.22.15"
+ "@babel/helper-module-transforms" "^7.23.0"
+ "@babel/helpers" "^7.23.2"
+ "@babel/parser" "^7.23.0"
+ "@babel/template" "^7.22.15"
+ "@babel/traverse" "^7.23.2"
+ "@babel/types" "^7.23.0"
+ convert-source-map "^2.0.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
- json5 "^2.2.1"
- semver "^6.3.0"
+ json5 "^2.2.3"
+ semver "^6.3.1"
"@babel/eslint-parser@^7.18.2":
- version "7.19.1"
- resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz#4f68f6b0825489e00a24b41b6a1ae35414ecd2f4"
- integrity sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.15.tgz#263f059c476e29ca4972481a17b8b660cb025a34"
+ integrity sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
eslint-visitor-keys "^2.1.0"
- semver "^6.3.0"
+ semver "^6.3.1"
-"@babel/generator@^7.14.0", "@babel/generator@^7.18.2":
- version "7.18.2"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.2.tgz#33873d6f89b21efe2da63fe554460f3df1c5880d"
- integrity sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==
+"@babel/generator@^7.14.0", "@babel/generator@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420"
+ integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==
dependencies:
- "@babel/types" "^7.18.2"
- "@jridgewell/gen-mapping" "^0.3.0"
- jsesc "^2.5.1"
-
-"@babel/generator@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.7.tgz#f8ef57c8242665c5929fe2e8d82ba75460187b4a"
- integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==
- dependencies:
- "@babel/types" "^7.20.7"
+ "@babel/types" "^7.23.0"
"@jridgewell/gen-mapping" "^0.3.2"
+ "@jridgewell/trace-mapping" "^0.3.17"
jsesc "^2.5.1"
-"@babel/helper-annotate-as-pure@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz#bb2339a7534a9c128e3102024c60760a3a7f3862"
- integrity sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==
- dependencies:
- "@babel/types" "^7.16.7"
-
-"@babel/helper-annotate-as-pure@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"
- integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==
+"@babel/helper-annotate-as-pure@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882"
+ integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/types" "^7.22.5"
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz#38d138561ea207f0f69eb1626a418e4f7e6a580b"
- integrity sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==
+"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz#5426b109cf3ad47b91120f8328d8ab1be8b0b956"
+ integrity sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==
dependencies:
- "@babel/helper-explode-assignable-expression" "^7.16.7"
- "@babel/types" "^7.16.7"
+ "@babel/types" "^7.22.15"
-"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.7", "@babel/helper-compilation-targets@^7.17.10", "@babel/helper-compilation-targets@^7.18.2":
- version "7.18.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz#67a85a10cbd5fc7f1457fec2e7f45441dc6c754b"
- integrity sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==
+"@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52"
+ integrity sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==
dependencies:
- "@babel/compat-data" "^7.17.10"
- "@babel/helper-validator-option" "^7.16.7"
- browserslist "^4.20.2"
- semver "^6.3.0"
-
-"@babel/helper-compilation-targets@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb"
- integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==
- dependencies:
- "@babel/compat-data" "^7.20.5"
- "@babel/helper-validator-option" "^7.18.6"
- browserslist "^4.21.3"
+ "@babel/compat-data" "^7.22.9"
+ "@babel/helper-validator-option" "^7.22.15"
+ browserslist "^4.21.9"
lru-cache "^5.1.1"
- semver "^6.3.0"
-
-"@babel/helper-create-class-features-plugin@^7.17.12", "@babel/helper-create-class-features-plugin@^7.18.0":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.0.tgz#fac430912606331cb075ea8d82f9a4c145a4da19"
- integrity sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.16.7"
- "@babel/helper-environment-visitor" "^7.16.7"
- "@babel/helper-function-name" "^7.17.9"
- "@babel/helper-member-expression-to-functions" "^7.17.7"
- "@babel/helper-optimise-call-expression" "^7.16.7"
- "@babel/helper-replace-supers" "^7.16.7"
- "@babel/helper-split-export-declaration" "^7.16.7"
-
-"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.7.tgz#d0e1f8d7e4ed5dac0389364d9c0c191d948ade6f"
- integrity sha512-LtoWbDXOaidEf50hmdDqn9g8VEzsorMexoWMQdQODbvmqYmaF23pBP5VNPAGIFHsFQCIeKokDiz3CH5Y2jlY6w==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-member-expression-to-functions" "^7.20.7"
- "@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/helper-replace-supers" "^7.20.7"
- "@babel/helper-split-export-declaration" "^7.18.6"
-
-"@babel/helper-create-regexp-features-plugin@^7.16.7":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.12.tgz#bb37ca467f9694bbe55b884ae7a5cc1e0084e4fd"
- integrity sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.16.7"
- regexpu-core "^5.0.1"
-
-"@babel/helper-define-polyfill-provider@^0.3.1":
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz#52411b445bdb2e676869e5a74960d2d3826d2665"
- integrity sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==
+ semver "^6.3.1"
+
+"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.15":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz#97a61b385e57fe458496fad19f8e63b63c867de4"
+ integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-member-expression-to-functions" "^7.22.15"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.9"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ semver "^6.3.1"
+
+"@babel/helper-create-regexp-features-plugin@^7.22.5":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz#5ee90093914ea09639b01c711db0d6775e558be1"
+ integrity sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ regexpu-core "^5.3.1"
+ semver "^6.3.1"
+
+"@babel/helper-define-polyfill-provider@^0.4.3":
+ version "0.4.3"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz#a71c10f7146d809f4a256c373f462d9bba8cf6ba"
+ integrity sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==
dependencies:
- "@babel/helper-compilation-targets" "^7.13.0"
- "@babel/helper-module-imports" "^7.12.13"
- "@babel/helper-plugin-utils" "^7.13.0"
- "@babel/traverse" "^7.13.0"
+ "@babel/helper-compilation-targets" "^7.22.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
debug "^4.1.1"
lodash.debounce "^4.0.8"
resolve "^1.14.2"
- semver "^6.1.2"
-
-"@babel/helper-environment-visitor@^7.16.7", "@babel/helper-environment-visitor@^7.18.2":
- version "7.18.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz#8a6d2dedb53f6bf248e31b4baf38739ee4a637bd"
- integrity sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==
-
-"@babel/helper-environment-visitor@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
- integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
-
-"@babel/helper-explode-assignable-expression@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz#12a6d8522fdd834f194e868af6354e8650242b7a"
- integrity sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==
- dependencies:
- "@babel/types" "^7.16.7"
-
-"@babel/helper-function-name@^7.16.7", "@babel/helper-function-name@^7.17.9":
- version "7.17.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz#136fcd54bc1da82fcb47565cf16fd8e444b1ff12"
- integrity sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==
- dependencies:
- "@babel/template" "^7.16.7"
- "@babel/types" "^7.17.0"
-
-"@babel/helper-function-name@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c"
- integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==
- dependencies:
- "@babel/template" "^7.18.10"
- "@babel/types" "^7.19.0"
-"@babel/helper-hoist-variables@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz#86bcb19a77a509c7b77d0e22323ef588fa58c246"
- integrity sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==
- dependencies:
- "@babel/types" "^7.16.7"
+"@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
+ integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
-"@babel/helper-hoist-variables@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678"
- integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==
+"@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759"
+ integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/template" "^7.22.15"
+ "@babel/types" "^7.23.0"
-"@babel/helper-member-expression-to-functions@^7.17.7":
- version "7.17.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz#a34013b57d8542a8c4ff8ba3f747c02452a4d8c4"
- integrity sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==
+"@babel/helper-hoist-variables@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
+ integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
dependencies:
- "@babel/types" "^7.17.0"
+ "@babel/types" "^7.22.5"
-"@babel/helper-member-expression-to-functions@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz#a6f26e919582275a93c3aa6594756d71b0bb7f05"
- integrity sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==
+"@babel/helper-member-expression-to-functions@^7.22.15":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366"
+ integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==
dependencies:
- "@babel/types" "^7.20.7"
+ "@babel/types" "^7.23.0"
+
+"@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0"
+ integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==
+ dependencies:
+ "@babel/types" "^7.22.15"
-"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437"
- integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==
+"@babel/helper-module-transforms@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz#3ec246457f6c842c0aee62a01f60739906f7047e"
+ integrity sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-module-imports" "^7.22.15"
+ "@babel/helper-simple-access" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@babel/helper-validator-identifier" "^7.22.20"
+
+"@babel/helper-optimise-call-expression@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e"
+ integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
+ integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
+
+"@babel/helper-remap-async-to-generator@^7.22.5":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0"
+ integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-wrap-function" "^7.22.20"
+
+"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793"
+ integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-member-expression-to-functions" "^7.22.15"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+
+"@babel/helper-simple-access@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de"
+ integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847"
+ integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-split-export-declaration@^7.22.6":
+ version "7.22.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
+ integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
+ dependencies:
+ "@babel/types" "^7.22.5"
+
+"@babel/helper-string-parser@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
+ integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
+
+"@babel/helper-validator-identifier@^7.22.20":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
+ integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
+
+"@babel/helper-validator-option@^7.22.15":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040"
+ integrity sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==
+
+"@babel/helper-wrap-function@^7.22.20":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz#15352b0b9bfb10fc9c76f79f6342c00e3411a569"
+ integrity sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==
+ dependencies:
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/template" "^7.22.15"
+ "@babel/types" "^7.22.19"
+
+"@babel/helpers@^7.23.2":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.2.tgz#2832549a6e37d484286e15ba36a5330483cac767"
+ integrity sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==
dependencies:
- "@babel/types" "^7.16.7"
-
-"@babel/helper-module-imports@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
- integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
- dependencies:
- "@babel/types" "^7.18.6"
-
-"@babel/helper-module-transforms@^7.18.0":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz#baf05dec7a5875fb9235bd34ca18bad4e21221cd"
- integrity sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==
- dependencies:
- "@babel/helper-environment-visitor" "^7.16.7"
- "@babel/helper-module-imports" "^7.16.7"
- "@babel/helper-simple-access" "^7.17.7"
- "@babel/helper-split-export-declaration" "^7.16.7"
- "@babel/helper-validator-identifier" "^7.16.7"
- "@babel/template" "^7.16.7"
- "@babel/traverse" "^7.18.0"
- "@babel/types" "^7.18.0"
-
-"@babel/helper-module-transforms@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.7.tgz#7a6c9a1155bef55e914af574153069c9d9470c43"
- integrity sha512-FNdu7r67fqMUSVuQpFQGE6BPdhJIhitoxhGzDbAXNcA07uoVG37fOiMk3OSV8rEICuyG6t8LGkd9EE64qIEoIA==
- dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-simple-access" "^7.20.2"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/helper-validator-identifier" "^7.19.1"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
- "@babel/types" "^7.20.7"
-
-"@babel/helper-optimise-call-expression@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz#a34e3560605abbd31a18546bd2aad3e6d9a174f2"
- integrity sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==
- dependencies:
- "@babel/types" "^7.16.7"
-
-"@babel/helper-optimise-call-expression@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe"
- integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==
- dependencies:
- "@babel/types" "^7.18.6"
-
-"@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.17.12", "@babel/helper-plugin-utils@^7.8.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz#86c2347da5acbf5583ba0a10aed4c9bf9da9cf96"
- integrity sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==
-
-"@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629"
- integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==
-
-"@babel/helper-remap-async-to-generator@^7.16.8":
- version "7.16.8"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz#29ffaade68a367e2ed09c90901986918d25e57e3"
- integrity sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.16.7"
- "@babel/helper-wrap-function" "^7.16.8"
- "@babel/types" "^7.16.8"
-
-"@babel/helper-replace-supers@^7.16.7", "@babel/helper-replace-supers@^7.18.2":
- version "7.18.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.18.2.tgz#41fdfcc9abaf900e18ba6e5931816d9062a7b2e0"
- integrity sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==
- dependencies:
- "@babel/helper-environment-visitor" "^7.18.2"
- "@babel/helper-member-expression-to-functions" "^7.17.7"
- "@babel/helper-optimise-call-expression" "^7.16.7"
- "@babel/traverse" "^7.18.2"
- "@babel/types" "^7.18.2"
-
-"@babel/helper-replace-supers@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz#243ecd2724d2071532b2c8ad2f0f9f083bcae331"
- integrity sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==
- dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-member-expression-to-functions" "^7.20.7"
- "@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
- "@babel/types" "^7.20.7"
-
-"@babel/helper-simple-access@^7.17.7", "@babel/helper-simple-access@^7.18.2":
- version "7.18.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz#4dc473c2169ac3a1c9f4a51cfcd091d1c36fcff9"
- integrity sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==
- dependencies:
- "@babel/types" "^7.18.2"
-
-"@babel/helper-simple-access@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9"
- integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==
- dependencies:
- "@babel/types" "^7.20.2"
-
-"@babel/helper-skip-transparent-expression-wrappers@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz#0ee3388070147c3ae051e487eca3ebb0e2e8bb09"
- integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==
- dependencies:
- "@babel/types" "^7.16.0"
-
-"@babel/helper-skip-transparent-expression-wrappers@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684"
- integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==
- dependencies:
- "@babel/types" "^7.20.0"
-
-"@babel/helper-split-export-declaration@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz#0b648c0c42da9d3920d85ad585f2778620b8726b"
- integrity sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==
- dependencies:
- "@babel/types" "^7.16.7"
-
-"@babel/helper-split-export-declaration@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075"
- integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==
- dependencies:
- "@babel/types" "^7.18.6"
-
-"@babel/helper-string-parser@^7.19.4":
- version "7.19.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
- integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
-
-"@babel/helper-validator-identifier@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
- integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
-
-"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
- version "7.19.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
- integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
-
-"@babel/helper-validator-option@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23"
- integrity sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==
-
-"@babel/helper-validator-option@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
- integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
-
-"@babel/helper-wrap-function@^7.16.8":
- version "7.16.8"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz#58afda087c4cd235de92f7ceedebca2c41274200"
- integrity sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==
- dependencies:
- "@babel/helper-function-name" "^7.16.7"
- "@babel/template" "^7.16.7"
- "@babel/traverse" "^7.16.8"
- "@babel/types" "^7.16.8"
-
-"@babel/helpers@^7.18.2":
- version "7.18.2"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.2.tgz#970d74f0deadc3f5a938bfa250738eb4ac889384"
- integrity sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==
- dependencies:
- "@babel/template" "^7.16.7"
- "@babel/traverse" "^7.18.2"
- "@babel/types" "^7.18.2"
-
-"@babel/helpers@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.7.tgz#04502ff0feecc9f20ecfaad120a18f011a8e6dce"
- integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==
- dependencies:
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
- "@babel/types" "^7.20.7"
-
-"@babel/highlight@^7.16.7":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.17.12.tgz#257de56ee5afbd20451ac0a75686b6b404257351"
- integrity sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==
- dependencies:
- "@babel/helper-validator-identifier" "^7.16.7"
- chalk "^2.0.0"
+ "@babel/template" "^7.22.15"
+ "@babel/traverse" "^7.23.2"
+ "@babel/types" "^7.23.0"
+
+"@babel/highlight@^7.22.13":
+ version "7.22.20"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54"
+ integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.22.20"
+ chalk "^2.4.2"
js-tokens "^4.0.0"
-"@babel/highlight@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
- integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
- dependencies:
- "@babel/helper-validator-identifier" "^7.18.6"
- chalk "^2.0.0"
- js-tokens "^4.0.0"
+"@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.22.15", "@babel/parser@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719"
+ integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==
-"@babel/parser@^7.13.16", "@babel/parser@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b"
- integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==
-
-"@babel/parser@^7.14.0", "@babel/parser@^7.16.7", "@babel/parser@^7.18.5":
- version "7.18.5"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.5.tgz#337062363436a893a2d22faa60be5bb37091c83c"
- integrity sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==
-
-"@babel/plugin-proposal-class-properties@^7.0.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.17.12.tgz#84f65c0cc247d46f40a6da99aadd6438315d80a4"
- integrity sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.17.12"
- "@babel/helper-plugin-utils" "^7.17.12"
-
-"@babel/plugin-proposal-class-properties@^7.13.0":
+"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
@@ -493,22 +280,14 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-proposal-export-default-from@^7.0.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.17.12.tgz#df785e638618d8ffa14e08c78c44d9695d083b73"
- integrity sha512-LpsTRw725eBAXXKUOnJJct+SEaOzwR78zahcLuripD2+dKc2Sj+8Q2DzA+GC/jOpOu/KlDXuxrzG214o1zTauQ==
+ version "7.22.17"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.22.17.tgz#91b60cd338f501cccdf549af2308768911ec5fbb"
+ integrity sha512-cop/3quQBVvdz6X5SJC6AhUv3C9DrVTM06LUEXimEdWAhCSyOJIr9NiZDU9leHZ0/aiG0Sh7Zmvaku5TWYNgbA==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/plugin-syntax-export-default-from" "^7.16.7"
-
-"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.17.12.tgz#1e93079bbc2cbc756f6db6a1925157c4a92b94be"
- integrity sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==
- dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-export-default-from" "^7.22.5"
-"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8":
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1"
integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==
@@ -517,37 +296,28 @@
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
"@babel/plugin-proposal-object-rest-spread@^7.0.0":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.0.tgz#79f2390c892ba2a68ec112eb0d895cfbd11155e8"
- integrity sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a"
+ integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==
dependencies:
- "@babel/compat-data" "^7.17.10"
- "@babel/helper-compilation-targets" "^7.17.10"
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/compat-data" "^7.20.5"
+ "@babel/helper-compilation-targets" "^7.20.7"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-transform-parameters" "^7.17.12"
+ "@babel/plugin-transform-parameters" "^7.20.7"
"@babel/plugin-proposal-optional-catch-binding@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz#c623a430674ffc4ab732fd0a0ae7722b67cb74cf"
- integrity sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==
+ version "7.18.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb"
+ integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
-"@babel/plugin-proposal-optional-chaining@^7.0.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.17.12.tgz#f96949e9bacace3a9066323a5cf90cfb9de67174"
- integrity sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
- "@babel/plugin-syntax-optional-chaining" "^7.8.3"
-
-"@babel/plugin-proposal-optional-chaining@^7.13.12":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz#49f2b372519ab31728cc14115bb0998b15bfda55"
- integrity sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==
+"@babel/plugin-proposal-optional-chaining@^7.0.0", "@babel/plugin-proposal-optional-chaining@^7.13.12":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea"
+ integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
@@ -567,33 +337,26 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.16.7.tgz#fa89cf13b60de2c3f79acdc2b52a21174c6de060"
- integrity sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==
+"@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.22.5.tgz#ac3a24b362a04415a017ab96b9b4483d0e2a6e44"
+ integrity sha512-ODAqWWXB/yReh/jVQDag/3/tl6lgBueQkk/TcfW/59Oykm4c8a55XloX0CTk2k2VJiFWMgHby9xNX29IbCv9dQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.17.12", "@babel/plugin-syntax-flow@^7.2.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.17.12.tgz#23d852902acd19f42923fca9d0f196984d124e73"
- integrity sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==
+"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.2.0", "@babel/plugin-syntax-flow@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz#163b820b9e7696ce134df3ee716d9c0c98035859"
+ integrity sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-syntax-flow@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz#774d825256f2379d06139be0c723c4dd444f3ca1"
- integrity sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==
+"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918"
+ integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
-
-"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.17.12.tgz#834035b45061983a491f60096f61a2e7c5674a47"
- integrity sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==
- dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
version "7.8.3"
@@ -623,309 +386,280 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-typescript@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.12.tgz#b54fc3be6de734a56b87508f99d6428b5b605a7b"
- integrity sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
-
-"@babel/plugin-syntax-typescript@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz#4e9a0cfc769c85689b77a2e642d24e9f697fc8c7"
- integrity sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==
+"@babel/plugin-syntax-typescript@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272"
+ integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-arrow-functions@^7.0.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.17.12.tgz#dddd783b473b1b1537ef46423e3944ff24898c45"
- integrity sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958"
+ integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-async-to-generator@^7.0.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.17.12.tgz#dbe5511e6b01eee1496c944e35cdfe3f58050832"
- integrity sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775"
+ integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==
dependencies:
- "@babel/helper-module-imports" "^7.16.7"
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/helper-remap-async-to-generator" "^7.16.8"
+ "@babel/helper-module-imports" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-remap-async-to-generator" "^7.22.5"
"@babel/plugin-transform-block-scoped-functions@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz#4d0d57d9632ef6062cdf354bb717102ee042a620"
- integrity sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024"
+ integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-block-scoping@^7.0.0":
- version "7.18.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.4.tgz#7988627b3e9186a13e4d7735dc9c34a056613fb9"
- integrity sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw==
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz#8744d02c6c264d82e1a4bc5d2d501fd8aff6f022"
+ integrity sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-classes@^7.0.0":
- version "7.18.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.4.tgz#51310b812a090b846c784e47087fa6457baef814"
- integrity sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.16.7"
- "@babel/helper-environment-visitor" "^7.18.2"
- "@babel/helper-function-name" "^7.17.9"
- "@babel/helper-optimise-call-expression" "^7.16.7"
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/helper-replace-supers" "^7.18.2"
- "@babel/helper-split-export-declaration" "^7.16.7"
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.15.tgz#aaf4753aee262a232bbc95451b4bdf9599c65a0b"
+ integrity sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-compilation-targets" "^7.22.15"
+ "@babel/helper-environment-visitor" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-optimise-call-expression" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.9"
+ "@babel/helper-split-export-declaration" "^7.22.6"
globals "^11.1.0"
"@babel/plugin-transform-computed-properties@^7.0.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.17.12.tgz#bca616a83679698f3258e892ed422546e531387f"
- integrity sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869"
+ integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/template" "^7.22.5"
"@babel/plugin-transform-destructuring@^7.0.0":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.0.tgz#dc4f92587e291b4daa78aa20cc2d7a63aa11e858"
- integrity sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz#6447aa686be48b32eaf65a73e0e2c0bd010a266c"
+ integrity sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-exponentiation-operator@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz#efa9862ef97e9e9e5f653f6ddc7b665e8536fe9b"
- integrity sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==
- dependencies:
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.7"
- "@babel/helper-plugin-utils" "^7.16.7"
-
-"@babel/plugin-transform-flow-strip-types@^7.0.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.17.12.tgz#5e070f99a4152194bd9275de140e83a92966cab3"
- integrity sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a"
+ integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/plugin-syntax-flow" "^7.17.12"
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-flow-strip-types@^7.18.6":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz#e9e8606633287488216028719638cbbb2f2dde8f"
- integrity sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==
+"@babel/plugin-transform-flow-strip-types@^7.0.0", "@babel/plugin-transform-flow-strip-types@^7.22.5":
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz#0bb17110c7bf5b35a60754b2f00c58302381dee2"
+ integrity sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/plugin-syntax-flow" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-flow" "^7.22.5"
"@babel/plugin-transform-for-of@^7.0.0":
- version "7.18.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.1.tgz#ed14b657e162b72afbbb2b4cdad277bf2bb32036"
- integrity sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.15.tgz#f64b4ccc3a4f131a996388fae7680b472b306b29"
+ integrity sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-function-name@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz#5ab34375c64d61d083d7d2f05c38d90b97ec65cf"
- integrity sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143"
+ integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==
dependencies:
- "@babel/helper-compilation-targets" "^7.16.7"
- "@babel/helper-function-name" "^7.16.7"
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-compilation-targets" "^7.22.5"
+ "@babel/helper-function-name" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-literals@^7.0.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.17.12.tgz#97131fbc6bbb261487105b4b3edbf9ebf9c830ae"
- integrity sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920"
+ integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-member-expression-literals@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz#6e5dcf906ef8a098e630149d14c867dd28f92384"
- integrity sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
-
-"@babel/plugin-transform-modules-commonjs@^7.0.0":
- version "7.18.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.2.tgz#1aa8efa2e2a6e818b6a7f2235fceaf09bdb31e9e"
- integrity sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def"
+ integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==
dependencies:
- "@babel/helper-module-transforms" "^7.18.0"
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/helper-simple-access" "^7.18.2"
- babel-plugin-dynamic-import-node "^2.3.3"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-modules-commonjs@^7.13.8":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.7.tgz#abb5f84695e74d46acf48244082f6cbf8bb23120"
- integrity sha512-76jqqFiFdCD+RJwEdtBHUG2/rEKQAmpejPbAKyQECEE3/y4U5CMPc9IXvipS990vgQhzq+ZRw6WJ+q4xJ/P24w==
+"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz#b3dba4757133b2762c00f4f94590cf6d52602481"
+ integrity sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==
dependencies:
- "@babel/helper-module-transforms" "^7.20.7"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-simple-access" "^7.20.2"
+ "@babel/helper-module-transforms" "^7.23.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-simple-access" "^7.22.5"
"@babel/plugin-transform-object-assign@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.16.7.tgz#5fe08d63dccfeb6a33aa2638faf98e5c584100f8"
- integrity sha512-R8mawvm3x0COTJtveuoqZIjNypn2FjfvXZr4pSQ8VhEFBuQGBz4XhHasZtHXjgXU4XptZ4HtGof3NoYc93ZH9Q==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.22.5.tgz#290c1b9555dcea48bb2c29ad94237777600d04f9"
+ integrity sha512-iDhx9ARkXq4vhZ2CYOSnQXkmxkDgosLi3J8Z17mKz7LyzthtkdVchLD7WZ3aXeCuvJDOW3+1I5TpJmwIbF9MKQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-object-super@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz#ac359cf8d32cf4354d27a46867999490b6c32a94"
- integrity sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c"
+ integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
- "@babel/helper-replace-supers" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-replace-supers" "^7.22.5"
-"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.17.12":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.17.12.tgz#eb467cd9586ff5ff115a9880d6fdbd4a846b7766"
- integrity sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==
+"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz#719ca82a01d177af358df64a514d64c2e3edb114"
+ integrity sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-property-literals@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz#2dadac85155436f22c696c4827730e0fe1057a55"
- integrity sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766"
+ integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-react-display-name@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.16.7.tgz#7b6d40d232f4c0f550ea348593db3b21e2404340"
- integrity sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz#3c4326f9fce31c7968d6cb9debcaf32d9e279a2b"
+ integrity sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-react-jsx-self@^7.0.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.17.12.tgz#7f2e9b8c08d6a4204733138d8c29d4dba4bb66c2"
- integrity sha512-7S9G2B44EnYOx74mue02t1uD8ckWZ/ee6Uz/qfdzc35uWHX5NgRy9i+iJSb2LFRgMd+QV9zNcStQaazzzZ3n3Q==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.22.5.tgz#ca2fdc11bc20d4d46de01137318b13d04e481d8e"
+ integrity sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-react-jsx-source@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.16.7.tgz#1879c3f23629d287cc6186a6c683154509ec70c0"
- integrity sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.22.5.tgz#49af1615bfdf6ed9d3e9e43e425e0b2b65d15b6c"
+ integrity sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-react-jsx@^7.0.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.12.tgz#2aa20022709cd6a3f40b45d60603d5f269586dba"
- integrity sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz#7e6266d88705d7c49f11c98db8b9464531289cd6"
+ integrity sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.16.7"
- "@babel/helper-module-imports" "^7.16.7"
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/plugin-syntax-jsx" "^7.17.12"
- "@babel/types" "^7.17.12"
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-module-imports" "^7.22.15"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-jsx" "^7.22.5"
+ "@babel/types" "^7.22.15"
"@babel/plugin-transform-regenerator@^7.0.0":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.0.tgz#44274d655eb3f1af3f3a574ba819d3f48caf99d5"
- integrity sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==
+ version "7.22.10"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.10.tgz#8ceef3bd7375c4db7652878b0241b2be5d0c3cca"
+ integrity sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
- regenerator-transform "^0.15.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ regenerator-transform "^0.15.2"
"@babel/plugin-transform-runtime@^7.0.0":
- version "7.18.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.5.tgz#f4d3188ba6a8815793993c71c2c225d0ee1d7743"
- integrity sha512-Q17hHxXr2fplrE+5BSC1j1Fo5cOA8YeP8XW3/1paI8MzF/faZGh0MaH1KC4jLAvqLPamQWHB5/B7KqSLY1kuHA==
- dependencies:
- "@babel/helper-module-imports" "^7.16.7"
- "@babel/helper-plugin-utils" "^7.17.12"
- babel-plugin-polyfill-corejs2 "^0.3.0"
- babel-plugin-polyfill-corejs3 "^0.5.0"
- babel-plugin-polyfill-regenerator "^0.3.0"
- semver "^6.3.0"
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.2.tgz#c956a3f8d1aa50816ff6c30c6288d66635c12990"
+ integrity sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==
+ dependencies:
+ "@babel/helper-module-imports" "^7.22.15"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ babel-plugin-polyfill-corejs2 "^0.4.6"
+ babel-plugin-polyfill-corejs3 "^0.8.5"
+ babel-plugin-polyfill-regenerator "^0.5.3"
+ semver "^6.3.1"
"@babel/plugin-transform-shorthand-properties@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz#e8549ae4afcf8382f711794c0c7b6b934c5fbd2a"
- integrity sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624"
+ integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-spread@^7.0.0":
- version "7.17.12"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.17.12.tgz#c112cad3064299f03ea32afed1d659223935d1f5"
- integrity sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b"
+ integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5"
"@babel/plugin-transform-sticky-regex@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz#c84741d4f4a38072b9a1e2e3fd56d359552e8660"
- integrity sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa"
+ integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-template-literals@^7.0.0":
- version "7.18.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.2.tgz#31ed6915721864847c48b656281d0098ea1add28"
- integrity sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff"
+ integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==
dependencies:
- "@babel/helper-plugin-utils" "^7.17.12"
+ "@babel/helper-plugin-utils" "^7.22.5"
-"@babel/plugin-transform-typescript@^7.18.6":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.7.tgz#673f49499cd810ae32a1ea5f3f8fab370987e055"
- integrity sha512-m3wVKEvf6SoszD8pu4NZz3PvfKRCMgk6D6d0Qi9hNnlM5M6CFS92EgF4EiHVLKbU0r/r7ty1hg7NPZwE7WRbYw==
+"@babel/plugin-transform-typescript@^7.22.15", "@babel/plugin-transform-typescript@^7.5.0":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz#15adef906451d86349eb4b8764865c960eb54127"
+ integrity sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.20.7"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/plugin-syntax-typescript" "^7.20.0"
-
-"@babel/plugin-transform-typescript@^7.5.0":
- version "7.18.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.4.tgz#587eaf6a39edb8c06215e550dc939faeadd750bf"
- integrity sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.18.0"
- "@babel/helper-plugin-utils" "^7.17.12"
- "@babel/plugin-syntax-typescript" "^7.17.12"
+ "@babel/helper-annotate-as-pure" "^7.22.5"
+ "@babel/helper-create-class-features-plugin" "^7.22.15"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/plugin-syntax-typescript" "^7.22.5"
"@babel/plugin-transform-unicode-regex@^7.0.0":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz#0f7aa4a501198976e25e82702574c34cfebe9ef2"
- integrity sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==
+ version "7.22.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183"
+ integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.16.7"
- "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-create-regexp-features-plugin" "^7.22.5"
+ "@babel/helper-plugin-utils" "^7.22.5"
"@babel/preset-flow@^7.13.13":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.18.6.tgz#83f7602ba566e72a9918beefafef8ef16d2810cb"
- integrity sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.22.15.tgz#30318deb9b3ebd9f5738e96da03a531e0cd3165d"
+ integrity sha512-dB5aIMqpkgbTfN5vDdTRPzjqtWiZcRESNR88QYnoPR+bmdYoluOzMX9tQerTv0XzSgZYctPfO1oc0N5zdog1ew==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-validator-option" "^7.18.6"
- "@babel/plugin-transform-flow-strip-types" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-validator-option" "^7.22.15"
+ "@babel/plugin-transform-flow-strip-types" "^7.22.5"
"@babel/preset-typescript@^7.13.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz#ce64be3e63eddc44240c6358daefac17b3186399"
- integrity sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.23.2.tgz#c8de488130b7081f7e1482936ad3de5b018beef4"
+ integrity sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-validator-option" "^7.18.6"
- "@babel/plugin-transform-typescript" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.22.5"
+ "@babel/helper-validator-option" "^7.22.15"
+ "@babel/plugin-syntax-jsx" "^7.22.5"
+ "@babel/plugin-transform-modules-commonjs" "^7.23.0"
+ "@babel/plugin-transform-typescript" "^7.22.15"
"@babel/register@^7.13.16":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.18.9.tgz#1888b24bc28d5cc41c412feb015e9ff6b96e439c"
- integrity sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.22.15.tgz#c2c294a361d59f5fa7bcc8b97ef7319c32ecaec7"
+ integrity sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==
dependencies:
clone-deep "^4.0.1"
find-cache-dir "^2.0.0"
@@ -933,88 +667,72 @@
pirates "^4.0.5"
source-map-support "^0.5.16"
-"@babel/runtime@^7.12.5", "@babel/runtime@^7.8.4":
- version "7.18.3"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.3.tgz#c7b654b57f6f63cf7f8b418ac9ca04408c4579f4"
- integrity sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==
- dependencies:
- regenerator-runtime "^0.13.4"
-
-"@babel/template@^7.0.0", "@babel/template@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.7.tgz#8d126c8701fde4d66b264b3eba3d96f07666d155"
- integrity sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==
- dependencies:
- "@babel/code-frame" "^7.16.7"
- "@babel/parser" "^7.16.7"
- "@babel/types" "^7.16.7"
-
-"@babel/template@^7.18.10", "@babel/template@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8"
- integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==
- dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/parser" "^7.20.7"
- "@babel/types" "^7.20.7"
-
-"@babel/traverse@^7.13.0", "@babel/traverse@^7.14.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.18.0", "@babel/traverse@^7.18.2", "@babel/traverse@^7.18.5", "@babel/traverse@^7.7.4":
- version "7.18.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.5.tgz#94a8195ad9642801837988ab77f36e992d9a20cd"
- integrity sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==
- dependencies:
- "@babel/code-frame" "^7.16.7"
- "@babel/generator" "^7.18.2"
- "@babel/helper-environment-visitor" "^7.18.2"
- "@babel/helper-function-name" "^7.17.9"
- "@babel/helper-hoist-variables" "^7.16.7"
- "@babel/helper-split-export-declaration" "^7.16.7"
- "@babel/parser" "^7.18.5"
- "@babel/types" "^7.18.4"
- debug "^4.1.0"
- globals "^11.1.0"
+"@babel/regjsgen@^0.8.0":
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
+ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
-"@babel/traverse@^7.20.7":
- version "7.20.8"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.8.tgz#e3a23eb04af24f8bbe8a8ba3eef6155b77df0b08"
- integrity sha512-/RNkaYDeCy4MjyV70+QkSHhxbvj2JO/5Ft2Pa880qJOG8tWrqcT/wXUuCCv43yogfqPzHL77Xu101KQPf4clnQ==
- dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.7"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-hoist-variables" "^7.18.6"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.20.7"
- "@babel/types" "^7.20.7"
+"@babel/runtime@^7.12.5", "@babel/runtime@^7.8.4":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.2.tgz#062b0ac103261d68a966c4c7baf2ae3e62ec3885"
+ integrity sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==
+ dependencies:
+ regenerator-runtime "^0.14.0"
+
+"@babel/template@^7.0.0", "@babel/template@^7.22.15", "@babel/template@^7.22.5":
+ version "7.22.15"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38"
+ integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==
+ dependencies:
+ "@babel/code-frame" "^7.22.13"
+ "@babel/parser" "^7.22.15"
+ "@babel/types" "^7.22.15"
+
+"@babel/traverse@^7.14.0", "@babel/traverse@^7.23.2":
+ version "7.23.2"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8"
+ integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==
+ dependencies:
+ "@babel/code-frame" "^7.22.13"
+ "@babel/generator" "^7.23.0"
+ "@babel/helper-environment-visitor" "^7.22.20"
+ "@babel/helper-function-name" "^7.23.0"
+ "@babel/helper-hoist-variables" "^7.22.5"
+ "@babel/helper-split-export-declaration" "^7.22.6"
+ "@babel/parser" "^7.23.0"
+ "@babel/types" "^7.23.0"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.17.12", "@babel/types@^7.18.0", "@babel/types@^7.18.2", "@babel/types@^7.18.4":
- version "7.18.4"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.4.tgz#27eae9b9fd18e9dccc3f9d6ad051336f307be354"
- integrity sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==
+"@babel/types@^7.0.0", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0":
+ version "7.23.0"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb"
+ integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==
dependencies:
- "@babel/helper-validator-identifier" "^7.16.7"
+ "@babel/helper-string-parser" "^7.22.5"
+ "@babel/helper-validator-identifier" "^7.22.20"
to-fast-properties "^2.0.0"
-"@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f"
- integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==
+"@eslint-community/eslint-utils@^4.2.0":
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
+ integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
dependencies:
- "@babel/helper-string-parser" "^7.19.4"
- "@babel/helper-validator-identifier" "^7.19.1"
- to-fast-properties "^2.0.0"
+ eslint-visitor-keys "^3.3.0"
-"@eslint/eslintrc@^1.4.0":
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.4.0.tgz#8ec64e0df3e7a1971ee1ff5158da87389f167a63"
- integrity sha512-7yfvXy6MWLgWSFsLhz5yH3iQ52St8cdUY6FoGieKkRDVxuxmrNuUetIuu6cmjNWwniUHiWXjxCr5tTXDrbYS5A==
+"@eslint-community/regexpp@^4.4.0", "@eslint-community/regexpp@^4.6.1":
+ version "4.9.1"
+ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.9.1.tgz#449dfa81a57a1d755b09aa58d826c1262e4283b4"
+ integrity sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==
+
+"@eslint/eslintrc@^2.1.2":
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.2.tgz#c6936b4b328c64496692f76944e755738be62396"
+ integrity sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
- espree "^9.4.0"
+ espree "^9.6.0"
globals "^13.19.0"
ignore "^5.2.0"
import-fresh "^3.2.1"
@@ -1022,6 +740,11 @@
minimatch "^3.1.2"
strip-json-comments "^3.1.1"
+"@eslint/js@8.51.0":
+ version "8.51.0"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.51.0.tgz#6d419c240cfb2b66da37df230f7e7eef801c32fa"
+ integrity sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==
+
"@hapi/hoek@^9.0.0":
version "9.3.0"
resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.3.0.tgz#8368869dcb735be2e7f5cb7647de78e167a251fb"
@@ -1034,12 +757,12 @@
dependencies:
"@hapi/hoek" "^9.0.0"
-"@humanwhocodes/config-array@^0.11.8":
- version "0.11.8"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9"
- integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==
+"@humanwhocodes/config-array@^0.11.11":
+ version "0.11.12"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.12.tgz#549afec9bfce5232ac6325db12765f407e70e3a0"
+ integrity sha512-NlGesA1usRNn6ctHCZ21M4/dKPgW9Nn1FypRdIKKgZOKzkVV4T1FlK5mBiLhHBCDmEbdQG0idrcXlbZfksJ+RA==
dependencies:
- "@humanwhocodes/object-schema" "^1.2.1"
+ "@humanwhocodes/object-schema" "^2.0.0"
debug "^4.1.1"
minimatch "^3.0.5"
@@ -1048,10 +771,10 @@
resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
-"@humanwhocodes/object-schema@^1.2.1":
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
- integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
+"@humanwhocodes/object-schema@^2.0.0":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.0.tgz#04ad39d82176c7da1591c81e78b993cffd8348d8"
+ integrity sha512-9S9QrXY2K0L4AGDcSgTi9vgiCcG8VcBv4Mp7/1hDPYoswIy6Z6KO5blYto82BT8M0MZNRWmCFLpCs3HlpYGGdw==
"@jest/create-cache-key-function@^27.0.1":
version "27.5.1"
@@ -1082,59 +805,37 @@
"@types/yargs" "^16.0.0"
chalk "^4.0.0"
-"@jridgewell/gen-mapping@^0.1.0":
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996"
- integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==
- dependencies:
- "@jridgewell/set-array" "^1.0.0"
- "@jridgewell/sourcemap-codec" "^1.4.10"
-
-"@jridgewell/gen-mapping@^0.3.0":
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz#cf92a983c83466b8c0ce9124fadeaf09f7c66ea9"
- integrity sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==
- dependencies:
- "@jridgewell/set-array" "^1.0.0"
- "@jridgewell/sourcemap-codec" "^1.4.10"
- "@jridgewell/trace-mapping" "^0.3.9"
-
-"@jridgewell/gen-mapping@^0.3.2":
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9"
- integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==
+"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098"
+ integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
-"@jridgewell/resolve-uri@^3.0.3":
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz#30cd49820a962aff48c8fffc5cd760151fca61fe"
- integrity sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==
-
-"@jridgewell/set-array@^1.0.0":
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.1.tgz#36a6acc93987adcf0ba50c66908bd0b70de8afea"
- integrity sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==
+"@jridgewell/resolve-uri@^3.1.0":
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721"
+ integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==
"@jridgewell/set-array@^1.0.1":
version "1.1.2"
resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
-"@jridgewell/sourcemap-codec@^1.4.10":
- version "1.4.13"
- resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz#b6461fb0c2964356c469e115f504c95ad97ab88c"
- integrity sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==
+"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
+ version "1.4.15"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
+ integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
-"@jridgewell/trace-mapping@^0.3.9":
- version "0.3.13"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz#dcfe3e95f224c8fe97a87a5235defec999aa92ea"
- integrity sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==
+"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
+ version "0.3.20"
+ resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f"
+ integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==
dependencies:
- "@jridgewell/resolve-uri" "^3.0.3"
- "@jridgewell/sourcemap-codec" "^1.4.10"
+ "@jridgewell/resolve-uri" "^3.1.0"
+ "@jridgewell/sourcemap-codec" "^1.4.14"
"@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1":
version "5.1.1-v1"
@@ -1164,25 +865,25 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@picovoice/picovoice-react-native@=2.2.2":
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/@picovoice/picovoice-react-native/-/picovoice-react-native-2.2.2.tgz#b80f6134b59d16af48b4ef7f8463921cf52bb35b"
- integrity sha512-YxycAYwxODnTLvDsw5XzcjdOvPF1dY5vsw7fbqyiE49Ntm0FGKQyyZ42r+FY19oNqW+1o2vpefYV0I5sjHqzAg==
+"@picovoice/picovoice-react-native@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/picovoice-react-native/-/picovoice-react-native-3.0.0.tgz#97fece58243b2bec83a521cfdc17c25b47f44b45"
+ integrity sha512-XdOB+ShXWqsFxIvr1FlVUgKzAZaQymDobGs2lrerKmqL/117CqYMCwqdH66IB7iujBE0QREWhg5BWdoulZ09gg==
-"@picovoice/porcupine-react-native@=2.2.1":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@picovoice/porcupine-react-native/-/porcupine-react-native-2.2.1.tgz#734327d9bf8791fa5a8e8241b14c23fdc5a7e8c8"
- integrity sha512-d4JC/PX9KmHLbEB/h1LD39UvJdr2D9YZ3Jtn1AwStw4WonRKpNTJA07zXRDdJDb3UsZFRcT+4Ay96PiLYTrRyg==
+"@picovoice/porcupine-react-native@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/porcupine-react-native/-/porcupine-react-native-3.0.0.tgz#f9e670d317b42de53984338d86350ffd1d2ac6a0"
+ integrity sha512-sMw4UwwzCnWyXpqlRYTiWaPlLoHoK/RqW4t+wUBAg8GxAlSD9JkRv6hWc1B5i2FPqWD0Txqm7nFDoDL6EEvNsw==
"@picovoice/react-native-voice-processor@^1.2.0":
version "1.2.0"
resolved "https://registry.yarnpkg.com/@picovoice/react-native-voice-processor/-/react-native-voice-processor-1.2.0.tgz#82a98b41d9236ababe330dae873062ee0e1b24c3"
integrity sha512-zolTEo3qsqeUwY7JRslV/yhiA+oBrkeogOTxjHIEJ//yEsr7YKlI1PcqTbU5/xjmUiukh62gmwTXhosnQYdasQ==
-"@picovoice/rhino-react-native@=2.2.2":
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/@picovoice/rhino-react-native/-/rhino-react-native-2.2.2.tgz#8d18e255eb53a94f8842bee6c19ebcf577931d1e"
- integrity sha512-f54WoYWgnSIkJRpAW+0ZKMQVEZ+he1YM136CXjVPWDtNzT3tsNZGSATGtKedAKr7zon3ko6FlXT0gsHPXjl8YQ==
+"@picovoice/rhino-react-native@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@picovoice/rhino-react-native/-/rhino-react-native-3.0.0.tgz#0f73d3f493cc4e3e73138bfd946c9cacb9859339"
+ integrity sha512-2oSsn8/8hLo4ke2vHg9gF7e4CNDKorgdbh+gVudfiq7eiiZhgt7KL+vj0/a4V5N2maozAHMPvrog6ecAOddgiw==
"@react-native-community/cli-debugger-ui@^7.0.3":
version "7.0.3"
@@ -1373,9 +1074,9 @@
eslint-plugin-react-native "^4.0.0"
"@react-native-community/eslint-plugin@^1.1.0":
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/eslint-plugin/-/eslint-plugin-1.2.0.tgz#7d6d789ae8edf73dc9bed1246cd48277edea8066"
- integrity sha512-o6aam+0Ug1xGK3ABYmBm0B1YuEKfM/5kaoZO0eHbZwSpw9UzDX4G5y4Nx/K20FHqUmJHkZmLvOUFYwN4N+HqKA==
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/eslint-plugin/-/eslint-plugin-1.3.0.tgz#9e558170c106bbafaa1ef502bd8e6d4651012bf9"
+ integrity sha512-+zDZ20NUnSWghj7Ku5aFphMzuM9JulqCW+aPXT6IfIXFbb8tzYTTOSeRFOtuekJ99ibW2fUCSsjuKNlwDIbHFg==
"@react-native/assets@1.0.0":
version "1.0.0"
@@ -1404,7 +1105,7 @@
dependencies:
"@hapi/hoek" "^9.0.0"
-"@sideway/formula@^3.0.0":
+"@sideway/formula@^3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f"
integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==
@@ -1415,174 +1116,182 @@
integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==
"@types/graceful-fs@^4.1.2":
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15"
- integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==
+ version "4.1.8"
+ resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.8.tgz#417e461e4dc79d957dc3107f45fe4973b09c2915"
+ integrity sha512-NhRH7YzWq8WiNKVavKPBmtLYZHxNY19Hh+az28O/phfp68CF45pMFud+ZzJ8ewnxnC5smIdF3dqFeiSUQ5I+pw==
dependencies:
"@types/node" "*"
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0":
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44"
- integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#fdfdd69fa16d530047d9963635bd77c71a08c068"
+ integrity sha512-zONci81DZYCZjiLe0r6equvZut0b+dBRPBN5kBDjsONnutYNtJMoWQ9uR2RkL1gLG9NMTzvf+29e5RFfPbeKhQ==
"@types/istanbul-lib-report@*":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
- integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.2.tgz#394798d5f727402eb5ec99eb9618ffcd2b7645a1"
+ integrity sha512-8toY6FgdltSdONav1XtUHl4LN1yTmLza+EuDazb/fEmRNCwjyqNVIQWs2IfC74IqjHkREs/nQ2FWq5kZU9IC0w==
dependencies:
"@types/istanbul-lib-coverage" "*"
"@types/istanbul-reports@^3.0.0":
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff"
- integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.3.tgz#0313e2608e6d6955d195f55361ddeebd4b74c6e7"
+ integrity sha512-1nESsePMBlf0RPRffLZi5ujYh7IH1BWL4y9pr+Bn3cJBdxz+RTP8bUFljLz9HvzhhOSWKdyBZ4DIivdL6rvgZg==
dependencies:
"@types/istanbul-lib-report" "*"
"@types/json-schema@^7.0.9":
- version "7.0.11"
- resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
- integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
+ version "7.0.14"
+ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.14.tgz#74a97a5573980802f32c8e47b663530ab3b6b7d1"
+ integrity sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==
"@types/node@*":
- version "18.0.0"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.0.tgz#67c7b724e1bcdd7a8821ce0d5ee184d3b4dd525a"
- integrity sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==
+ version "20.8.7"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.7.tgz#ad23827850843de973096edfc5abc9e922492a25"
+ integrity sha512-21TKHHh3eUHIi2MloeptJWALuCu5H7HQTdTrWIFReA8ad+aggoX+lRes3ex7/FtpC+sVUpFMQ+QTfYr74mruiQ==
+ dependencies:
+ undici-types "~5.25.1"
"@types/prop-types@*":
- version "15.7.5"
- resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf"
- integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==
+ version "15.7.9"
+ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.9.tgz#b6f785caa7ea1fe4414d9df42ee0ab67f23d8a6d"
+ integrity sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==
"@types/react-native@^0.68.7":
- version "0.68.15"
- resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.68.15.tgz#605aa76c70e41edd24675de34dc8036725db5dd3"
- integrity sha512-NGEBnRm3eFqz/gZXTw06Ad6S0AnLAUivcepdCBTP96NL1eh9eTI3nGpe0w5mlynlHRrEXYBhXrUVDhfMBl4OPA==
+ version "0.68.17"
+ resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.68.17.tgz#58a086c43f7c1ca5a0ac46f305a494d55ea32c74"
+ integrity sha512-EYHfFZjuVNyNwLFMU8OT2vx6m/gIfyfm/fJWL3RhyC5JvGXi7bu6kHQNe9k6Z5FCEZqokth46IcJ3NadGuGdgg==
dependencies:
"@types/react" "^17"
"@types/react@^17", "@types/react@^17.0.33":
- version "17.0.52"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.52.tgz#10d8b907b5c563ac014a541f289ae8eaa9bf2e9b"
- integrity sha512-vwk8QqVODi0VaZZpDXQCmEmiOuyjEFPY7Ttaw5vjM112LOq37yz1CDJGrRJwA1fYEq4Iitd5rnjd1yWAc/bT+A==
+ version "17.0.69"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.69.tgz#245a0cf2f5b0fb1d645691d3083e3c7d4409b98f"
+ integrity sha512-klEeru//GhiQvXUBayz0Q4l3rKHWsBR/EUOhOeow6hK2jV7MlO44+8yEk6+OtPeOlRfnpUnrLXzGK+iGph5aeg==
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
csstype "^3.0.2"
"@types/scheduler@*":
- version "0.16.2"
- resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
- integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
+ version "0.16.5"
+ resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.5.tgz#4751153abbf8d6199babb345a52e1eb4167d64af"
+ integrity sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw==
"@types/semver@^7.3.12":
- version "7.3.13"
- resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91"
- integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==
+ version "7.5.4"
+ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.4.tgz#0a41252ad431c473158b22f9bfb9a63df7541cff"
+ integrity sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ==
"@types/yargs-parser@*":
- version "21.0.0"
- resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b"
- integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==
+ version "21.0.2"
+ resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.2.tgz#7bd04c5da378496ef1695a1008bf8f71847a8b8b"
+ integrity sha512-5qcvofLPbfjmBfKaLfj/+f+Sbd6pN4zl7w7VSVI5uz7m9QZTuB2aZAa2uo1wHFBNN2x6g/SoTkXmd8mQnQF2Cw==
"@types/yargs@^15.0.0":
- version "15.0.14"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.14.tgz#26d821ddb89e70492160b66d10a0eb6df8f6fb06"
- integrity sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==
+ version "15.0.17"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.17.tgz#bea870ba551b43831bfaa75de2e4a3849c39322b"
+ integrity sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==
dependencies:
"@types/yargs-parser" "*"
"@types/yargs@^16.0.0":
- version "16.0.4"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977"
- integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==
+ version "16.0.7"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.7.tgz#b0d0502cb5f6c17994df72a600049f10bbf17203"
+ integrity sha512-lQcYmxWuOfJq4IncK88/nwud9rwr1F04CFc5xzk0k4oKVyz/AI35TfsXmhjf6t8zp8mpCOi17BfvuNWx+zrYkg==
dependencies:
"@types/yargs-parser" "*"
"@typescript-eslint/eslint-plugin@^5.30.5":
- version "5.47.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.47.0.tgz#dadb79df3b0499699b155839fd6792f16897d910"
- integrity sha512-AHZtlXAMGkDmyLuLZsRpH3p4G/1iARIwc/T0vIem2YB+xW6pZaXYXzCBnZSF/5fdM97R9QqZWZ+h3iW10XgevQ==
- dependencies:
- "@typescript-eslint/scope-manager" "5.47.0"
- "@typescript-eslint/type-utils" "5.47.0"
- "@typescript-eslint/utils" "5.47.0"
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz#aeef0328d172b9e37d9bab6dbc13b87ed88977db"
+ integrity sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==
+ dependencies:
+ "@eslint-community/regexpp" "^4.4.0"
+ "@typescript-eslint/scope-manager" "5.62.0"
+ "@typescript-eslint/type-utils" "5.62.0"
+ "@typescript-eslint/utils" "5.62.0"
debug "^4.3.4"
+ graphemer "^1.4.0"
ignore "^5.2.0"
natural-compare-lite "^1.4.0"
- regexpp "^3.2.0"
semver "^7.3.7"
tsutils "^3.21.0"
"@typescript-eslint/parser@^5.30.5":
- version "5.47.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.47.0.tgz#62e83de93499bf4b500528f74bf2e0554e3a6c8d"
- integrity sha512-udPU4ckK+R1JWCGdQC4Qa27NtBg7w020ffHqGyAK8pAgOVuNw7YaKXGChk+udh+iiGIJf6/E/0xhVXyPAbsczw==
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.62.0.tgz#1b63d082d849a2fcae8a569248fbe2ee1b8a56c7"
+ integrity sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==
dependencies:
- "@typescript-eslint/scope-manager" "5.47.0"
- "@typescript-eslint/types" "5.47.0"
- "@typescript-eslint/typescript-estree" "5.47.0"
+ "@typescript-eslint/scope-manager" "5.62.0"
+ "@typescript-eslint/types" "5.62.0"
+ "@typescript-eslint/typescript-estree" "5.62.0"
debug "^4.3.4"
-"@typescript-eslint/scope-manager@5.47.0":
- version "5.47.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.47.0.tgz#f58144a6b0ff58b996f92172c488813aee9b09df"
- integrity sha512-dvJab4bFf7JVvjPuh3sfBUWsiD73aiftKBpWSfi3sUkysDQ4W8x+ZcFpNp7Kgv0weldhpmMOZBjx1wKN8uWvAw==
+"@typescript-eslint/scope-manager@5.62.0":
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz#d9457ccc6a0b8d6b37d0eb252a23022478c5460c"
+ integrity sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==
dependencies:
- "@typescript-eslint/types" "5.47.0"
- "@typescript-eslint/visitor-keys" "5.47.0"
+ "@typescript-eslint/types" "5.62.0"
+ "@typescript-eslint/visitor-keys" "5.62.0"
-"@typescript-eslint/type-utils@5.47.0":
- version "5.47.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.47.0.tgz#2b440979c574e317d3473225ae781f292c99e55d"
- integrity sha512-1J+DFFrYoDUXQE1b7QjrNGARZE6uVhBqIvdaXTe5IN+NmEyD68qXR1qX1g2u4voA+nCaelQyG8w30SAOihhEYg==
+"@typescript-eslint/type-utils@5.62.0":
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz#286f0389c41681376cdad96b309cedd17d70346a"
+ integrity sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==
dependencies:
- "@typescript-eslint/typescript-estree" "5.47.0"
- "@typescript-eslint/utils" "5.47.0"
+ "@typescript-eslint/typescript-estree" "5.62.0"
+ "@typescript-eslint/utils" "5.62.0"
debug "^4.3.4"
tsutils "^3.21.0"
-"@typescript-eslint/types@5.47.0":
- version "5.47.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.47.0.tgz#67490def406eaa023dbbd8da42ee0d0c9b5229d3"
- integrity sha512-eslFG0Qy8wpGzDdYKu58CEr3WLkjwC5Usa6XbuV89ce/yN5RITLe1O8e+WFEuxnfftHiJImkkOBADj58ahRxSg==
+"@typescript-eslint/types@5.62.0":
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f"
+ integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==
-"@typescript-eslint/typescript-estree@5.47.0":
- version "5.47.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.47.0.tgz#ed971a11c5c928646d6ba7fc9dfdd6e997649aca"
- integrity sha512-LxfKCG4bsRGq60Sqqu+34QT5qT2TEAHvSCCJ321uBWywgE2dS0LKcu5u+3sMGo+Vy9UmLOhdTw5JHzePV/1y4Q==
+"@typescript-eslint/typescript-estree@5.62.0":
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz#7d17794b77fabcac615d6a48fb143330d962eb9b"
+ integrity sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==
dependencies:
- "@typescript-eslint/types" "5.47.0"
- "@typescript-eslint/visitor-keys" "5.47.0"
+ "@typescript-eslint/types" "5.62.0"
+ "@typescript-eslint/visitor-keys" "5.62.0"
debug "^4.3.4"
globby "^11.1.0"
is-glob "^4.0.3"
semver "^7.3.7"
tsutils "^3.21.0"
-"@typescript-eslint/utils@5.47.0", "@typescript-eslint/utils@^5.10.0":
- version "5.47.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.47.0.tgz#b5005f7d2696769a1fdc1e00897005a25b3a0ec7"
- integrity sha512-U9xcc0N7xINrCdGVPwABjbAKqx4GK67xuMV87toI+HUqgXj26m6RBp9UshEXcTrgCkdGYFzgKLt8kxu49RilDw==
+"@typescript-eslint/utils@5.62.0", "@typescript-eslint/utils@^5.10.0":
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.62.0.tgz#141e809c71636e4a75daa39faed2fb5f4b10df86"
+ integrity sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==
dependencies:
+ "@eslint-community/eslint-utils" "^4.2.0"
"@types/json-schema" "^7.0.9"
"@types/semver" "^7.3.12"
- "@typescript-eslint/scope-manager" "5.47.0"
- "@typescript-eslint/types" "5.47.0"
- "@typescript-eslint/typescript-estree" "5.47.0"
+ "@typescript-eslint/scope-manager" "5.62.0"
+ "@typescript-eslint/types" "5.62.0"
+ "@typescript-eslint/typescript-estree" "5.62.0"
eslint-scope "^5.1.1"
- eslint-utils "^3.0.0"
semver "^7.3.7"
-"@typescript-eslint/visitor-keys@5.47.0":
- version "5.47.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.47.0.tgz#4aca4efbdf6209c154df1f7599852d571b80bb45"
- integrity sha512-ByPi5iMa6QqDXe/GmT/hR6MZtVPi0SqMQPDx15FczCBXJo/7M8T88xReOALAfpBLm+zxpPfmhuEvPb577JRAEg==
+"@typescript-eslint/visitor-keys@5.62.0":
+ version "5.62.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz#2174011917ce582875954ffe2f6912d5931e353e"
+ integrity sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==
dependencies:
- "@typescript-eslint/types" "5.47.0"
+ "@typescript-eslint/types" "5.62.0"
eslint-visitor-keys "^3.3.0"
+"@xmldom/xmldom@^0.8.8":
+ version "0.8.10"
+ resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99"
+ integrity sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==
+
abort-controller@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392"
@@ -1608,12 +1317,12 @@ acorn-jsx@^5.3.2:
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
-acorn@^8.8.0:
- version "8.8.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73"
- integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==
+acorn@^8.9.0:
+ version "8.10.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5"
+ integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==
-ajv@^6.10.0, ajv@^6.12.4:
+ajv@^6.12.4:
version "6.12.6"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
@@ -1662,17 +1371,17 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
color-convert "^2.0.1"
anymatch@^3.0.3:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
- integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
+ integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
dependencies:
normalize-path "^3.0.0"
picomatch "^2.0.4"
appdirsjs@^1.2.4:
- version "1.2.6"
- resolved "https://registry.yarnpkg.com/appdirsjs/-/appdirsjs-1.2.6.tgz#fccf9ee543315492867cacfcfd4a2b32257d30ac"
- integrity sha512-D8wJNkqMCeQs3kLasatELsddox/Xqkhp+J07iXGyL54fVN7oc+nmNfYzGuCs1IEP6uBw+TfpuO3JKwc+lECy4w==
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/appdirsjs/-/appdirsjs-1.2.7.tgz#50b4b7948a26ba6090d4aede2ae2dc2b051be3b3"
+ integrity sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==
argparse@^1.0.7:
version "1.0.10"
@@ -1701,26 +1410,23 @@ arr-union@^3.1.0:
resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==
-array-includes@^3.1.4:
- version "3.1.5"
- resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb"
- integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==
+array-buffer-byte-length@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead"
+ integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.19.5"
- get-intrinsic "^1.1.1"
- is-string "^1.0.7"
+ is-array-buffer "^3.0.1"
array-includes@^3.1.6:
- version "3.1.6"
- resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f"
- integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==
+ version "3.1.7"
+ resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.7.tgz#8cd2e01b26f7a3086cbc87271593fe921c62abda"
+ integrity sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
- get-intrinsic "^1.1.3"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+ get-intrinsic "^1.2.1"
is-string "^1.0.7"
array-union@^2.1.0:
@@ -1733,26 +1439,49 @@ array-unique@^0.3.2:
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==
+array.prototype.flat@^1.3.1:
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18"
+ integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+ es-shim-unscopables "^1.0.0"
+
array.prototype.flatmap@^1.3.1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183"
- integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527"
+ integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
es-shim-unscopables "^1.0.0"
array.prototype.tosorted@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532"
- integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz#620eff7442503d66c799d95503f82b475745cefd"
+ integrity sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
es-shim-unscopables "^1.0.0"
- get-intrinsic "^1.1.3"
+ get-intrinsic "^1.2.1"
+
+arraybuffer.prototype.slice@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz#98bd561953e3e74bb34938e77647179dfe6e9f12"
+ integrity sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==
+ dependencies:
+ array-buffer-byte-length "^1.0.0"
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+ get-intrinsic "^1.2.1"
+ is-array-buffer "^3.0.2"
+ is-shared-array-buffer "^1.0.2"
asap@~2.0.6:
version "2.0.6"
@@ -1788,46 +1517,51 @@ async@^2.4.0:
dependencies:
lodash "^4.17.14"
+asynciterator.prototype@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz#8c5df0514936cdd133604dfcc9d3fb93f09b2b62"
+ integrity sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==
+ dependencies:
+ has-symbols "^1.0.3"
+
atob@^2.1.2:
version "2.1.2"
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
+available-typed-arrays@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
+ integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
+
babel-core@^7.0.0-bridge.0:
version "7.0.0-bridge.0"
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece"
integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==
-babel-plugin-dynamic-import-node@^2.3.3:
- version "2.3.3"
- resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
- integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
+babel-plugin-polyfill-corejs2@^0.4.6:
+ version "0.4.6"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz#b2df0251d8e99f229a8e60fc4efa9a68b41c8313"
+ integrity sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==
dependencies:
- object.assign "^4.1.0"
+ "@babel/compat-data" "^7.22.6"
+ "@babel/helper-define-polyfill-provider" "^0.4.3"
+ semver "^6.3.1"
-babel-plugin-polyfill-corejs2@^0.3.0:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz#440f1b70ccfaabc6b676d196239b138f8a2cfba5"
- integrity sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==
+babel-plugin-polyfill-corejs3@^0.8.5:
+ version "0.8.5"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.5.tgz#a75fa1b0c3fc5bd6837f9ec465c0f48031b8cab1"
+ integrity sha512-Q6CdATeAvbScWPNLB8lzSO7fgUVBkQt6zLgNlfyeCr/EQaEQR+bWiBYYPYAFyE528BMjRhL+1QBMOI4jc/c5TA==
dependencies:
- "@babel/compat-data" "^7.13.11"
- "@babel/helper-define-polyfill-provider" "^0.3.1"
- semver "^6.1.1"
+ "@babel/helper-define-polyfill-provider" "^0.4.3"
+ core-js-compat "^3.32.2"
-babel-plugin-polyfill-corejs3@^0.5.0:
- version "0.5.2"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz#aabe4b2fa04a6e038b688c5e55d44e78cd3a5f72"
- integrity sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==
- dependencies:
- "@babel/helper-define-polyfill-provider" "^0.3.1"
- core-js-compat "^3.21.0"
-
-babel-plugin-polyfill-regenerator@^0.3.0:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz#2c0678ea47c75c8cc2fbb1852278d8fb68233990"
- integrity sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==
+babel-plugin-polyfill-regenerator@^0.5.3:
+ version "0.5.3"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz#d4c49e4b44614607c13fb769bcd85c72bb26a4a5"
+ integrity sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==
dependencies:
- "@babel/helper-define-polyfill-provider" "^0.3.1"
+ "@babel/helper-define-polyfill-provider" "^0.4.3"
babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0:
version "7.0.0-beta.0"
@@ -1949,26 +1683,15 @@ braces@^3.0.2:
dependencies:
fill-range "^7.0.1"
-browserslist@^4.20.2, browserslist@^4.20.4:
- version "4.20.4"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.4.tgz#98096c9042af689ee1e0271333dbc564b8ce4477"
- integrity sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw==
+browserslist@^4.21.9, browserslist@^4.22.1:
+ version "4.22.1"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.1.tgz#ba91958d1a59b87dab6fed8dfbcb3da5e2e9c619"
+ integrity sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==
dependencies:
- caniuse-lite "^1.0.30001349"
- electron-to-chromium "^1.4.147"
- escalade "^3.1.1"
- node-releases "^2.0.5"
- picocolors "^1.0.0"
-
-browserslist@^4.21.3:
- version "4.21.4"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987"
- integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==
- dependencies:
- caniuse-lite "^1.0.30001400"
- electron-to-chromium "^1.4.251"
- node-releases "^2.0.6"
- update-browserslist-db "^1.0.9"
+ caniuse-lite "^1.0.30001541"
+ electron-to-chromium "^1.4.535"
+ node-releases "^2.0.13"
+ update-browserslist-db "^1.0.13"
bser@2.1.1:
version "2.1.1"
@@ -2010,13 +1733,14 @@ cache-base@^1.0.1:
union-value "^1.0.0"
unset-value "^1.0.0"
-call-bind@^1.0.0, call-bind@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
- integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
+call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.4.tgz#ef8386f4e78974d32b771d4a70f827c558a19408"
+ integrity sha512-e68w37XfAb5fL5M3NTxqKLcXRUkL2/kFlQjQjE/8jvPMBKmO5ZDycRkS/DrZRXjegOzwWzEwW88m+8r+D0PUUA==
dependencies:
- function-bind "^1.1.1"
- get-intrinsic "^1.0.2"
+ function-bind "^1.1.2"
+ get-intrinsic "^1.2.1"
+ set-function-length "^1.1.0"
caller-callsite@^2.0.0:
version "2.0.0"
@@ -2052,17 +1776,12 @@ camelcase@^6.0.0:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
-caniuse-lite@^1.0.30001349:
- version "1.0.30001355"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001355.tgz#e240b7177443ed0198c737a7f609536976701c77"
- integrity sha512-Sd6pjJHF27LzCB7pT7qs+kuX2ndurzCzkpJl6Qct7LPSZ9jn0bkOA8mdgMgmqnQAWLVOOGjLpc+66V57eLtb1g==
+caniuse-lite@^1.0.30001541:
+ version "1.0.30001551"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001551.tgz#1f2cfa8820bd97c971a57349d7fd8f6e08664a3e"
+ integrity sha512-vtBAez47BoGMMzlbYhfXrMV1kvRF2WP/lqiMuDu1Sb4EE4LKEgjopFDSRtZfdVnslNRpOqV/woE+Xgrwj6VQlg==
-caniuse-lite@^1.0.30001400:
- version "1.0.30001441"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz#987437b266260b640a23cd18fbddb509d7f69f3e"
- integrity sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==
-
-chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.2:
+chalk@^2.0.1, chalk@^2.4.2:
version "2.4.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@@ -2085,9 +1804,9 @@ ci-info@^2.0.0:
integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
ci-info@^3.2.0:
- version "3.7.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.7.0.tgz#6d01b3696c59915b6ce057e4aa4adfc2fa25f5ef"
- integrity sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==
+ version "3.9.0"
+ resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4"
+ integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==
class-utils@^0.3.5:
version "0.3.6"
@@ -2113,15 +1832,10 @@ cli-cursor@^3.1.0:
dependencies:
restore-cursor "^3.1.0"
-cli-spinners@^2.0.0:
- version "2.6.1"
- resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d"
- integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==
-
-cli-spinners@^2.5.0:
- version "2.7.0"
- resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.7.0.tgz#f815fd30b5f9eaac02db604c7a231ed7cb2f797a"
- integrity sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==
+cli-spinners@^2.0.0, cli-spinners@^2.5.0:
+ version "2.9.1"
+ resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.1.tgz#9c0b9dad69a6d47cbb4333c14319b060ed395a35"
+ integrity sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==
cliui@^6.0.0:
version "6.0.0"
@@ -2243,25 +1957,22 @@ connect@^3.6.5:
parseurl "~1.3.3"
utils-merge "1.0.1"
-convert-source-map@^1.7.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
- integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
- dependencies:
- safe-buffer "~5.1.1"
+convert-source-map@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
+ integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
copy-descriptor@^0.1.0:
version "0.1.1"
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==
-core-js-compat@^3.21.0:
- version "3.23.1"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.23.1.tgz#23d44d9f209086e60dabf9130cea7719af6e199b"
- integrity sha512-KeYrEc8t6FJsKYB2qnDwRHWaC0cJNaqlHfCpMe5q3j/W1nje3moib/txNklddLPCtGb+etcBIyJ8zuMa/LN5/A==
+core-js-compat@^3.32.2:
+ version "3.33.0"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.33.0.tgz#24aa230b228406450b2277b7c8bfebae932df966"
+ integrity sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw==
dependencies:
- browserslist "^4.20.4"
- semver "7.0.0"
+ browserslist "^4.22.1"
core-util-is@~1.0.0:
version "1.0.3"
@@ -2299,14 +2010,14 @@ cross-spawn@^7.0.2:
which "^2.0.1"
csstype@^3.0.2:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2"
- integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b"
+ integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
dayjs@^1.8.15:
- version "1.11.3"
- resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.3.tgz#4754eb694a624057b9ad2224b67b15d552589258"
- integrity sha512-xxwlswWOlGhzgQ4TKzASQkUhqERI3egRNqgV4ScR8wlANA/A9tZ7miXa44vTTKEq5l7vWoL5G57bG3zA+Kow0A==
+ version "1.11.10"
+ resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.10.tgz#68acea85317a6e164457d6d6947564029a6a16a0"
+ integrity sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==
debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
version "2.6.9"
@@ -2343,17 +2054,27 @@ deepmerge@^3.2.0:
integrity sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==
defaults@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
- integrity sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a"
+ integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==
dependencies:
clone "^1.0.2"
-define-properties@^1.1.3, define-properties@^1.1.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
- integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
+define-data-property@^1.0.1, define-data-property@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.1.tgz#c35f7cd0ab09883480d12ac5cb213715587800b3"
+ integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==
dependencies:
+ get-intrinsic "^1.2.1"
+ gopd "^1.0.1"
+ has-property-descriptors "^1.0.0"
+
+define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0, define-properties@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c"
+ integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==
+ dependencies:
+ define-data-property "^1.0.1"
has-property-descriptors "^1.0.0"
object-keys "^1.1.1"
@@ -2429,15 +2150,10 @@ ee-first@1.1.1:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
-electron-to-chromium@^1.4.147:
- version "1.4.159"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.159.tgz#458f8c36736680f0369adc0d9ea601f1f2da06cd"
- integrity sha512-D0NfhJzv5GgN3L7bzy5VUD90yKXnNFdCy+fH6jox+5UyJJSFmDC2d1mUxc9yi3bpTaOA1MJ6BkuVjn+GZTaZwg==
-
-electron-to-chromium@^1.4.251:
- version "1.4.284"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592"
- integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==
+electron-to-chromium@^1.4.535:
+ version "1.4.561"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.561.tgz#816f31d9ae01fe58abbf469fca7e125b16befd85"
+ integrity sha512-eS5t4ulWOBfVHdq9SW2dxEaFarj1lPjvJ8PaYMOjY0DecBaj/t4ARziL2IPpDr4atyWwjLFGQ2vo/VCgQFezVQ==
emoji-regex@^8.0.0:
version "8.0.0"
@@ -2457,9 +2173,9 @@ end-of-stream@^1.1.0:
once "^1.4.0"
envinfo@^7.7.2:
- version "7.8.1"
- resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475"
- integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==
+ version "7.10.0"
+ resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.10.0.tgz#55146e3909cc5fe63c22da63fb15b05aeac35b13"
+ integrity sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==
error-ex@^1.3.1:
version "1.3.2"
@@ -2483,65 +2199,79 @@ errorhandler@^1.5.0:
accepts "~1.3.7"
escape-html "~1.0.3"
-es-abstract@^1.19.0, es-abstract@^1.19.5:
- version "1.20.1"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz#027292cd6ef44bd12b1913b828116f54787d1814"
- integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==
+es-abstract@^1.22.1:
+ version "1.22.2"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.2.tgz#90f7282d91d0ad577f505e423e52d4c1d93c1b8a"
+ integrity sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==
dependencies:
+ array-buffer-byte-length "^1.0.0"
+ arraybuffer.prototype.slice "^1.0.2"
+ available-typed-arrays "^1.0.5"
call-bind "^1.0.2"
+ es-set-tostringtag "^2.0.1"
es-to-primitive "^1.2.1"
- function-bind "^1.1.1"
- function.prototype.name "^1.1.5"
- get-intrinsic "^1.1.1"
+ function.prototype.name "^1.1.6"
+ get-intrinsic "^1.2.1"
get-symbol-description "^1.0.0"
+ globalthis "^1.0.3"
+ gopd "^1.0.1"
has "^1.0.3"
has-property-descriptors "^1.0.0"
+ has-proto "^1.0.1"
has-symbols "^1.0.3"
- internal-slot "^1.0.3"
- is-callable "^1.2.4"
+ internal-slot "^1.0.5"
+ is-array-buffer "^3.0.2"
+ is-callable "^1.2.7"
is-negative-zero "^2.0.2"
is-regex "^1.1.4"
is-shared-array-buffer "^1.0.2"
is-string "^1.0.7"
+ is-typed-array "^1.1.12"
is-weakref "^1.0.2"
- object-inspect "^1.12.0"
+ object-inspect "^1.12.3"
object-keys "^1.1.1"
- object.assign "^4.1.2"
- regexp.prototype.flags "^1.4.3"
- string.prototype.trimend "^1.0.5"
- string.prototype.trimstart "^1.0.5"
+ object.assign "^4.1.4"
+ regexp.prototype.flags "^1.5.1"
+ safe-array-concat "^1.0.1"
+ safe-regex-test "^1.0.0"
+ string.prototype.trim "^1.2.8"
+ string.prototype.trimend "^1.0.7"
+ string.prototype.trimstart "^1.0.7"
+ typed-array-buffer "^1.0.0"
+ typed-array-byte-length "^1.0.0"
+ typed-array-byte-offset "^1.0.0"
+ typed-array-length "^1.0.4"
unbox-primitive "^1.0.2"
+ which-typed-array "^1.1.11"
-es-abstract@^1.20.4:
- version "1.20.5"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.5.tgz#e6dc99177be37cacda5988e692c3fa8b218e95d2"
- integrity sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==
+es-iterator-helpers@^1.0.12:
+ version "1.0.15"
+ resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz#bd81d275ac766431d19305923707c3efd9f1ae40"
+ integrity sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==
dependencies:
+ asynciterator.prototype "^1.0.0"
call-bind "^1.0.2"
- es-to-primitive "^1.2.1"
+ define-properties "^1.2.1"
+ es-abstract "^1.22.1"
+ es-set-tostringtag "^2.0.1"
function-bind "^1.1.1"
- function.prototype.name "^1.1.5"
- get-intrinsic "^1.1.3"
- get-symbol-description "^1.0.0"
- gopd "^1.0.1"
- has "^1.0.3"
+ get-intrinsic "^1.2.1"
+ globalthis "^1.0.3"
has-property-descriptors "^1.0.0"
+ has-proto "^1.0.1"
has-symbols "^1.0.3"
- internal-slot "^1.0.3"
- is-callable "^1.2.7"
- is-negative-zero "^2.0.2"
- is-regex "^1.1.4"
- is-shared-array-buffer "^1.0.2"
- is-string "^1.0.7"
- is-weakref "^1.0.2"
- object-inspect "^1.12.2"
- object-keys "^1.1.1"
- object.assign "^4.1.4"
- regexp.prototype.flags "^1.4.3"
- safe-regex-test "^1.0.0"
- string.prototype.trimend "^1.0.6"
- string.prototype.trimstart "^1.0.6"
- unbox-primitive "^1.0.2"
+ internal-slot "^1.0.5"
+ iterator.prototype "^1.1.2"
+ safe-array-concat "^1.0.1"
+
+es-set-tostringtag@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8"
+ integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==
+ dependencies:
+ get-intrinsic "^1.1.3"
+ has "^1.0.3"
+ has-tostringtag "^1.0.0"
es-shim-unscopables@^1.0.0:
version "1.0.0"
@@ -2580,9 +2310,9 @@ escape-string-regexp@^4.0.0:
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
eslint-config-prettier@^8.5.0:
- version "8.5.0"
- resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1"
- integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==
+ version "8.10.0"
+ resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11"
+ integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==
eslint-plugin-eslint-comments@^3.2.0:
version "3.2.0"
@@ -2625,22 +2355,22 @@ eslint-plugin-react-native-globals@^0.1.1:
integrity sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g==
eslint-plugin-react-native@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-4.0.0.tgz#eec41984abe4970bdd7c6082dff7a98a5e34d0bb"
- integrity sha512-kMmdxrSY7A1WgdqaGC+rY/28rh7kBGNBRsk48ovqkQmdg5j4K+DaFmegENDzMrdLkoufKGRNkKX6bgSwQTCAxQ==
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-4.1.0.tgz#5343acd3b2246bc1b857ac38be708f070d18809f"
+ integrity sha512-QLo7rzTBOl43FvVqDdq5Ql9IoElIuTdjrz9SKAXCvULvBoRZ44JGSkx9z4999ZusCsb4rK3gjS8gOGyeYqZv2Q==
dependencies:
- "@babel/traverse" "^7.7.4"
eslint-plugin-react-native-globals "^0.1.1"
eslint-plugin-react@^7.30.1:
- version "7.31.11"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz#011521d2b16dcf95795df688a4770b4eaab364c8"
- integrity sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==
+ version "7.33.2"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz#69ee09443ffc583927eafe86ffebb470ee737608"
+ integrity sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==
dependencies:
array-includes "^3.1.6"
array.prototype.flatmap "^1.3.1"
array.prototype.tosorted "^1.1.1"
doctrine "^2.1.0"
+ es-iterator-helpers "^1.0.12"
estraverse "^5.3.0"
jsx-ast-utils "^2.4.1 || ^3.0.0"
minimatch "^3.1.2"
@@ -2649,8 +2379,8 @@ eslint-plugin-react@^7.30.1:
object.hasown "^1.1.2"
object.values "^1.1.6"
prop-types "^15.8.1"
- resolve "^2.0.0-next.3"
- semver "^6.3.0"
+ resolve "^2.0.0-next.4"
+ semver "^6.3.1"
string.prototype.matchall "^4.0.8"
eslint-scope@5.1.1, eslint-scope@^5.1.1:
@@ -2661,94 +2391,85 @@ eslint-scope@5.1.1, eslint-scope@^5.1.1:
esrecurse "^4.3.0"
estraverse "^4.1.1"
-eslint-scope@^7.1.1:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642"
- integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
+eslint-scope@^7.2.2:
+ version "7.2.2"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f"
+ integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==
dependencies:
esrecurse "^4.3.0"
estraverse "^5.2.0"
-eslint-utils@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
- integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
- dependencies:
- eslint-visitor-keys "^2.0.0"
-
-eslint-visitor-keys@^2.0.0, eslint-visitor-keys@^2.1.0:
+eslint-visitor-keys@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
-eslint-visitor-keys@^3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
- integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
+eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3:
+ version "3.4.3"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
+ integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
eslint@^8.28.0:
- version "8.30.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.30.0.tgz#83a506125d089eef7c5b5910eeea824273a33f50"
- integrity sha512-MGADB39QqYuzEGov+F/qb18r4i7DohCDOfatHaxI2iGlPuC65bwG2gxgO+7DkyL38dRFaRH7RaRAgU6JKL9rMQ==
- dependencies:
- "@eslint/eslintrc" "^1.4.0"
- "@humanwhocodes/config-array" "^0.11.8"
+ version "8.51.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.51.0.tgz#4a82dae60d209ac89a5cff1604fea978ba4950f3"
+ integrity sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.2.0"
+ "@eslint-community/regexpp" "^4.6.1"
+ "@eslint/eslintrc" "^2.1.2"
+ "@eslint/js" "8.51.0"
+ "@humanwhocodes/config-array" "^0.11.11"
"@humanwhocodes/module-importer" "^1.0.1"
"@nodelib/fs.walk" "^1.2.8"
- ajv "^6.10.0"
+ ajv "^6.12.4"
chalk "^4.0.0"
cross-spawn "^7.0.2"
debug "^4.3.2"
doctrine "^3.0.0"
escape-string-regexp "^4.0.0"
- eslint-scope "^7.1.1"
- eslint-utils "^3.0.0"
- eslint-visitor-keys "^3.3.0"
- espree "^9.4.0"
- esquery "^1.4.0"
+ eslint-scope "^7.2.2"
+ eslint-visitor-keys "^3.4.3"
+ espree "^9.6.1"
+ esquery "^1.4.2"
esutils "^2.0.2"
fast-deep-equal "^3.1.3"
file-entry-cache "^6.0.1"
find-up "^5.0.0"
glob-parent "^6.0.2"
globals "^13.19.0"
- grapheme-splitter "^1.0.4"
+ graphemer "^1.4.0"
ignore "^5.2.0"
- import-fresh "^3.0.0"
imurmurhash "^0.1.4"
is-glob "^4.0.0"
is-path-inside "^3.0.3"
- js-sdsl "^4.1.4"
js-yaml "^4.1.0"
json-stable-stringify-without-jsonify "^1.0.1"
levn "^0.4.1"
lodash.merge "^4.6.2"
minimatch "^3.1.2"
natural-compare "^1.4.0"
- optionator "^0.9.1"
- regexpp "^3.2.0"
+ optionator "^0.9.3"
strip-ansi "^6.0.1"
- strip-json-comments "^3.1.0"
text-table "^0.2.0"
-espree@^9.4.0:
- version "9.4.1"
- resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd"
- integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==
+espree@^9.6.0, espree@^9.6.1:
+ version "9.6.1"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f"
+ integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
dependencies:
- acorn "^8.8.0"
+ acorn "^8.9.0"
acorn-jsx "^5.3.2"
- eslint-visitor-keys "^3.3.0"
+ eslint-visitor-keys "^3.4.1"
esprima@^4.0.0, esprima@~4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-esquery@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
- integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
+esquery@^1.4.2:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b"
+ integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
dependencies:
estraverse "^5.1.0"
@@ -2845,14 +2566,14 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
fast-diff@^1.1.2:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
- integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0"
+ integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==
fast-glob@^3.2.9:
- version "3.2.12"
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80"
- integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4"
+ integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==
dependencies:
"@nodelib/fs.stat" "^2.0.2"
"@nodelib/fs.walk" "^1.2.3"
@@ -2871,16 +2592,16 @@ fast-levenshtein@^2.0.6:
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
fastq@^1.6.0:
- version "1.14.0"
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.14.0.tgz#107f69d7295b11e0fccc264e1fc6389f623731ce"
- integrity sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==
+ version "1.15.0"
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a"
+ integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==
dependencies:
reusify "^1.0.4"
fb-watchman@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85"
- integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c"
+ integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==
dependencies:
bser "2.1.1"
@@ -2954,28 +2675,36 @@ find-up@^5.0.0:
path-exists "^4.0.0"
flat-cache@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
- integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.1.1.tgz#a02a15fdec25a8f844ff7cc658f03dd99eb4609b"
+ integrity sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==
dependencies:
- flatted "^3.1.0"
+ flatted "^3.2.9"
+ keyv "^4.5.3"
rimraf "^3.0.2"
-flatted@^3.1.0:
- version "3.2.5"
- resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3"
- integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==
+flatted@^3.2.9:
+ version "3.2.9"
+ resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf"
+ integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==
flow-parser@0.*:
- version "0.180.0"
- resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.180.0.tgz#05d49a88715ceca0457607499a018e2bf5908d72"
- integrity sha512-kkzsuGAhckWgn/G+JfCyEa6BYslGrjlH4CJL0LZhdn9of9ukvi7SzVQSFsrEhuhh/zQUghfUEoaeZy1wjQXpUg==
+ version "0.219.2"
+ resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.219.2.tgz#4d5d2d6784d5d8c856b2fd49f31ed44b06b50b01"
+ integrity sha512-OqzmNECXX85x/5L/OP9TfHErdDoSUoKR4y1sTTy/A5K2arwl7s5EmX0XTkkcJPlCAHYkElWj5Se+ZwNN/6ry2Q==
flow-parser@^0.121.0:
version "0.121.0"
resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.121.0.tgz#9f9898eaec91a9f7c323e9e992d81ab5c58e618f"
integrity sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==
+for-each@^0.3.3:
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e"
+ integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==
+ dependencies:
+ is-callable "^1.1.3"
+
for-in@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
@@ -3017,26 +2746,26 @@ fs.realpath@^1.0.0:
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
fsevents@^2.3.2:
- version "2.3.2"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
- integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
+ integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
-function-bind@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
- integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+function-bind@^1.1.1, function-bind@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
+ integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
-function.prototype.name@^1.1.5:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
- integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
+function.prototype.name@^1.1.5, function.prototype.name@^1.1.6:
+ version "1.1.6"
+ resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd"
+ integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.3"
- es-abstract "^1.19.0"
- functions-have-names "^1.2.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+ functions-have-names "^1.2.3"
-functions-have-names@^1.2.2:
+functions-have-names@^1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
@@ -3051,22 +2780,14 @@ get-caller-file@^2.0.1:
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
-get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz#336975123e05ad0b7ba41f152ee4aadbea6cf598"
- integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==
- dependencies:
- function-bind "^1.1.1"
- has "^1.0.3"
- has-symbols "^1.0.3"
-
-get-intrinsic@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"
- integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82"
+ integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==
dependencies:
function-bind "^1.1.1"
has "^1.0.3"
+ has-proto "^1.0.1"
has-symbols "^1.0.3"
get-stream@^4.0.0:
@@ -3121,12 +2842,19 @@ globals@^11.1.0:
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
globals@^13.19.0:
- version "13.19.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8"
- integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==
+ version "13.23.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-13.23.0.tgz#ef31673c926a0976e1f61dab4dca57e0c0a8af02"
+ integrity sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==
dependencies:
type-fest "^0.20.2"
+globalthis@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf"
+ integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==
+ dependencies:
+ define-properties "^1.1.3"
+
globby@^11.1.0:
version "11.1.0"
resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
@@ -3147,14 +2875,14 @@ gopd@^1.0.1:
get-intrinsic "^1.1.3"
graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
- version "4.2.10"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
- integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
+ version "4.2.11"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
+ integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
-grapheme-splitter@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e"
- integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
+graphemer@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
+ integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
has-bigints@^1.0.1, has-bigints@^1.0.2:
version "1.0.2"
@@ -3178,7 +2906,12 @@ has-property-descriptors@^1.0.0:
dependencies:
get-intrinsic "^1.1.1"
-has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3:
+has-proto@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0"
+ integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
+
+has-symbols@^1.0.2, has-symbols@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
@@ -3222,11 +2955,9 @@ has-values@^1.0.0:
kind-of "^4.0.0"
has@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
- integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
- dependencies:
- function-bind "^1.1.1"
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/has/-/has-1.0.4.tgz#2eb2860e000011dae4f1406a86fe80e530fb2ec6"
+ integrity sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==
hermes-engine@~0.11.0:
version "0.11.0"
@@ -3268,12 +2999,7 @@ ieee754@^1.1.13:
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
-ignore@^5.0.5:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
- integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
-
-ignore@^5.2.0:
+ignore@^5.0.5, ignore@^5.2.0:
version "5.2.4"
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
@@ -3291,7 +3017,7 @@ import-fresh@^2.0.0:
caller-path "^2.0.0"
resolve-from "^3.0.0"
-import-fresh@^3.0.0, import-fresh@^3.2.1:
+import-fresh@^3.2.1:
version "3.3.0"
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
@@ -3317,12 +3043,12 @@ inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3:
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-internal-slot@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
- integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
+internal-slot@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986"
+ integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==
dependencies:
- get-intrinsic "^1.1.0"
+ get-intrinsic "^1.2.0"
has "^1.0.3"
side-channel "^1.0.4"
@@ -3352,11 +3078,27 @@ is-accessor-descriptor@^1.0.0:
dependencies:
kind-of "^6.0.0"
+is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe"
+ integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.0"
+ is-typed-array "^1.1.10"
+
is-arrayish@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
+is-async-function@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.0.0.tgz#8e4418efd3e5d3a6ebb0164c05ef5afb69aa9646"
+ integrity sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==
+ dependencies:
+ has-tostringtag "^1.0.0"
+
is-bigint@^1.0.1:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
@@ -3377,20 +3119,15 @@ is-buffer@^1.1.5:
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
-is-callable@^1.1.4, is-callable@^1.2.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
- integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
-
-is-callable@^1.2.7:
+is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
version "1.2.7"
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
-is-core-module@^2.2.0, is-core-module@^2.8.1:
- version "2.9.0"
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69"
- integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==
+is-core-module@^2.13.0:
+ version "2.13.0"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db"
+ integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==
dependencies:
has "^1.0.3"
@@ -3408,7 +3145,7 @@ is-data-descriptor@^1.0.0:
dependencies:
kind-of "^6.0.0"
-is-date-object@^1.0.1:
+is-date-object@^1.0.1, is-date-object@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
@@ -3455,6 +3192,13 @@ is-extglob@^2.1.1:
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
+is-finalizationregistry@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz#c8749b65f17c133313e661b1289b95ad3dbd62e6"
+ integrity sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==
+ dependencies:
+ call-bind "^1.0.2"
+
is-fullwidth-code-point@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
@@ -3465,6 +3209,13 @@ is-fullwidth-code-point@^3.0.0:
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
+is-generator-function@^1.0.10:
+ version "1.0.10"
+ resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72"
+ integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==
+ dependencies:
+ has-tostringtag "^1.0.0"
+
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
version "4.0.3"
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
@@ -3477,6 +3228,11 @@ is-interactive@^1.0.0:
resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e"
integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==
+is-map@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127"
+ integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==
+
is-negative-zero@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
@@ -3521,6 +3277,11 @@ is-regex@^1.1.4:
call-bind "^1.0.2"
has-tostringtag "^1.0.0"
+is-set@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec"
+ integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==
+
is-shared-array-buffer@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
@@ -3547,11 +3308,23 @@ is-symbol@^1.0.2, is-symbol@^1.0.3:
dependencies:
has-symbols "^1.0.2"
+is-typed-array@^1.1.10, is-typed-array@^1.1.12, is-typed-array@^1.1.9:
+ version "1.1.12"
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a"
+ integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==
+ dependencies:
+ which-typed-array "^1.1.11"
+
is-unicode-supported@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
+is-weakmap@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2"
+ integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==
+
is-weakref@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
@@ -3559,6 +3332,14 @@ is-weakref@^1.0.2:
dependencies:
call-bind "^1.0.2"
+is-weakset@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d"
+ integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.1.1"
+
is-windows@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
@@ -3574,6 +3355,11 @@ isarray@1.0.0, isarray@~1.0.0:
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
+isarray@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
+ integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
+
isexe@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
@@ -3591,6 +3377,17 @@ isobject@^3.0.0, isobject@^3.0.1:
resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
+iterator.prototype@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.2.tgz#5e29c8924f01916cb9335f1ff80619dcff22b0c0"
+ integrity sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==
+ dependencies:
+ define-properties "^1.2.1"
+ get-intrinsic "^1.2.1"
+ has-symbols "^1.0.3"
+ reflect.getprototypeof "^1.0.4"
+ set-function-name "^2.0.1"
+
jest-get-type@^26.3.0:
version "26.3.0"
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0"
@@ -3677,21 +3474,16 @@ jetifier@^1.6.2:
integrity sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw==
joi@^17.2.1:
- version "17.6.0"
- resolved "https://registry.yarnpkg.com/joi/-/joi-17.6.0.tgz#0bb54f2f006c09a96e75ce687957bd04290054b2"
- integrity sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==
+ version "17.11.0"
+ resolved "https://registry.yarnpkg.com/joi/-/joi-17.11.0.tgz#aa9da753578ec7720e6f0ca2c7046996ed04fc1a"
+ integrity sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==
dependencies:
"@hapi/hoek" "^9.0.0"
"@hapi/topo" "^5.0.0"
"@sideway/address" "^4.1.3"
- "@sideway/formula" "^3.0.0"
+ "@sideway/formula" "^3.0.1"
"@sideway/pinpoint" "^2.0.0"
-js-sdsl@^4.1.4:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.2.0.tgz#278e98b7bea589b8baaf048c20aeb19eb7ad09d0"
- integrity sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==
-
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
@@ -3752,6 +3544,11 @@ jsesc@~0.5.0:
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==
+json-buffer@3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13"
+ integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
+
json-parse-better-errors@^1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
@@ -3767,7 +3564,7 @@ json-stable-stringify-without-jsonify@^1.0.1:
resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
-json5@^2.2.1:
+json5@^2.2.3:
version "2.2.3"
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
@@ -3787,12 +3584,21 @@ jsonfile@^4.0.0:
graceful-fs "^4.1.6"
"jsx-ast-utils@^2.4.1 || ^3.0.0":
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.0.tgz#e624f259143b9062c92b6413ff92a164c80d3ccb"
- integrity sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==
+ version "3.3.5"
+ resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a"
+ integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==
dependencies:
- array-includes "^3.1.4"
- object.assign "^4.1.2"
+ array-includes "^3.1.6"
+ array.prototype.flat "^1.3.1"
+ object.assign "^4.1.4"
+ object.values "^1.1.6"
+
+keyv@^4.5.3:
+ version "4.5.4"
+ resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93"
+ integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==
+ dependencies:
+ json-buffer "3.0.1"
kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
version "3.2.2"
@@ -4330,9 +4136,9 @@ minimatch@^3.0.2, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
brace-expansion "^1.1.7"
minimist@^1.2.0, minimist@^1.2.6:
- version "1.2.6"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
- integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
+ integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
mixin-deep@^1.2.0:
version "1.3.2"
@@ -4424,9 +4230,9 @@ node-dir@^0.1.17:
minimatch "^3.0.2"
node-fetch@^2.2.0, node-fetch@^2.6.0:
- version "2.6.7"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad"
- integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d"
+ integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==
dependencies:
whatwg-url "^5.0.0"
@@ -4435,15 +4241,10 @@ node-int64@^0.4.0:
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
-node-releases@^2.0.5:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.5.tgz#280ed5bc3eba0d96ce44897d8aee478bfb3d9666"
- integrity sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==
-
-node-releases@^2.0.6:
- version "2.0.8"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.8.tgz#0f349cdc8fcfa39a92ac0be9bc48b7706292b9ae"
- integrity sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==
+node-releases@^2.0.13:
+ version "2.0.13"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d"
+ integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==
node-stream-zip@^1.9.1:
version "1.15.0"
@@ -4486,10 +4287,10 @@ object-copy@^0.1.0:
define-property "^0.2.5"
kind-of "^3.0.3"
-object-inspect@^1.12.0, object-inspect@^1.12.2, object-inspect@^1.9.0:
- version "1.12.2"
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
- integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
+object-inspect@^1.12.3, object-inspect@^1.9.0:
+ version "1.13.1"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2"
+ integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==
object-keys@^1.1.1:
version "1.1.1"
@@ -4503,16 +4304,6 @@ object-visit@^1.0.0:
dependencies:
isobject "^3.0.0"
-object.assign@^4.1.0, object.assign@^4.1.2:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
- integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
- dependencies:
- call-bind "^1.0.0"
- define-properties "^1.1.3"
- has-symbols "^1.0.1"
- object-keys "^1.1.1"
-
object.assign@^4.1.4:
version "4.1.4"
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
@@ -4524,30 +4315,30 @@ object.assign@^4.1.4:
object-keys "^1.1.1"
object.entries@^1.1.6:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23"
- integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==
+ version "1.1.7"
+ resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.7.tgz#2b47760e2a2e3a752f39dd874655c61a7f03c131"
+ integrity sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
object.fromentries@^2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73"
- integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==
+ version "2.0.7"
+ resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.7.tgz#71e95f441e9a0ea6baf682ecaaf37fa2a8d7e616"
+ integrity sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
object.hasown@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92"
- integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.3.tgz#6a5f2897bb4d3668b8e79364f98ccf971bda55ae"
+ integrity sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==
dependencies:
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
object.pick@^1.3.0:
version "1.3.0"
@@ -4557,13 +4348,13 @@ object.pick@^1.3.0:
isobject "^3.0.1"
object.values@^1.1.6:
- version "1.1.6"
- resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d"
- integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==
+ version "1.1.7"
+ resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.7.tgz#617ed13272e7e1071b43973aa1655d9291b8442a"
+ integrity sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
on-finished@2.4.1:
version "2.4.1"
@@ -4612,17 +4403,17 @@ open@^6.2.0:
dependencies:
is-wsl "^1.1.0"
-optionator@^0.9.1:
- version "0.9.1"
- resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
- integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
+optionator@^0.9.3:
+ version "0.9.3"
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64"
+ integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==
dependencies:
+ "@aashutoshrathi/word-wrap" "^1.2.3"
deep-is "^0.1.3"
fast-levenshtein "^2.0.6"
levn "^0.4.1"
prelude-ls "^1.2.1"
type-check "^0.4.0"
- word-wrap "^1.2.3"
ora@^3.4.0:
version "3.4.0"
@@ -4751,7 +4542,7 @@ path-key@^3.1.0:
resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
-path-parse@^1.0.6, path-parse@^1.0.7:
+path-parse@^1.0.7:
version "1.0.7"
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
@@ -4777,9 +4568,9 @@ pify@^4.0.1:
integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
pirates@^4.0.5:
- version "4.0.5"
- resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b"
- integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==
+ version "4.0.6"
+ resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9"
+ integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==
pkg-dir@^3.0.0:
version "3.0.0"
@@ -4789,12 +4580,13 @@ pkg-dir@^3.0.0:
find-up "^3.0.0"
plist@^3.0.2, plist@^3.0.5:
- version "3.0.5"
- resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.5.tgz#2cbeb52d10e3cdccccf0c11a63a85d830970a987"
- integrity sha512-83vX4eYdQp3vP9SxuYgEM/G/pJQqLUz/V/xzPrzruLs7fz7jxGQ1msZ/mg1nwZxUSuOp4sb+/bEIbRrbzZRxDA==
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz#797a516a93e62f5bde55e0b9cc9c967f860893c9"
+ integrity sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==
dependencies:
+ "@xmldom/xmldom" "^0.8.8"
base64-js "^1.5.1"
- xmlbuilder "^9.0.7"
+ xmlbuilder "^15.1.1"
posix-character-classes@^0.1.0:
version "0.1.1"
@@ -4814,9 +4606,9 @@ prettier-linter-helpers@^1.0.0:
fast-diff "^1.1.2"
prettier@^2.8.0:
- version "2.8.1"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.1.tgz#4e1fd11c34e2421bc1da9aea9bd8127cd0a35efc"
- integrity sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==
+ version "2.8.8"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
+ integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
pretty-format@^26.5.2, pretty-format@^26.6.2:
version "26.6.2"
@@ -4866,9 +4658,9 @@ pump@^3.0.0:
once "^1.3.1"
punycode@^2.1.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
- integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f"
+ integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==
queue-microtask@^1.2.2:
version "1.2.3"
@@ -4881,9 +4673,9 @@ range-parser@~1.2.1:
integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
react-devtools-core@^4.23.0:
- version "4.27.1"
- resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.27.1.tgz#167aa174383c65786cbb7e965a5b39c702f0a2d3"
- integrity sha512-qXhcxxDWiFmFAOq48jts9YQYe1+wVoUXzJTlY4jbaATzyio6dd6CUGu3dXBhREeVgpZ+y4kg6vFJzIOZh6vY2w==
+ version "4.28.4"
+ resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.28.4.tgz#fb8183eada77093f4c2f9830e664bf22255abe27"
+ integrity sha512-IUZKLv3CimeM07G3vX4H4loxVpByrzq3HvfTX7v9migalwvLs9ZY5D3S3pKR33U+GguYfBBdMMZyToFhsSE/iQ==
dependencies:
shell-quote "^1.6.1"
ws "^7"
@@ -4996,18 +4788,18 @@ react@^17.0.2:
object-assign "^4.1.1"
readable-stream@^3.4.0:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
- integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
+ version "3.6.2"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
+ integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
dependencies:
inherits "^2.0.3"
string_decoder "^1.1.1"
util-deprecate "^1.0.1"
readable-stream@~2.3.6:
- version "2.3.7"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
- integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
+ version "2.3.8"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b"
+ integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
dependencies:
core-util-is "~1.0.0"
inherits "~2.0.3"
@@ -5032,10 +4824,22 @@ recast@^0.20.4:
source-map "~0.6.1"
tslib "^2.0.1"
-regenerate-unicode-properties@^10.0.1:
- version "10.0.1"
- resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz#7f442732aa7934a3740c779bb9b3340dccc1fb56"
- integrity sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==
+reflect.getprototypeof@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz#aaccbf41aca3821b87bb71d9dcbc7ad0ba50a3f3"
+ integrity sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+ get-intrinsic "^1.2.1"
+ globalthis "^1.0.3"
+ which-builtin-type "^1.1.3"
+
+regenerate-unicode-properties@^10.1.0:
+ version "10.1.1"
+ resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480"
+ integrity sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==
dependencies:
regenerate "^1.4.2"
@@ -5044,15 +4848,20 @@ regenerate@^1.4.2:
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
-regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.4:
- version "0.13.9"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
- integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
+regenerator-runtime@^0.13.2:
+ version "0.13.11"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
+ integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
-regenerator-transform@^0.15.0:
- version "0.15.0"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.0.tgz#cbd9ead5d77fae1a48d957cf889ad0586adb6537"
- integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==
+regenerator-runtime@^0.14.0:
+ version "0.14.0"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45"
+ integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==
+
+regenerator-transform@^0.15.2:
+ version "0.15.2"
+ resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.2.tgz#5bbae58b522098ebdf09bca2f83838929001c7a4"
+ integrity sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==
dependencies:
"@babel/runtime" "^7.8.4"
@@ -5064,41 +4873,31 @@ regex-not@^1.0.0, regex-not@^1.0.2:
extend-shallow "^3.0.2"
safe-regex "^1.1.0"
-regexp.prototype.flags@^1.4.3:
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
- integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
+regexp.prototype.flags@^1.5.0, regexp.prototype.flags@^1.5.1:
+ version "1.5.1"
+ resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz#90ce989138db209f81492edd734183ce99f9677e"
+ integrity sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.3"
- functions-have-names "^1.2.2"
+ define-properties "^1.2.0"
+ set-function-name "^2.0.0"
-regexpp@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
- integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
-
-regexpu-core@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.0.1.tgz#c531122a7840de743dcf9c83e923b5560323ced3"
- integrity sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==
+regexpu-core@^5.3.1:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b"
+ integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==
dependencies:
+ "@babel/regjsgen" "^0.8.0"
regenerate "^1.4.2"
- regenerate-unicode-properties "^10.0.1"
- regjsgen "^0.6.0"
- regjsparser "^0.8.2"
+ regenerate-unicode-properties "^10.1.0"
+ regjsparser "^0.9.1"
unicode-match-property-ecmascript "^2.0.0"
- unicode-match-property-value-ecmascript "^2.0.0"
+ unicode-match-property-value-ecmascript "^2.1.0"
-regjsgen@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.6.0.tgz#83414c5354afd7d6627b16af5f10f41c4e71808d"
- integrity sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==
-
-regjsparser@^0.8.2:
- version "0.8.4"
- resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.8.4.tgz#8a14285ffcc5de78c5b95d62bbf413b6bc132d5f"
- integrity sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==
+regjsparser@^0.9.1:
+ version "0.9.1"
+ resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709"
+ integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==
dependencies:
jsesc "~0.5.0"
@@ -5138,21 +4937,22 @@ resolve-url@^0.2.1:
integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==
resolve@^1.14.2:
- version "1.22.0"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198"
- integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==
+ version "1.22.8"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
+ integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
dependencies:
- is-core-module "^2.8.1"
+ is-core-module "^2.13.0"
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
-resolve@^2.0.0-next.3:
- version "2.0.0-next.3"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
- integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
+resolve@^2.0.0-next.4:
+ version "2.0.0-next.5"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c"
+ integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==
dependencies:
- is-core-module "^2.2.0"
- path-parse "^1.0.6"
+ is-core-module "^2.13.0"
+ path-parse "^1.0.7"
+ supports-preserve-symlinks-flag "^1.0.0"
restore-cursor@^2.0.0:
version "2.0.0"
@@ -5213,6 +5013,16 @@ run-parallel@^1.1.9:
dependencies:
queue-microtask "^1.2.2"
+safe-array-concat@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.1.tgz#91686a63ce3adbea14d61b14c99572a8ff84754c"
+ integrity sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.1"
+ has-symbols "^1.0.3"
+ isarray "^2.0.5"
+
safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
@@ -5239,10 +5049,10 @@ safe-regex@^1.1.0:
dependencies:
ret "~0.1.10"
-sax@^1.2.1:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
- integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
+sax@^1.2.4:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/sax/-/sax-1.3.0.tgz#a5dbe77db3be05c9d1ee7785dbd3ea9de51593d0"
+ integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==
scheduler@^0.20.2:
version "0.20.2"
@@ -5252,17 +5062,12 @@ scheduler@^0.20.2:
loose-envify "^1.1.0"
object-assign "^4.1.1"
-semver@7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
- integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
-
semver@^5.5.0, semver@^5.6.0:
version "5.7.2"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
-semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
+semver@^6.3.0, semver@^6.3.1:
version "6.3.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
@@ -5313,6 +5118,25 @@ set-blocking@^2.0.0:
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==
+set-function-length@^1.1.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.1.1.tgz#4bc39fafb0307224a33e106a7d35ca1218d659ed"
+ integrity sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==
+ dependencies:
+ define-data-property "^1.1.1"
+ get-intrinsic "^1.2.1"
+ gopd "^1.0.1"
+ has-property-descriptors "^1.0.0"
+
+set-function-name@^2.0.0, set-function-name@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.1.tgz#12ce38b7954310b9f61faa12701620a0c882793a"
+ integrity sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==
+ dependencies:
+ define-data-property "^1.0.1"
+ functions-have-names "^1.2.3"
+ has-property-descriptors "^1.0.0"
+
set-value@^2.0.0, set-value@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
@@ -5359,15 +5183,10 @@ shebang-regex@^3.0.0:
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
-shell-quote@^1.6.1:
- version "1.7.3"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123"
- integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==
-
-shell-quote@^1.7.3:
- version "1.7.4"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.4.tgz#33fe15dee71ab2a81fcbd3a52106c5cfb9fb75d8"
- integrity sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==
+shell-quote@^1.6.1, shell-quote@^1.7.3:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680"
+ integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==
side-channel@^1.0.4:
version "1.0.4"
@@ -5542,54 +5361,46 @@ string-width@^4.1.0, string-width@^4.2.0:
strip-ansi "^6.0.1"
string.prototype.matchall@^4.0.8:
- version "4.0.8"
- resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3"
- integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==
+ version "4.0.10"
+ resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz#a1553eb532221d4180c51581d6072cd65d1ee100"
+ integrity sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
- get-intrinsic "^1.1.3"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
+ get-intrinsic "^1.2.1"
has-symbols "^1.0.3"
- internal-slot "^1.0.3"
- regexp.prototype.flags "^1.4.3"
+ internal-slot "^1.0.5"
+ regexp.prototype.flags "^1.5.0"
+ set-function-name "^2.0.0"
side-channel "^1.0.4"
-string.prototype.trimend@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0"
- integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==
- dependencies:
- call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.19.5"
-
-string.prototype.trimend@^1.0.6:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533"
- integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==
+string.prototype.trim@^1.2.8:
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz#f9ac6f8af4bd55ddfa8895e6aea92a96395393bd"
+ integrity sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
-string.prototype.trimstart@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef"
- integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==
+string.prototype.trimend@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz#1bb3afc5008661d73e2dc015cd4853732d6c471e"
+ integrity sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.19.5"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
-string.prototype.trimstart@^1.0.6:
- version "1.0.6"
- resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4"
- integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==
+string.prototype.trimstart@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz#d4cdb44b83a4737ffbac2d406e405d43d0184298"
+ integrity sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.4"
- es-abstract "^1.20.4"
+ define-properties "^1.2.0"
+ es-abstract "^1.22.1"
string_decoder@^1.1.1:
version "1.3.0"
@@ -5624,7 +5435,7 @@ strip-eof@^1.0.0:
resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==
-strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
+strip-json-comments@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
@@ -5751,9 +5562,9 @@ tslib@^1.8.1:
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
tslib@^2.0.1:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
- integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
+ integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
tsutils@^3.21.0:
version "3.21.0"
@@ -5779,10 +5590,49 @@ type-fest@^0.7.1:
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48"
integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==
+typed-array-buffer@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60"
+ integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.1"
+ is-typed-array "^1.1.10"
+
+typed-array-byte-length@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0"
+ integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==
+ dependencies:
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ has-proto "^1.0.1"
+ is-typed-array "^1.1.10"
+
+typed-array-byte-offset@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b"
+ integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ has-proto "^1.0.1"
+ is-typed-array "^1.1.10"
+
+typed-array-length@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb"
+ integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
+ dependencies:
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ is-typed-array "^1.1.9"
+
typescript@^4.9.3:
- version "4.9.4"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
- integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==
+ version "4.9.5"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
+ integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
uglify-es@^3.1.9:
version "3.3.9"
@@ -5802,6 +5652,11 @@ unbox-primitive@^1.0.2:
has-symbols "^1.0.3"
which-boxed-primitive "^1.0.2"
+undici-types@~5.25.1:
+ version "5.25.3"
+ resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.25.3.tgz#e044115914c85f0bcbb229f346ab739f064998c3"
+ integrity sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==
+
unicode-canonical-property-names-ecmascript@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
@@ -5815,15 +5670,15 @@ unicode-match-property-ecmascript@^2.0.0:
unicode-canonical-property-names-ecmascript "^2.0.0"
unicode-property-aliases-ecmascript "^2.0.0"
-unicode-match-property-value-ecmascript@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714"
- integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==
+unicode-match-property-value-ecmascript@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0"
+ integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==
unicode-property-aliases-ecmascript@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8"
- integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd"
+ integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==
union-value@^1.0.0:
version "1.0.1"
@@ -5853,10 +5708,10 @@ unset-value@^1.0.0:
has-value "^0.3.1"
isobject "^3.0.0"
-update-browserslist-db@^1.0.9:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
- integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
+update-browserslist-db@^1.0.13:
+ version "1.0.13"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4"
+ integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==
dependencies:
escalade "^3.1.1"
picocolors "^1.0.0"
@@ -5930,9 +5785,9 @@ webidl-conversions@^3.0.0:
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
whatwg-fetch@^3.0.0:
- version "3.6.2"
- resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c"
- integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==
+ version "3.6.19"
+ resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.19.tgz#caefd92ae630b91c07345537e67f8354db470973"
+ integrity sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==
whatwg-url@^5.0.0:
version "5.0.0"
@@ -5953,10 +5808,49 @@ which-boxed-primitive@^1.0.2:
is-string "^1.0.5"
is-symbol "^1.0.3"
+which-builtin-type@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.1.3.tgz#b1b8443707cc58b6e9bf98d32110ff0c2cbd029b"
+ integrity sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==
+ dependencies:
+ function.prototype.name "^1.1.5"
+ has-tostringtag "^1.0.0"
+ is-async-function "^2.0.0"
+ is-date-object "^1.0.5"
+ is-finalizationregistry "^1.0.2"
+ is-generator-function "^1.0.10"
+ is-regex "^1.1.4"
+ is-weakref "^1.0.2"
+ isarray "^2.0.5"
+ which-boxed-primitive "^1.0.2"
+ which-collection "^1.0.1"
+ which-typed-array "^1.1.9"
+
+which-collection@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906"
+ integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==
+ dependencies:
+ is-map "^2.0.1"
+ is-set "^2.0.1"
+ is-weakmap "^2.0.1"
+ is-weakset "^2.0.1"
+
which-module@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
- integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409"
+ integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==
+
+which-typed-array@^1.1.11, which-typed-array@^1.1.9:
+ version "1.1.13"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.13.tgz#870cd5be06ddb616f504e7b039c4c24898184d36"
+ integrity sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.4"
+ for-each "^0.3.3"
+ gopd "^1.0.1"
+ has-tostringtag "^1.0.0"
which@^1.2.9:
version "1.3.1"
@@ -5972,11 +5866,6 @@ which@^2.0.1:
dependencies:
isexe "^2.0.0"
-word-wrap@^1.2.3:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.4.tgz#cb4b50ec9aca570abd1f52f33cd45b6c61739a9f"
- integrity sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==
-
wrap-ansi@^6.2.0:
version "6.2.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
@@ -6007,12 +5896,7 @@ ws@^6.1.4:
dependencies:
async-limiter "~1.0.0"
-ws@^7:
- version "7.5.8"
- resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.8.tgz#ac2729881ab9e7cbaf8787fe3469a48c5c7f636a"
- integrity sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==
-
-ws@^7.5.1:
+ws@^7, ws@^7.5.1:
version "7.5.9"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591"
integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==
@@ -6025,17 +5909,17 @@ xcode@^3.0.0:
simple-plist "^1.1.0"
uuid "^7.0.3"
-xmlbuilder@^9.0.7:
- version "9.0.7"
- resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d"
- integrity sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==
+xmlbuilder@^15.1.1:
+ version "15.1.1"
+ resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5"
+ integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==
xmldoc@^1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-1.1.2.tgz#6666e029fe25470d599cd30e23ff0d1ed50466d7"
- integrity sha512-ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ==
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-1.3.0.tgz#7823225b096c74036347c9ec5924d06b6a3cebab"
+ integrity sha512-y7IRWW6PvEnYQZNZFMRLNJw+p3pezM4nKYPfr15g4OOW9i8VpeydycFuipE2297OvZnh3jSb2pxOt9QpkZUVng==
dependencies:
- sax "^1.2.1"
+ sax "^1.2.4"
xtend@~4.0.1:
version "4.0.2"
diff --git a/demo/react/package.json b/demo/react/package.json
index e6aa813de..d23772a37 100644
--- a/demo/react/package.json
+++ b/demo/react/package.json
@@ -1,10 +1,10 @@
{
"name": "picovoice-react-demo",
- "version": "2.2.0",
+ "version": "3.0.0",
"private": true,
"description": "Picovoice React SDK demo (made with Create React App)",
"dependencies": {
- "@picovoice/picovoice-react": "~2.2.1",
+ "@picovoice/picovoice-react": "~3.0.0",
"@picovoice/web-voice-processor": "~4.0.8",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
diff --git a/demo/react/src/App.css b/demo/react/src/App.css
index f9dc75f6d..5204759e4 100644
--- a/demo/react/src/App.css
+++ b/demo/react/src/App.css
@@ -26,5 +26,7 @@ button {
border-left: 5px solid red;
font-family: monospace;
font-weight: bold;
- font-size: 1.5rem;
+ font-size: 1.2rem;
+ white-space: pre;
+ overflow-wrap: break-word;
}
diff --git a/demo/react/src/VoiceWidget.tsx b/demo/react/src/VoiceWidget.tsx
index 7c24720ac..66092601e 100644
--- a/demo/react/src/VoiceWidget.tsx
+++ b/demo/react/src/VoiceWidget.tsx
@@ -55,7 +55,7 @@ export default function VoiceWidget() {
Listening: {JSON.stringify(isListening)}
Error: {JSON.stringify(error !== null)}
{error !== null && (
- {JSON.stringify(error)}
+ {error.message}
)}